diff --git a/src/Accounts/Accounts/AzureRmAlias/Mappings.json b/src/Accounts/Accounts/AzureRmAlias/Mappings.json index 492cc9a47b3b..c39b4e1d7247 100644 --- a/src/Accounts/Accounts/AzureRmAlias/Mappings.json +++ b/src/Accounts/Accounts/AzureRmAlias/Mappings.json @@ -63,23 +63,22 @@ "Export-AzAnalysisServicesInstanceLog": "Export-AzureAnalysisServicesInstanceLog", "Sync-AzAnalysisServicesInstance": "Sync-AzureAnalysisServicesInstance" }, - "Az.Anf": { - "New-AzAnfAccount": "New-AzureRmAnfAccount", - "Remove-AzAnfAccount": "Remove-AzureRmAnfAccount", - "Get-AzAnfAccount": "Get-AzureRmAnfAccount", - "New-AzAnfPool": "New-AzureRmAnfPool", - "Set-AzAnfPool": "Set-AzureRmAnfPool", - "Remove-AzAnfPool": "Remove-AzureRmAnfPool", - "Get-AzAnfPool": "Get-AzureRmAnfPool", - "New-AzAnfVolume": "New-AzureRmAnfVolume", - "Update-AzAnfVolume": "Update-AzureRmAnfVolume", - "Set-AzAnfVolume": "Set-AzureRmAnfVolume", - "Remove-AzAnfVolume": "Remove-AzureRmAnfVolume", - "Get-AzAnfVolume": "Get-AzureRmAnfVolume", - "Get-AzAnfMountTarget": "Get-AzureRmAnfMountTarget", - "New-AzAnfSnapshot": "New-AzureRmAnfSnapshot", - "Remove-AzAnfSnapshot": "Remove-AzureRmAnfSnapshot", - "Get-AzAnfSnapshot": "Get-AzureRmAnfSnapshot" + "Az.NetAppFiles": { + "New-AzNetAppFilesAccount": "New-AzureRmNetAppFilesAccount", + "Remove-AzNetAppFilesAccount": "Remove-AzureRmNetAppFilesAccount", + "Get-AzNetAppFilesAccount": "Get-AzureRmNetAppFilesAccount", + "New-AzNetAppFilesPool": "New-AzureRmNetAppFilesPool", + "Update-AzNetAppFilesPool": "Update-AzureRmNetAppFilesPool", + "Remove-AzNetAppFilesPool": "Remove-AzureRmNetAppFilesPool", + "Get-AzNetAppFilesPool": "Get-AzureRmNetAppFilesPool", + "New-AzNetAppFilesVolume": "New-AzureRmNetAppFilesVolume", + "Update-AzNetAppFilesVolume": "Update-AzureRmNetAppFilesVolume", + "Remove-AzNetAppFilesVolume": "Remove-AzureRmNetAppFilesVolume", + "Get-AzNetAppFilesVolume": "Get-AzureRmNetAppFilesVolume", + "Get-AzNetAppFilesMountTarget": "Get-AzureRmNetAppFilesMountTarget", + "New-AzNetAppFilesSnapshot": "New-AzureRmNetAppFilesSnapshot", + "Remove-AzNetAppFilesSnapshot": "Remove-AzureRmNetAppFilesSnapshot", + "Get-AzNetAppFilesSnapshot": "Get-AzureRmNetAppFilesSnapshot" }, "Az.ApiManagement": { "Add-AzApiManagementRegion": "Add-AzureRmApiManagementRegion", diff --git a/src/Anf/Anf.Test/ScenarioTests/AccountTests.ps1 b/src/Anf/Anf.Test/ScenarioTests/AccountTests.ps1 deleted file mode 100644 index cb76f4a8e65b..000000000000 --- a/src/Anf/Anf.Test/ScenarioTests/AccountTests.ps1 +++ /dev/null @@ -1,68 +0,0 @@ -# ---------------------------------------------------------------------------------- -# -# 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 Account CRUD operations -#> -function Test-AccountCrud -{ - $resourceGroup = "pws-sdk-tests-rg-1" - $accName1 = "pws-sdk-acc-1" - $accName2 = "pws-sdk-acc-2" - $resourceLocation = "westus2" - - try - { - # create the resource group - New-AzureRmResourceGroup -Name $resourceGroup -Location $resourceLocation - - # create and check account 1 - $retrievedAcc = New-AzureRmAnfAccount -ResourceGroupName $resourceGroup -Location $resourceLocation -AccountName $accName1 - Assert-AreEqual $accName1 $retrievedAcc.Name - - # create and check account 2 - $retrievedAcc = New-AzureRmAnfAccount -ResourceGroupName $resourceGroup -Location $resourceLocation -AccountName $accName2 - Assert-AreEqual $accName2 $retrievedAcc.Name - - # get and check accounts by group (list) - $retrievedAcc = Get-AzureRmAnfAccount -ResourceGroupName $resourceGroup - Assert-AreEqual $accName1 $retrievedAcc[0].Name - Assert-AreEqual $accName2 $retrievedAcc[1].Name - Assert-AreEqual 2 $retrievedAcc.Length - - # get and check an account by name - $retrievedAcc = Get-AzureRmAnfAccount -ResourceGroupName $resourceGroup -AccountName $accName1 - Assert-AreEqual $accName1 $retrievedAcc.Name - - # get and check the account again using the resource id just obtained - $retrievedAccById = Get-AzureRmAnfAccount -ResourceId $retrievedAcc.Id - Assert-AreEqual $accName1 $retrievedAccById.Name - - # update and check the account (tags) - # since only tags can be patched and no other set or update is possible - # there is no implemented cmdlet - - # delete one account retrieved by id and one by name and check removed - Remove-AzureRmAnfAccount -ResourceId $retrievedAccById.Id - Remove-AzureRmAnfAccount -ResourceGroupName $resourceGroup -AccountName $accName2 - $retrievedAcc = Get-AzureRmAnfAccount -ResourceGroupName $resourceGroup - Assert-AreEqual 0 $retrievedAcc.Length - } - finally - { - # Cleanup - Clean-ResourceGroup $resourceGroup - } -} diff --git a/src/Anf/Anf.Test/ScenarioTests/PoolTests.ps1 b/src/Anf/Anf.Test/ScenarioTests/PoolTests.ps1 deleted file mode 100644 index b36d2652fa00..000000000000 --- a/src/Anf/Anf.Test/ScenarioTests/PoolTests.ps1 +++ /dev/null @@ -1,79 +0,0 @@ -# ---------------------------------------------------------------------------------- -# -# 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 Pool CRUD operations -#> -function Test-PoolCrud -{ - $resourceGroup = "pws-sdk-tests-rg-1" - $accName = "pws-sdk-acc-1" - $poolName1 = "pws-sdk-pool-1" - $poolName2 = "pws-sdk-pool-2" - $resourceLocation = "westus2" - $standardPoolSize = 4398046511104 - $serviceLevel = "Premium" - - try - { - # create the resource group - New-AzureRmResourceGroup -Name $resourceGroup -Location $resourceLocation - - # create account - $retrievedAcc = New-AzureRmAnfAccount -ResourceGroupName $resourceGroup -Location $resourceLocation -AccountName $accName - - # create pool 1 and check - $retrievedPool = New-AzureRmAnfPool -ResourceGroupName $resourceGroup -Location $resourceLocation -AccountName $accName -PoolName $poolName1 -PoolSize $standardPoolSize -ServiceLevel $serviceLevel - Assert-AreEqual "$accName/$poolName1" $retrievedPool.Name - Assert-AreEqual $serviceLevel $retrievedPool.ServiceLevel - - # create and check pool 2 - $retrievedPool = New-AzureRmAnfPool -ResourceGroupName $resourceGroup -Location $resourceLocation -AccountName $accName -PoolName $poolName2 -PoolSize $standardPoolSize -ServiceLevel $serviceLevel - Assert-AreEqual "$accName/$poolName2" $retrievedPool.Name - - # get and check pools by group (list) - $retrievedPool = Get-AzureRmAnfPool -ResourceGroupName $resourceGroup -AccountName $accName - Assert-AreEqual "$accName/$poolName1" $retrievedPool[0].Name - Assert-AreEqual "$accName/$poolName2" $retrievedPool[1].Name - Assert-AreEqual 2 $retrievedPool.Length - - # get and check a pool by name - $retrievedPool = Get-AzureRmAnfPool -ResourceGroupName $resourceGroup -AccountName $accName -PoolName $poolName1 - Assert-AreEqual "$accName/$poolName1" $retrievedPool.Name - - # get and check the account again using the resource id just obtained - $retrievedPoolById = Get-AzureRmAnfPool -ResourceId $retrievedPool.Id - Assert-AreEqual "$accName/$poolName1" $retrievedPoolById.Name - - # update (patch) and check the pool - # only tags can currently be patched so there is no implemented cmdlet - - # set (put) and check the Pool - $retrievedPool = Set-AzureRmAnfPool -ResourceGroupName $resourceGroup -Location $resourceLocation -AccountName $accName -PoolName $poolName1 -PoolSize $standardPoolSize -ServiceLevel "Standard" - Assert-AreEqual "$accName/$poolName1" $retrievedPool.Name - Assert-AreEqual "Standard" $retrievedPool.ServiceLevel - - # delete one account retrieved by id and one by name and check removed - Remove-AzureRmAnfPool -ResourceId $retrievedPoolById.Id - Remove-AzureRmAnfPool -ResourceGroupName $resourceGroup -AccountName $accName -PoolName $poolName2 - $retrievedPool = Get-AzureRmAnfPool -ResourceGroupName $resourceGroup -AccountName $accName - Assert-AreEqual 0 $retrievedPool.Length - } - finally - { - # Cleanup - Clean-ResourceGroup $resourceGroup - } -} diff --git a/src/Anf/Anf.Test/ScenarioTests/SnapshotTests.ps1 b/src/Anf/Anf.Test/ScenarioTests/SnapshotTests.ps1 deleted file mode 100644 index e1c4d7d42c17..000000000000 --- a/src/Anf/Anf.Test/ScenarioTests/SnapshotTests.ps1 +++ /dev/null @@ -1,98 +0,0 @@ -# ---------------------------------------------------------------------------------- -# -# 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 CRUD operations -#> -function Test-SnapshotCrud -{ - $currentSub = (Get-AzureRmContext).Subscription - $subsid = $currentSub.SubscriptionId - - $resourceGroup = "pws-sdk-tests-rg-1" - $accName = "pws-sdk-acc-2" - $poolName = "pws-sdk-pool-1" - $volName = "pws-sdk-vol-1" - $snName1 = "pws-sdk-snapshot-1" - $snName2 = "pws-sdk-snapshot-2" - $gibibyte = 1024 * 1024 * 1024 - $usageThreshold = 100 * $gibibyte - $doubleUsage = 2 * $usageThreshold - $resourceLocation = "westus2" - $subnetName = "default" - $standardPoolSize = 4398046511104 - $serviceLevel = "Premium" - $vnetName = $resourceGroup + "-vnet" - - $subnetId = "/subscriptions/$subsId/resourceGroups/$resourceGroup/providers/Microsoft.Network/virtualNetworks/$vnetName/subnets/$subnetName" - - try - { - # create the resource group - New-AzureRmResourceGroup -Name $resourceGroup -Location $resourceLocation - - # create virtual network - $virtualNetwork = New-AzureRmVirtualNetwork -ResourceGroupName $resourceGroup -Location $resourceLocation -Name $vnetName -AddressPrefix 10.0.0.0/16 - $delegation = New-AzureRmDelegation -Name "netAppVolumes" -ServiceName "Microsoft.Netapp/volumes" - Add-AzureRmVirtualNetworkSubnetConfig -Name $subnetName -VirtualNetwork $virtualNetwork -AddressPrefix "10.0.1.0/24" -Delegation $delegation | Set-AzureRmVirtualNetwork - - # create the resource group - New-AzureRmResourceGroup -Name $resourceGroupName -Location $resourceLocation - - # create account, pool and volume - $retrievedAcc = New-AzureRmAnfAccount -ResourceGroupName $resourceGroup -Location $resourceLocation -AccountName $accName - - $retrievedPool = New-AzureRmAnfPool -ResourceGroupName $resourceGroup -Location $resourceLocation -AccountName $accName -PoolName $poolName -PoolSize $standardPoolSize -ServiceLevel $serviceLevel - - $retrievedVolume = New-AzureRmAnfVolume -ResourceGroupName $resourceGroup -Location $resourceLocation -AccountName $accName -PoolName $poolName -VolumeName $volName -CreationToken $volName -UsageThreshold $usageThreshold -ServiceLevel $serviceLevel -SubnetId $subnetId - Assert-AreEqual "$accName/$poolName/$volName" $retrievedVolume.Name - Assert-AreEqual $serviceLevel $retrievedVolume.ServiceLevel - - # create two snapshots and check - $retrieveSn = New-AzureRmAnfSnapshot -ResourceGroupName $resourceGroup -Location $resourceLocation -AccountName $accName -PoolName $poolName -VolumeName $volName -SnapshotName $snName1 -FileSystemId $retrievedVolume.FileSystemId - Assert-AreEqual "$accName/$poolName/$volName/$snName1" $retrieveSn.Name - - $retrieveSn = New-AzureRmAnfSnapshot -ResourceGroupName $resourceGroup -Location $resourceLocation -AccountName $accName -PoolName $poolName -VolumeName $volName -SnapshotName $snName2 -FileSystemId $retrievedVolume.FileSystemId - Assert-AreEqual "$accName/$poolName/$volName/$snName2" $retrieveSn.Name - - # get and check snapshots by group (list) - $retrievedSnapshot = Get-AzureRmAnfSnapshot -ResourceGroupName $resourceGroup -AccountName $accName -PoolName $poolName -VolumeName $volName - Assert-AreEqual "$accName/$poolName/$volName/$snName1" $retrievedSnapshot[0].Name - Assert-AreEqual "$accName/$poolName/$volName/$snName2" $retrievedSnapshot[1].Name - Assert-AreEqual 2 $retrievedSnapshot.Length - - # get and check a snapshot by name - $retrievedSnapshot = Get-AzureRmAnfSnapshot -ResourceGroupName $resourceGroup -AccountName $accName -PoolName $poolName -VolumeName $volName -SnapshotName $snName1 - Assert-AreEqual "$accName/$poolName/$volName/$snName1" $retrievedSnapshot.Name - - # get and check the snapshot again using the resource id just obtained - $retrievedSnapshotById = Get-AzureRmAnfSnapshot -ResourceId $retrievedSnapshot.Id - Assert-AreEqual "$accName/$poolName/$volName/$snName1" $retrievedSnapshotById.Name - - # no update/set (patch/put) possible for snapshot - - # delete one snapshot retrieved by id and one by name and check removed - # temporary fix. Deletion returns 200 until upcoming swagger change - Assert-ThrowsContains -script { Remove-AzureRmAnfSnapshot -ResourceId $retrievedSnapshotById.Id } -message "invalid status code 'OK'" - Assert-ThrowsContains -script { Remove-AzureRmAnfSnapshot -ResourceGroupName $resourceGroup -AccountName $accName -PoolName $poolName -VolumeName $volName -SnapshotName $snName2 } -message "invalid status code 'OK'" - $retrievedSnapshot = Get-AzureRmAnfSnapshot -ResourceGroupName $resourceGroup -AccountName $accName -PoolName $poolName -VolumeName $volName - Assert-AreEqual 0 $retrievedSnapshot.Length - } - finally - { - # Cleanup - Clean-ResourceGroup $resourceGroup - } -} diff --git a/src/Anf/Anf.Test/ScenarioTests/VolumeTests.ps1 b/src/Anf/Anf.Test/ScenarioTests/VolumeTests.ps1 deleted file mode 100644 index 98d65f09447c..000000000000 --- a/src/Anf/Anf.Test/ScenarioTests/VolumeTests.ps1 +++ /dev/null @@ -1,102 +0,0 @@ -# ---------------------------------------------------------------------------------- -# -# 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 Volume CRUD operations -#> -function Test-VolumeCrud -{ - $currentSub = (Get-AzureRmContext).Subscription - $subsid = $currentSub.SubscriptionId - - $resourceGroup = "pws-sdk-tests-rg-1" - $accName = "pws-sdk-acc-2" - $poolName = "pws-sdk-pool-1" - $volName1 = "pws-sdk-vol-1" - $volName2 = "pws-sdk-vol-2" - $gibibyte = 1024 * 1024 * 1024 - $usageThreshold = 100 * $gibibyte - $doubleUsage = 2 * $usageThreshold - $resourceLocation = "westus2" - $subnetName = "default" - $standardPoolSize = 4398046511104 - $serviceLevel = "Premium" - $vnetName = $resourceGroup + "-vnet" - - $subnetId = "/subscriptions/$subsId/resourceGroups/$resourceGroup/providers/Microsoft.Network/virtualNetworks/$vnetName/subnets/$subnetName" - - try - { - # create the resource group - New-AzureRmResourceGroup -Name $resourceGroup -Location $resourceLocation - - # create virtual network - $virtualNetwork = New-AzureRmVirtualNetwork -ResourceGroupName $resourceGroup -Location $resourceLocation -Name $vnetName -AddressPrefix 10.0.0.0/16 - $delegation = New-AzureRmDelegation -Name "netAppVolumes" -ServiceName "Microsoft.Netapp/volumes" - Add-AzureRmVirtualNetworkSubnetConfig -Name $subnetName -VirtualNetwork $virtualNetwork -AddressPrefix "10.0.1.0/24" -Delegation $delegation | Set-AzureRmVirtualNetwork - - # create account - $retrievedAcc = New-AzureRmAnfAccount -ResourceGroupName $resourceGroup -Location $resourceLocation -AccountName $accName - - # create pool - $retrievedPool = New-AzureRmAnfPool -ResourceGroupName $resourceGroup -Location $resourceLocation -AccountName $accName -PoolName $poolName -PoolSize $standardPoolSize -ServiceLevel $serviceLevel - - # create first volume and check - $retrievedVolume = New-AzureRmAnfVolume -ResourceGroupName $resourceGroup -Location $resourceLocation -AccountName $accName -PoolName $poolName -VolumeName $volName1 -CreationToken $volName1 -UsageThreshold $usageThreshold -ServiceLevel $serviceLevel -SubnetId $subnetId - Assert-AreEqual "$accName/$poolName/$volName1" $retrievedVolume.Name - Assert-AreEqual $serviceLevel $retrievedVolume.ServiceLevel - - # create second volume and check - $retrievedVolume = New-AzureRmAnfVolume -ResourceGroupName $resourceGroup -Location $resourceLocation -AccountName $accName -PoolName $poolName -VolumeName $volName2 -CreationToken $volName2 -UsageThreshold $usageThreshold -ServiceLevel $serviceLevel -SubnetId $subnetId - Assert-AreEqual "$accName/$poolName/$volName2" $retrievedVolume.Name - Assert-AreEqual $serviceLevel $retrievedVolume.ServiceLevel - - # get and check volumes by group (list) - $retrievedVolume = Get-AzureRmAnfVolume -ResourceGroupName $resourceGroup -AccountName $accName -PoolName $poolName - Assert-AreEqual "$accName/$poolName/$volName1" $retrievedVolume[0].Name - Assert-AreEqual "$accName/$poolName/$volName2" $retrievedVolume[1].Name - Assert-AreEqual 2 $retrievedVolume.Length - - # get and check a volume by name - $retrievedVolume = Get-AzureRmAnfVolume -ResourceGroupName $resourceGroup -AccountName $accName -PoolName $poolName -VolumeName $volName1 - Assert-AreEqual "$accName/$poolName/$volName1" $retrievedVolume.Name - - # get and check the volume again using the resource id just obtained - $retrievedVolumeById = Get-AzureRmAnfVolume -ResourceId $retrievedVolume.Id - Assert-AreEqual "$accName/$poolName/$volName1" $retrievedVolumeById.Name - - # update (patch) and check the volume - $retrievedVolume = Update-AzureRmAnfVolume -ResourceGroupName $resourceGroup -Location $resourceLocation -AccountName $accName -PoolName $poolName -VolumeName $volName1 -UsageThreshold $doubleUsage - Assert-AreEqual "Premium" $retrievedVolume.ServiceLevel # unchanged/not part of the patch - Assert-AreEqual $doubleUsage $retrievedVolume.usageThreshold - - # set (put) and check the volume - $retrievedVolume = Set-AzureRmAnfVolume -ResourceGroupName $resourceGroup -Location $resourceLocation -AccountName $accName -PoolName $poolName -VolumeName $volName1 -CreationToken $volName1 -UsageThreshold $usageThreshold -ServiceLevel "Standard" -SubnetId $subnetId - Assert-AreEqual "$accName/$poolName/$volName1" $retrievedVolume.Name - Assert-AreEqual "Standard" $retrievedVolume.ServiceLevel - Assert-AreEqual $UsageThreshold $retrievedVolume.usageThreshold - - # delete one volume retrieved by id and one by name and check removed - Remove-AzureRmAnfVolume -ResourceId $retrievedVolumeById.Id - Remove-AzureRmAnfVolume -ResourceGroupName $resourceGroup -AccountName $accName -PoolName $poolName -VolumeName $volName2 - $retrievedVolume = Get-AzureRmAnfVolume -ResourceGroupName $resourceGroup -AccountName $accName -PoolName $poolName - Assert-AreEqual 0 $retrievedVolume.Length - } - finally - { - # Cleanup - Clean-ResourceGroup $resourceGroup - } -} diff --git a/src/Anf/Anf/Account/RemoveAzureRmAccount.cs b/src/Anf/Anf/Account/RemoveAzureRmAccount.cs deleted file mode 100644 index 339ad09630eb..000000000000 --- a/src/Anf/Anf/Account/RemoveAzureRmAccount.cs +++ /dev/null @@ -1,58 +0,0 @@ -// ---------------------------------------------------------------------------------- -// -// 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.Anf.Common; -using Microsoft.Azure.Management.NetApp; - -namespace Microsoft.Azure.Commands.Anf.Account -{ - [Cmdlet("Remove", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "AnfAccount", SupportsShouldProcess = true), OutputType(typeof(bool))] - public class RemoveAzureRmAnfAccount : AzureAnfCmdletBase - { - [Parameter - (Mandatory = true, - HelpMessage = "The resource group of the ANF account", - ParameterSetName = FieldsParameterSet)] - [ResourceGroupCompleter()] - [ValidateNotNullOrEmpty] - public string ResourceGroupName { get; set; } - - [Parameter(Mandatory = false, HelpMessage = "The name of the ANF account", ParameterSetName = FieldsParameterSet)] - [ValidateNotNullOrEmpty] - public string AccountName { get; set; } - - [Parameter( - Mandatory = true, - ValueFromPipelineByPropertyName = true, - HelpMessage = "The resource id of the ANF account", - ParameterSetName = ResourceIdParameterSet)] - [ValidateNotNullOrEmpty] - public string ResourceId { get; set; } - - public override void ExecuteCmdlet() - { - if (ParameterSetName == ResourceIdParameterSet) - { - var resourceIdentifier = new ResourceIdentifier(this.ResourceId); - ResourceGroupName = resourceIdentifier.ResourceGroupName; - AccountName = resourceIdentifier.ResourceName; - } - - AzureNetAppFilesManagementClient.Accounts.Delete(ResourceGroupName, AccountName); - } - } -} diff --git a/src/Anf/Anf/Pool/RemoveAzureRmPool.cs b/src/Anf/Anf/Pool/RemoveAzureRmPool.cs deleted file mode 100644 index 3c7e306a3141..000000000000 --- a/src/Anf/Anf/Pool/RemoveAzureRmPool.cs +++ /dev/null @@ -1,72 +0,0 @@ -// ---------------------------------------------------------------------------------- -// -// 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.Anf.Common; -using Microsoft.Azure.Commands.Anf.Models; -using Microsoft.Azure.Management.NetApp; - -namespace Microsoft.Azure.Commands.Anf.Pool -{ - [Cmdlet("Remove", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "AnfPool"), OutputType(typeof(PSAnfPool))] - public class RemoveAzureRmAnfPool : AzureAnfCmdletBase - { - [Parameter( - Mandatory = true, - HelpMessage = "The resource group of the ANF pool", - ParameterSetName = FieldsParameterSet)] - [ResourceGroupCompleter()] - [ValidateNotNullOrEmpty] - public string ResourceGroupName { get; set; } - - [Parameter( - Mandatory = true, - HelpMessage = "The name of the ANF account", - ParameterSetName = FieldsParameterSet)] - [ValidateNotNullOrEmpty] - public string AccountName { get; set; } - - [Parameter( - Mandatory = true, - HelpMessage = "The name of the ANF pool", - ParameterSetName = FieldsParameterSet)] - [ValidateNotNullOrEmpty] - public string PoolName { 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); - PoolName = resourceIdentifier.ResourceName; - } - - AzureNetAppFilesManagementClient.Pools.Delete(ResourceGroupName, AccountName, PoolName); - } - } -} diff --git a/src/Anf/Anf/Pool/SetAzureRmPool.cs b/src/Anf/Anf/Pool/SetAzureRmPool.cs deleted file mode 100644 index 9cecee6a69f6..000000000000 --- a/src/Anf/Anf/Pool/SetAzureRmPool.cs +++ /dev/null @@ -1,77 +0,0 @@ -// ---------------------------------------------------------------------------------- -// -// 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.Anf.Common; -using Microsoft.Azure.Commands.Anf.Models; -using Microsoft.Azure.Management.NetApp; -using Microsoft.Azure.Management.NetApp.Models; - -namespace Microsoft.Azure.Commands.Anf.Pool -{ - [Cmdlet("Set", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "AnfPool"), OutputType(typeof(PSAnfPool))] - public class SetAzureRmAnfPool : AzureAnfCmdletBase - { - [Parameter( - Mandatory = true, - HelpMessage = "The resource group of the ANF account")] - [ResourceGroupCompleter()] - [ValidateNotNullOrEmpty] - public string ResourceGroupName { get; set; } - - [Parameter( - Mandatory = true, - HelpMessage = "The location of the resource")] - [ValidateNotNullOrEmpty] - public string Location { get; set; } - - [Parameter( - Mandatory = true, - HelpMessage = "The name of the ANF account")] - [ValidateNotNullOrEmpty] - public string AccountName { get; set; } - - [Parameter( - Mandatory = true, - HelpMessage = "The name of the ANF pool")] - [ValidateNotNullOrEmpty] - public string PoolName { get; set; } - - [Parameter( - Mandatory = true, - HelpMessage = "The size of the ANF pool")] - [ValidateNotNullOrEmpty] - public long? PoolSize { get; set; } - - [Parameter( - Mandatory = true, - HelpMessage = "The service level of the ANF pool")] - [ValidateNotNullOrEmpty] - public string ServiceLevel { get; set; } - - public override void ExecuteCmdlet() - { - var capacityPoolBody = new CapacityPool() - { - ServiceLevel = ServiceLevel, - Size = PoolSize, - Location = Location - }; - - var anfPool = AzureNetAppFilesManagementClient.Pools.CreateOrUpdate(capacityPoolBody, ResourceGroupName, AccountName, PoolName); - WriteObject(anfPool); - } - } -} diff --git a/src/Anf/Anf/Snapshot/GetAzureRmSnapshot.cs b/src/Anf/Anf/Snapshot/GetAzureRmSnapshot.cs deleted file mode 100644 index 0c7cc6003cb5..000000000000 --- a/src/Anf/Anf/Snapshot/GetAzureRmSnapshot.cs +++ /dev/null @@ -1,79 +0,0 @@ -// ---------------------------------------------------------------------------------- -// -// 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.Anf.Common; -using Microsoft.Azure.Commands.Anf.Helpers; -using Microsoft.Azure.Commands.Anf.Models; -using Microsoft.Azure.Management.NetApp; -using System.Linq; - -namespace Microsoft.Azure.Commands.Anf.Snapshot -{ - [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "AnfSnapshot"), OutputType(typeof(PSAnfSnapshot))] - public class GetAzureRmAnfSnapshot : AzureAnfCmdletBase - { - [Parameter(Mandatory = true, HelpMessage = "The resource group of the ANF volume", ParameterSetName = FieldsParameterSet)] - [ResourceGroupCompleter()] - [ValidateNotNullOrEmpty] - public string ResourceGroupName { get; set; } - - [Parameter(Mandatory = true, HelpMessage = "The name of the ANF account", ParameterSetName = FieldsParameterSet)] - [ValidateNotNullOrEmpty] - public string AccountName { get; set; } - - [Parameter(Mandatory = true, HelpMessage = "The name of the ANF pool", ParameterSetName = FieldsParameterSet)] - [ValidateNotNullOrEmpty] - public string PoolName { get; set; } - - [Parameter(Mandatory = true, HelpMessage = "The name of the ANF volume", ParameterSetName = FieldsParameterSet)] - [ValidateNotNullOrEmpty] - public string VolumeName { get; set; } - - [Parameter(Mandatory = false, HelpMessage = "The name of the ANF snapshot", ParameterSetName = FieldsParameterSet)] - [ValidateNotNullOrEmpty] - public string SnapshotName { get; set; } - - [Parameter(Mandatory = true, HelpMessage = "The resource id of the ANF snapshot", ParameterSetName = ResourceIdParameterSet)] - [ValidateNotNullOrEmpty] - public string ResourceId { 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]; - VolumeName = parentResources[5]; - SnapshotName = resourceIdentifier.ResourceName; - } - - if (SnapshotName != null) - { - var anfSnapshot = AzureNetAppFilesManagementClient.Snapshots.Get(ResourceGroupName, AccountName, PoolName, VolumeName, SnapshotName); - WriteObject(anfSnapshot.ToPsAnfSnapshot()); - } - else - { - var anfSnapshot = AzureNetAppFilesManagementClient.Snapshots.List(ResourceGroupName, AccountName, PoolName, VolumeName).Select(e => e.ToPsAnfSnapshot()); - WriteObject(anfSnapshot, true); - } - } - } -} diff --git a/src/Anf/Anf/Snapshot/NewAzureRmSnapshot.cs b/src/Anf/Anf/Snapshot/NewAzureRmSnapshot.cs deleted file mode 100644 index 12cc96bae514..000000000000 --- a/src/Anf/Anf/Snapshot/NewAzureRmSnapshot.cs +++ /dev/null @@ -1,81 +0,0 @@ -// ---------------------------------------------------------------------------------- -// -// 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.Anf.Common; -using Microsoft.Azure.Commands.Anf.Models; -using Microsoft.Azure.Management.NetApp; - -namespace Microsoft.Azure.Commands.Anf.Snapshot -{ - [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "AnfSnapshot"), OutputType(typeof(PSAnfSnapshot))] - public class NewAzureRmAnfSnapshot : AzureAnfCmdletBase - { - [Parameter( - Mandatory = true, - HelpMessage = "The resource group of the ANF account")] - [ResourceGroupCompleter()] - [ValidateNotNullOrEmpty] - public string ResourceGroupName { get; set; } - - [Parameter( - Mandatory = true, - HelpMessage = "The location of the resource")] - [ValidateNotNullOrEmpty] - public string Location { get; set; } - - [Parameter( - Mandatory = true, - HelpMessage = "The name of the ANF account")] - [ValidateNotNullOrEmpty] - public string AccountName { get; set; } - - [Parameter( - Mandatory = true, - HelpMessage = "The name of the ANF pool")] - [ValidateNotNullOrEmpty] - public string PoolName { get; set; } - - [Parameter( - Mandatory = true, - HelpMessage = "The name of the ANF volume")] - [ValidateNotNullOrEmpty] - public string VolumeName { get; set; } - - [Parameter( - Mandatory = true, - HelpMessage = "The name of the ANF snapshot")] - [ValidateNotNullOrEmpty] - public string SnapshotName { get; set; } - - [Parameter( - Mandatory = true, - HelpMessage = "The file system id")] - [ValidateNotNullOrEmpty] - public string FileSystemId { get; set; } - - public override void ExecuteCmdlet() - { - var snapshotBody = new Management.NetApp.Models.Snapshot() - { - Location = Location, - FileSystemId = FileSystemId - }; - - var anfSnapshot = AzureNetAppFilesManagementClient.Snapshots.Create(snapshotBody, ResourceGroupName, AccountName, PoolName, VolumeName, SnapshotName); - WriteObject(anfSnapshot); - } - } -} diff --git a/src/Anf/Anf/Snapshot/RemoveAzureRmSnapshot.cs b/src/Anf/Anf/Snapshot/RemoveAzureRmSnapshot.cs deleted file mode 100644 index 4525e5a32a44..000000000000 --- a/src/Anf/Anf/Snapshot/RemoveAzureRmSnapshot.cs +++ /dev/null @@ -1,87 +0,0 @@ -// ---------------------------------------------------------------------------------- -// -// 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.Anf.Common; -using Microsoft.Azure.Commands.Anf.Models; -using Microsoft.Azure.Management.NetApp; - -namespace Microsoft.Azure.Commands.Anf.Snapshot -{ - [Cmdlet("Remove", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "AnfSnapshot"), OutputType(typeof(PSAnfSnapshot))] - public class RemoveAzureRmAnSnapshot : AzureAnfCmdletBase - { - [Parameter( - Mandatory = true, - HelpMessage = "The resource group of the ANF snapshot", - ParameterSetName = FieldsParameterSet)] - [ResourceGroupCompleter()] - [ValidateNotNullOrEmpty] - public string ResourceGroupName { get; set; } - - [Parameter( - Mandatory = true, - HelpMessage = "The name of the ANF account", - ParameterSetName = FieldsParameterSet)] - [ValidateNotNullOrEmpty] - public string AccountName { get; set; } - - [Parameter( - Mandatory = true, - HelpMessage = "The name of the ANF pool", - ParameterSetName = FieldsParameterSet)] - [ValidateNotNullOrEmpty] - public string PoolName { get; set; } - - [Parameter( - Mandatory = true, - HelpMessage = "The name of the ANF volume", - ParameterSetName = FieldsParameterSet)] - [ValidateNotNullOrEmpty] - public string VolumeName { get; set; } - - [Parameter( - Mandatory = true, - HelpMessage = "The name of the ANF snapshot", - ParameterSetName = FieldsParameterSet)] - [ValidateNotNullOrEmpty] - public string SnapshotName { get; set; } - - [Parameter( - Mandatory = true, - ValueFromPipelineByPropertyName = true, - HelpMessage = "The resource id of the ANF snapshot", - ParameterSetName = ResourceIdParameterSet)] - [ValidateNotNullOrEmpty] - public string ResourceId { 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]; - VolumeName = parentResources[5]; - SnapshotName = resourceIdentifier.ResourceName; - } - - AzureNetAppFilesManagementClient.Snapshots.Delete(ResourceGroupName, AccountName, PoolName, VolumeName, SnapshotName); - } - } -} diff --git a/src/Anf/Anf/Volume/RemoveAzureRmVolume.cs b/src/Anf/Anf/Volume/RemoveAzureRmVolume.cs deleted file mode 100644 index edb31f9df004..000000000000 --- a/src/Anf/Anf/Volume/RemoveAzureRmVolume.cs +++ /dev/null @@ -1,79 +0,0 @@ -// ---------------------------------------------------------------------------------- -// -// 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.Anf.Common; -using Microsoft.Azure.Commands.Anf.Models; -using Microsoft.Azure.Management.NetApp; - -namespace Microsoft.Azure.Commands.Anf.Volume -{ - [Cmdlet("Remove", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "AnfVolume"), OutputType(typeof(PSAnfVolume))] - public class RemoveAzureRmAnfVolume : AzureAnfCmdletBase - { - [Parameter( - Mandatory = true, - HelpMessage = "The resource group of the ANF volume", - ParameterSetName = FieldsParameterSet)] - [ResourceGroupCompleter()] - [ValidateNotNullOrEmpty] - public string ResourceGroupName { get; set; } - - [Parameter( - Mandatory = true, - HelpMessage = "The name of the ANF account", - ParameterSetName = FieldsParameterSet)] - [ValidateNotNullOrEmpty] - public string AccountName { get; set; } - - [Parameter( - Mandatory = true, - HelpMessage = "The name of the ANF pool", - ParameterSetName = FieldsParameterSet)] - [ValidateNotNullOrEmpty] - public string PoolName { get; set; } - - [Parameter( - Mandatory = true, - HelpMessage = "The name of the ANF volume", - ParameterSetName = FieldsParameterSet)] - [ValidateNotNullOrEmpty] - public string VolumeName { get; set; } - - [Parameter( - Mandatory = true, - ValueFromPipelineByPropertyName = true, - HelpMessage = "The resource id of the ANF volume", - ParameterSetName = ResourceIdParameterSet)] - [ValidateNotNullOrEmpty] - public string ResourceId { 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]; - VolumeName = resourceIdentifier.ResourceName; - } - - AzureNetAppFilesManagementClient.Volumes.Delete(ResourceGroupName, AccountName, PoolName, VolumeName); - } - } -} diff --git a/src/Anf/Anf/Volume/SetAzureRmVolume.cs b/src/Anf/Anf/Volume/SetAzureRmVolume.cs deleted file mode 100644 index 87fcfe9f8951..000000000000 --- a/src/Anf/Anf/Volume/SetAzureRmVolume.cs +++ /dev/null @@ -1,78 +0,0 @@ -// ---------------------------------------------------------------------------------- -// -// 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.Anf.Common; -using Microsoft.Azure.Commands.Anf.Models; -using Microsoft.Azure.Management.NetApp; - -namespace Microsoft.Azure.Commands.Anf.Volume -{ - [Cmdlet("Set", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "AnfVolume"), OutputType(typeof(PSAnfVolume))] - public class SetAzureRmAnfVolume : AzureAnfCmdletBase - { - [Parameter(Mandatory = true, HelpMessage = "The resource group of the ANF account")] - [ResourceGroupCompleter()] - [ValidateNotNullOrEmpty] - public string ResourceGroupName { get; set; } - - [Parameter(Mandatory = true, HelpMessage = "The location of the resource")] - [ValidateNotNullOrEmpty] - public string Location { get; set; } - - [Parameter(Mandatory = true, HelpMessage = "The name of the ANF account")] - [ValidateNotNullOrEmpty] - public string AccountName { get; set; } - - [Parameter(Mandatory = true, HelpMessage = "The name of the ANF pool")] - [ValidateNotNullOrEmpty] - public string PoolName { get; set; } - - [Parameter(Mandatory = true, HelpMessage = "The name of the ANF volume")] - [ValidateNotNullOrEmpty] - public string VolumeName { get; set; } - - [Parameter(Mandatory = true, HelpMessage = "The maximum storage quota allowed for a file system in bytes")] - [ValidateNotNullOrEmpty] - public long? UsageThreshold { get; set; } - - [Parameter(Mandatory = true, HelpMessage = "The Azure Resource URI for a delegated subnet")] - [ValidateNotNullOrEmpty] - public string SubnetId { get; set; } - - [Parameter(Mandatory = true, HelpMessage = "A unique file path for the volume")] - [ValidateNotNullOrEmpty] - public string CreationToken { get; set; } - - [Parameter(Mandatory = true, HelpMessage = "The service level of the ANF volume")] - [ValidateNotNullOrEmpty] - public string ServiceLevel { get; set; } - - public override void ExecuteCmdlet() - { - var volumeBody = new Management.NetApp.Models.Volume() - { - ServiceLevel = ServiceLevel, - UsageThreshold = UsageThreshold, - CreationToken = CreationToken, - SubnetId = SubnetId, - Location = Location - }; - - var anfVolume = AzureNetAppFilesManagementClient.Volumes.CreateOrUpdate(volumeBody, ResourceGroupName, AccountName, PoolName, VolumeName); - WriteObject(anfVolume); - } - } -} diff --git a/src/Anf/Anf/Volume/UpdateAzureRmVolume.cs b/src/Anf/Anf/Volume/UpdateAzureRmVolume.cs deleted file mode 100644 index e206f77413d1..000000000000 --- a/src/Anf/Anf/Volume/UpdateAzureRmVolume.cs +++ /dev/null @@ -1,82 +0,0 @@ -// ---------------------------------------------------------------------------------- -// -// 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.Anf.Common; -using Microsoft.Azure.Commands.Anf.Models; -using Microsoft.Azure.Management.NetApp; -using Microsoft.Azure.Management.NetApp.Models; - -namespace Microsoft.Azure.Commands.Anf.Volume -{ - [Cmdlet("Update", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "AnfVolume"), OutputType(typeof(PSAnfVolume))] - public class UpdateAzureRmAnfVolume : AzureAnfCmdletBase - { - [Parameter( - Mandatory = true, - HelpMessage = "The resource group of the ANF account")] - [ResourceGroupCompleter()] - [ValidateNotNullOrEmpty] - public string ResourceGroupName { get; set; } - - [Parameter( - Mandatory = true, - HelpMessage = "The location of the resource")] - [ValidateNotNullOrEmpty] - public string Location { get; set; } - - [Parameter( - Mandatory = true, - HelpMessage = "The name of the ANF account")] - [ValidateNotNullOrEmpty] - public string AccountName { get; set; } - - [Parameter( - Mandatory = true, - HelpMessage = "The name of the ANF pool")] - [ValidateNotNullOrEmpty] - public string PoolName { get; set; } - - [Parameter( - Mandatory = true, - HelpMessage = "The name of the ANF volume")] - [ValidateNotNullOrEmpty] - public string VolumeName { get; set; } - - [Parameter( - Mandatory = false, - HelpMessage = "The maximum storage quota allowed for a file system in bytes")] - [ValidateNotNullOrEmpty] - public long? UsageThreshold { get; set; } - - [Parameter( - Mandatory = false, - HelpMessage = "The service level of the ANF volume")] - [ValidateNotNullOrEmpty] - public string ServiceLevel { get; set; } - - public override void ExecuteCmdlet() - { - var volumePatchBody = new VolumePatch() - { - ServiceLevel = ServiceLevel, - UsageThreshold = UsageThreshold - }; - - var anfVolume = AzureNetAppFilesManagementClient.Volumes.Update(volumePatchBody, ResourceGroupName, AccountName, PoolName, VolumeName); - WriteObject(anfVolume); - } - } -} diff --git a/src/Anf/Anf/help/Get-AzAnfAccount.md b/src/Anf/Anf/help/Get-AzAnfAccount.md deleted file mode 100644 index c9183701bbfa..000000000000 --- a/src/Anf/Anf/help/Get-AzAnfAccount.md +++ /dev/null @@ -1,115 +0,0 @@ ---- -external help file: Microsoft.Azure.PowerShell.Cmdlets.Anf.dll-Help.xml -Module Name: Az.anf -online version: -schema: 2.0.0 ---- - -# Get-AzAnfAccount - -## SYNOPSIS -Gets details of an Azure NetApp Files (ANF) account. - -## SYNTAX - -### ByFieldsParameterSet -``` -Get-AzAnfAccount -ResourceGroupName [-AccountName ] [-DefaultProfile ] - [] -``` - -### ByResouceIdParameterSet -``` -Get-AzAnfAccount -ResourceId [-DefaultProfile ] [] -``` - -## DESCRIPTION -The **Get-AzAnfAccount** cmdlet gets details of an ANF account. - -## EXAMPLES - -### Example 1: Get an ANF account -``` -PS C:\>Get-AzAnfAccount -AccountName "MyAnfAccount" -``` - -This command gets the account named MyAnfAccount. - - -## PARAMETERS - -### -AccountName -The name of the ANF account - -```yaml -Type: 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: 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: 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 account - -```yaml -Type: String -Parameter Sets: ByResouceIdParameterSet -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 - -### None - -## OUTPUTS - -### Microsoft.Azure.Commands.Anf.Models.PSAnfAccount - -## NOTES - -## RELATED LINKS diff --git a/src/Anf/Anf/help/Get-AzAnfPool.md b/src/Anf/Anf/help/Get-AzAnfPool.md deleted file mode 100644 index d31babd8e722..000000000000 --- a/src/Anf/Anf/help/Get-AzAnfPool.md +++ /dev/null @@ -1,129 +0,0 @@ ---- -external help file: Microsoft.Azure.PowerShell.Cmdlets.Anf.dll-Help.xml -Module Name: Az.anf -online version: -schema: 2.0.0 ---- - -# Get-AzAnfPool - -## SYNOPSIS -Gets details of an Azure NetApp Files (ANF) pool. - -## SYNTAX - -### ByFieldsParameterSet -``` -Get-AzAnfPool -ResourceGroupName -AccountName [-PoolName ] - [-DefaultProfile ] [] -``` - -### ByResouceIdParameterSet -``` -Get-AzAnfPool -ResourceId [-DefaultProfile ] [] -``` - -## DESCRIPTION -The **Get-AzAnfPool** cmdlet gets details of an ANF pool. - -## EXAMPLES - -### Example 1: Get an ANF pool -``` -PS C:\>Get-AzAnfPool -AccountName "MyAnfAccount" -PoolName "MyAnfPool" -``` - -This command gets the account named MyAnfPool from the account "MyAnfAccount". - -## PARAMETERS - -### -AccountName -The name of the ANF account - -```yaml -Type: String -Parameter Sets: ByFieldsParameterSet -Aliases: - -Required: True -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -DefaultProfile -The credentials, account, tenant, and subscription used for communication with Azure. - -```yaml -Type: IAzureContextContainer -Parameter Sets: (All) -Aliases: AzContext, AzureRmContext, AzureCredential - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -PoolName -The name of the ANF pool - -```yaml -Type: String -Parameter Sets: ByFieldsParameterSet -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -ResourceGroupName -The resource group of the ANF pool - -```yaml -Type: String -Parameter Sets: ByFieldsParameterSet -Aliases: - -Required: True -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -ResourceId -The resource id of the ANF pool - -```yaml -Type: String -Parameter Sets: ByResouceIdParameterSet -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 - -### None - -## OUTPUTS - -### Microsoft.Azure.Commands.Anf.Models.PSAnfPool - -## NOTES - -## RELATED LINKS diff --git a/src/Anf/Anf/help/Get-AzAnfSnapshot.md b/src/Anf/Anf/help/Get-AzAnfSnapshot.md deleted file mode 100644 index b00941cbc038..000000000000 --- a/src/Anf/Anf/help/Get-AzAnfSnapshot.md +++ /dev/null @@ -1,159 +0,0 @@ ---- -external help file: Microsoft.Azure.PowerShell.Cmdlets.Anf.dll-Help.xml -Module Name: Az.anf -online version: -schema: 2.0.0 ---- - -# Get-AzAnfSnapshot - -## SYNOPSIS -Gets details of an Azure NetApp Files (ANF) snapshot. - -## SYNTAX - -### ByFieldsParameterSet -``` -Get-AzAnfSnapshot -ResourceGroupName -AccountName -PoolName -VolumeName - [-SnapshotName ] [-DefaultProfile ] [] -``` - -### ByResouceIdParameterSet -``` -Get-AzAnfSnapshot -ResourceId [-DefaultProfile ] [] -``` - -## DESCRIPTION -The **Get-AzAnfSnapshot** cmdlet gets details of an ANF snapshot. - -## EXAMPLES - -### Example 1: Get an ANF snapshot -``` -PS C:\>Get-AzAnfSnapshot -AccountName "MyAnfAccount" -PoolName "MyAnfPool" -VolumeName "MyAnfVolume" -SnapshotName "MyAnfSnapshot" -``` - -This command gets the snapshot named MyAnfSnapshot from the volume "MyAnfVolume". - -## PARAMETERS - -### -AccountName -The name of the ANF account - -```yaml -Type: String -Parameter Sets: ByFieldsParameterSet -Aliases: - -Required: True -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -DefaultProfile -The credentials, account, tenant, and subscription used for communication with Azure. - -```yaml -Type: IAzureContextContainer -Parameter Sets: (All) -Aliases: AzContext, AzureRmContext, AzureCredential - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -PoolName -The name of the ANF pool - -```yaml -Type: String -Parameter Sets: ByFieldsParameterSet -Aliases: - -Required: True -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -ResourceGroupName -The resource group of the ANF volume - -```yaml -Type: String -Parameter Sets: ByFieldsParameterSet -Aliases: - -Required: True -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -ResourceId -The resource id of the ANF snapshot - -```yaml -Type: String -Parameter Sets: ByResouceIdParameterSet -Aliases: - -Required: True -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -SnapshotName -The name of the ANF snapshot - -```yaml -Type: String -Parameter Sets: ByFieldsParameterSet -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -VolumeName -The name of the ANF volume - -```yaml -Type: String -Parameter Sets: ByFieldsParameterSet -Aliases: - -Required: True -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### 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 - -### None - -## OUTPUTS - -### Microsoft.Azure.Commands.Anf.Models.PSAnfSnapshot - -## NOTES - -## RELATED LINKS diff --git a/src/Anf/Anf/help/Get-AzAnfVolume.md b/src/Anf/Anf/help/Get-AzAnfVolume.md deleted file mode 100644 index be7ba8e6765b..000000000000 --- a/src/Anf/Anf/help/Get-AzAnfVolume.md +++ /dev/null @@ -1,144 +0,0 @@ ---- -external help file: Microsoft.Azure.PowerShell.Cmdlets.Anf.dll-Help.xml -Module Name: Az.anf -online version: -schema: 2.0.0 ---- - -# Get-AzAnfVolume - -## SYNOPSIS -Gets details of an Azure NetApp Files (ANF) volume. - -## SYNTAX - -### ByFieldsParameterSet -``` -Get-AzAnfVolume -ResourceGroupName -AccountName -PoolName [-VolumeName ] - [-DefaultProfile ] [] -``` - -### ByResouceIdParameterSet -``` -Get-AzAnfVolume -ResourceId [-DefaultProfile ] [] -``` - -## DESCRIPTION -The **Get-AzAnfVolume** cmdlet gets details of an ANF volume. - -## EXAMPLES - -### Example 1: Get an ANF volume -``` -PS C:\>Get-AzAnfVolume -AccountName "MyAnfAccount" -PoolName "MyAnfPool" -VolumeName "MyAnfVolume" -``` - -This command gets the volume named MyAnfVolume from the pool "MyAnfPool". - -## PARAMETERS - -### -AccountName -The name of the ANF account - -```yaml -Type: String -Parameter Sets: ByFieldsParameterSet -Aliases: - -Required: True -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -DefaultProfile -The credentials, account, tenant, and subscription used for communication with Azure. - -```yaml -Type: IAzureContextContainer -Parameter Sets: (All) -Aliases: AzContext, AzureRmContext, AzureCredential - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -PoolName -The name of the ANF pool - -```yaml -Type: String -Parameter Sets: ByFieldsParameterSet -Aliases: - -Required: True -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -ResourceGroupName -The resource group of the ANF volume - -```yaml -Type: String -Parameter Sets: ByFieldsParameterSet -Aliases: - -Required: True -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -ResourceId -The resource id of the ANF volume - -```yaml -Type: String -Parameter Sets: ByResouceIdParameterSet -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: String -Parameter Sets: ByFieldsParameterSet -Aliases: - -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 - -### None - -## OUTPUTS - -### Microsoft.Azure.Commands.Anf.Models.PSAnfVolume - -## NOTES - -## RELATED LINKS diff --git a/src/Anf/Anf/help/New-AzAnfAccount.md b/src/Anf/Anf/help/New-AzAnfAccount.md deleted file mode 100644 index 0754014e454c..000000000000 --- a/src/Anf/Anf/help/New-AzAnfAccount.md +++ /dev/null @@ -1,123 +0,0 @@ ---- -external help file: Microsoft.Azure.PowerShell.Cmdlets.Anf.dll-Help.xml -Module Name: Az.anf -online version: -schema: 2.0.0 ---- - -# New-AzAnfAccount - -## SYNOPSIS -Creates a new Azure NetApp Files (ANF) account. - -## SYNTAX - -``` -New-AzAnfAccount -ResourceGroupName -Location [-Tags ] -AccountName - [-DefaultProfile ] [] -``` - -## DESCRIPTION -The **New-AzAnfAccount** cmdlet creates an ANF account. - -## EXAMPLES - -### Example 1: Create an ANF account -``` -PS C:\>New-AzAnfAccount -AccountName "MyAnfAccount" -``` - -This command creates the new ANF account "MyAnfAccount". - -## PARAMETERS - -### -AccountName -The name of the ANF account - -```yaml -Type: String -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: IAzureContextContainer -Parameter Sets: (All) -Aliases: AzContext, AzureRmContext, AzureCredential - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -Location -The location of the resource - -```yaml -Type: String -Parameter Sets: (All) -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: String -Parameter Sets: (All) -Aliases: - -Required: True -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -Tags -Tags for the resource - -```yaml -Type: String -Parameter Sets: (All) -Aliases: - -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 - -### None - -## OUTPUTS - -### Microsoft.Azure.Commands.Anf.Models.PSAnfAccount - -## NOTES - -## RELATED LINKS diff --git a/src/Anf/Anf/help/New-AzAnfPool.md b/src/Anf/Anf/help/New-AzAnfPool.md deleted file mode 100644 index 1aab1fac9318..000000000000 --- a/src/Anf/Anf/help/New-AzAnfPool.md +++ /dev/null @@ -1,153 +0,0 @@ ---- -external help file: Microsoft.Azure.PowerShell.Cmdlets.Anf.dll-Help.xml -Module Name: Az.anf -online version: -schema: 2.0.0 ---- - -# New-AzAnfPool - -## SYNOPSIS -Creates a new Azure NetApp Files (ANF) pool. - -## SYNTAX - -``` -New-AzAnfPool -ResourceGroupName -Location -AccountName -PoolName - -PoolSize -ServiceLevel [-DefaultProfile ] [] -``` - -## DESCRIPTION -The **New-AzAnfPool** cmdlet creates an ANF pool. - -## EXAMPLES - -### Example 1: Create an ANF pool -``` -PS C:\>New-AzAnfPool -AccountName "MyAnfAccount" -PoolName "MyAnfPool" -``` - -This command creates the new ANF pool "MyAnfPool" within the account "MyAnfAccount". - -## PARAMETERS - -### -AccountName -The name of the ANF account - -```yaml -Type: String -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: IAzureContextContainer -Parameter Sets: (All) -Aliases: AzContext, AzureRmContext, AzureCredential - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -Location -The location of the resource - -```yaml -Type: String -Parameter Sets: (All) -Aliases: - -Required: True -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -PoolName -The name of the ANF pool - -```yaml -Type: String -Parameter Sets: (All) -Aliases: - -Required: True -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -PoolSize -The size of the ANF pool - -```yaml -Type: Int64 -Parameter Sets: (All) -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: String -Parameter Sets: (All) -Aliases: - -Required: True -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -ServiceLevel -The service level of the ANF pool - -```yaml -Type: String -Parameter Sets: (All) -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 - -### None - -## OUTPUTS - -### Microsoft.Azure.Commands.Anf.Models.PSAnfPool - -## NOTES - -## RELATED LINKS diff --git a/src/Anf/Anf/help/New-AzAnfVolume.md b/src/Anf/Anf/help/New-AzAnfVolume.md deleted file mode 100644 index 4af4fcce011b..000000000000 --- a/src/Anf/Anf/help/New-AzAnfVolume.md +++ /dev/null @@ -1,199 +0,0 @@ ---- -external help file: Microsoft.Azure.PowerShell.Cmdlets.Anf.dll-Help.xml -Module Name: Az.anf -online version: -schema: 2.0.0 ---- - -# New-AzAnfVolume - -## SYNOPSIS -Creates a new Azure NetApp Files (ANF) volume. - -## SYNTAX - -``` -New-AzAnfVolume -ResourceGroupName -Location -AccountName -PoolName - -VolumeName -UsageThreshold -SubnetId -CreationToken -ServiceLevel - [-DefaultProfile ] [] -``` - -## DESCRIPTION -The **New-AzAnfVolume** cmdlet creates an ANF volume. - -## EXAMPLES - -### Example 1: Create an ANF volume -``` -PS C:\>New-AzAnfVolume -AccountName "MyAnfAccount" -PoolName "MyAnfPool" -VolumeName "MyAnfVolume" -``` - -This command creates the new ANF volume "MyAnfVolume" within the pool "MyAnfPool". - -## PARAMETERS - -### -AccountName -The name of the ANF account - -```yaml -Type: String -Parameter Sets: (All) -Aliases: - -Required: True -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -CreationToken -A unique file path for the volume - -```yaml -Type: String -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: IAzureContextContainer -Parameter Sets: (All) -Aliases: AzContext, AzureRmContext, AzureCredential - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -Location -The location of the resource - -```yaml -Type: String -Parameter Sets: (All) -Aliases: - -Required: True -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -PoolName -The name of the ANF pool - -```yaml -Type: String -Parameter Sets: (All) -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: String -Parameter Sets: (All) -Aliases: - -Required: True -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -ServiceLevel -The service level of the ANF volume - -```yaml -Type: String -Parameter Sets: (All) -Aliases: - -Required: True -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -SubnetId -The Azure Resource URI for a delegated subnet - -```yaml -Type: String -Parameter Sets: (All) -Aliases: - -Required: True -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 - -```yaml -Type: Int64 -Parameter Sets: (All) -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: String -Parameter Sets: (All) -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 - -### None - -## OUTPUTS - -### Microsoft.Azure.Commands.Anf.Models.PSAnfVolume - -## NOTES - -## RELATED LINKS diff --git a/src/Anf/Anf/help/Remove-AzAnfPool.md b/src/Anf/Anf/help/Remove-AzAnfPool.md deleted file mode 100644 index 0ee9e20a4d9b..000000000000 --- a/src/Anf/Anf/help/Remove-AzAnfPool.md +++ /dev/null @@ -1,129 +0,0 @@ ---- -external help file: Microsoft.Azure.PowerShell.Cmdlets.Anf.dll-Help.xml -Module Name: Az.anf -online version: -schema: 2.0.0 ---- - -# Remove-AzAnfPool - -## SYNOPSIS -Deletes an Azure NetApp Files (ANF) pool. - -## SYNTAX - -### ByFieldsParameterSet -``` -Remove-AzAnfPool -ResourceGroupName -AccountName -PoolName - [-DefaultProfile ] [] -``` - -### ByResouceIdParameterSet -``` -Remove-AzAnfPool -ResourceId [-DefaultProfile ] [] -``` - -## DESCRIPTION -The **Remove-AzAnfPool** cmdlet deletes an ANF pool. - -## EXAMPLES - -### Example 1: Delete an ANF pool -``` -PS C:\>Remove-AzAnfPool -AccountName "MyAnfAccount" -PoolName "MyAnfPool" -``` - -This command deletes the ANF pool "MyAnfPool". - -## PARAMETERS - -### -AccountName -The name of the ANF account - -```yaml -Type: String -Parameter Sets: ByFieldsParameterSet -Aliases: - -Required: True -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -DefaultProfile -The credentials, account, tenant, and subscription used for communication with Azure. - -```yaml -Type: IAzureContextContainer -Parameter Sets: (All) -Aliases: AzContext, AzureRmContext, AzureCredential - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -PoolName -The name of the ANF pool - -```yaml -Type: String -Parameter Sets: ByFieldsParameterSet -Aliases: - -Required: True -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -ResourceGroupName -The resource group of the ANF pool - -```yaml -Type: String -Parameter Sets: ByFieldsParameterSet -Aliases: - -Required: True -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -ResourceId -The resource id of the ANF pool - -```yaml -Type: String -Parameter Sets: ByResouceIdParameterSet -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 - -### None - -## OUTPUTS - -### Microsoft.Azure.Commands.Anf.Models.PSAnfPool - -## NOTES - -## RELATED LINKS diff --git a/src/Anf/Anf/help/Remove-AzAnfSnapshot.md b/src/Anf/Anf/help/Remove-AzAnfSnapshot.md deleted file mode 100644 index a2509e0de79c..000000000000 --- a/src/Anf/Anf/help/Remove-AzAnfSnapshot.md +++ /dev/null @@ -1,159 +0,0 @@ ---- -external help file: Microsoft.Azure.PowerShell.Cmdlets.Anf.dll-Help.xml -Module Name: Az.anf -online version: -schema: 2.0.0 ---- - -# Remove-AzAnfSnapshot - -## SYNOPSIS -Deletes an Azure NetApp Files (ANF) snapshot. - -## SYNTAX - -### ByFieldsParameterSet -``` -Remove-AzAnfSnapshot -ResourceGroupName -AccountName -PoolName -VolumeName - -SnapshotName [-DefaultProfile ] [] -``` - -### ByResouceIdParameterSet -``` -Remove-AzAnfSnapshot -ResourceId [-DefaultProfile ] [] -``` - -## DESCRIPTION -The **Remove-AzAnfSnapshot** cmdlet deletes an ANF snapshot. - -## EXAMPLES - -### Example 1: Delete an ANF snapshot -``` -PS C:\>Remove-AzAnfSnapshot -AccountName "MyAnfAccount" -PoolName "MyAnfPool" -VolumeName "MyAnfVolume" -SnapshotName "MyAnfSnapshot" -``` - -This command deletes the ANF snapshot "MyAnfSnapshot". - -## PARAMETERS - -### -AccountName -The name of the ANF account - -```yaml -Type: String -Parameter Sets: ByFieldsParameterSet -Aliases: - -Required: True -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -DefaultProfile -The credentials, account, tenant, and subscription used for communication with Azure. - -```yaml -Type: IAzureContextContainer -Parameter Sets: (All) -Aliases: AzContext, AzureRmContext, AzureCredential - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -PoolName -The name of the ANF pool - -```yaml -Type: String -Parameter Sets: ByFieldsParameterSet -Aliases: - -Required: True -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -ResourceGroupName -The resource group of the ANF snapshot - -```yaml -Type: String -Parameter Sets: ByFieldsParameterSet -Aliases: - -Required: True -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -ResourceId -The resource id of the ANF snapshot - -```yaml -Type: String -Parameter Sets: ByResouceIdParameterSet -Aliases: - -Required: True -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -SnapshotName -The name of the ANF snapshot - -```yaml -Type: 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: 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 - -### None - -## OUTPUTS - -### Microsoft.Azure.Commands.Anf.Models.PSAnfSnapshot - -## NOTES - -## RELATED LINKS diff --git a/src/Anf/Anf/help/Remove-AzAnfVolume.md b/src/Anf/Anf/help/Remove-AzAnfVolume.md deleted file mode 100644 index 32c7e5c3ebc9..000000000000 --- a/src/Anf/Anf/help/Remove-AzAnfVolume.md +++ /dev/null @@ -1,144 +0,0 @@ ---- -external help file: Microsoft.Azure.PowerShell.Cmdlets.Anf.dll-Help.xml -Module Name: Az.anf -online version: -schema: 2.0.0 ---- - -# Remove-AzAnfVolume - -## SYNOPSIS -Deletes an Azure NetApp Files (ANF) volume. - -## SYNTAX - -### ByFieldsParameterSet -``` -Remove-AzAnfVolume -ResourceGroupName -AccountName -PoolName -VolumeName - [-DefaultProfile ] [] -``` - -### ByResouceIdParameterSet -``` -Remove-AzAnfVolume -ResourceId [-DefaultProfile ] [] -``` - -## DESCRIPTION -The **Remove-AzAnfVolume** cmdlet deletes an ANF volume. - -## EXAMPLES - -### Example 1: Delete an ANF volume -``` -PS C:\>Remove-AzAnfVolume -AccountName "MyAnfAccount" -PoolName "MyAnfPool" -VolumeName "MyAnfVolume" -``` - -This command deletes the ANF volume "MyAnfVolume". - -## PARAMETERS - -### -AccountName -The name of the ANF account - -```yaml -Type: String -Parameter Sets: ByFieldsParameterSet -Aliases: - -Required: True -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -DefaultProfile -The credentials, account, tenant, and subscription used for communication with Azure. - -```yaml -Type: IAzureContextContainer -Parameter Sets: (All) -Aliases: AzContext, AzureRmContext, AzureCredential - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -PoolName -The name of the ANF pool - -```yaml -Type: String -Parameter Sets: ByFieldsParameterSet -Aliases: - -Required: True -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -ResourceGroupName -The resource group of the ANF volume - -```yaml -Type: String -Parameter Sets: ByFieldsParameterSet -Aliases: - -Required: True -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -ResourceId -The resource id of the ANF volume - -```yaml -Type: String -Parameter Sets: ByResouceIdParameterSet -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: 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 - -### None - -## OUTPUTS - -### Microsoft.Azure.Commands.Anf.Models.PSAnfVolume - -## NOTES - -## RELATED LINKS diff --git a/src/Anf/Anf/help/Set-AzAnfPool.md b/src/Anf/Anf/help/Set-AzAnfPool.md deleted file mode 100644 index da693854cd36..000000000000 --- a/src/Anf/Anf/help/Set-AzAnfPool.md +++ /dev/null @@ -1,153 +0,0 @@ ---- -external help file: Microsoft.Azure.PowerShell.Cmdlets.Anf.dll-Help.xml -Module Name: Az.anf -online version: -schema: 2.0.0 ---- - -# Set-AzAnfPool - -## SYNOPSIS -Modifies an Azure NetApp Files (ANF) pool with the new data set. - -## SYNTAX - -``` -Set-AzAnfPool -ResourceGroupName -Location -AccountName -PoolName - -PoolSize -ServiceLevel [-DefaultProfile ] [] -``` - -## DESCRIPTION -The **Set-AzAnfPool** cmdlet modifies an ANF pool. - -## EXAMPLES - -### Example 1: Modify an ANF pool -``` -PS C:\>Set-AzAnfPool -AccountName "MyAnfAccount" -PoolName "MyAnfPool" -PoolSize size -ServiceLevel "ServiceLevel" -``` - -This command changes the ANF pool "MyAnfPool" to have the given size and "ServiceLevel" - -## PARAMETERS - -### -AccountName -The name of the ANF account - -```yaml -Type: String -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: IAzureContextContainer -Parameter Sets: (All) -Aliases: AzContext, AzureRmContext, AzureCredential - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -Location -The location of the resource - -```yaml -Type: String -Parameter Sets: (All) -Aliases: - -Required: True -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -PoolName -The name of the ANF pool - -```yaml -Type: String -Parameter Sets: (All) -Aliases: - -Required: True -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -PoolSize -The size of the ANF pool - -```yaml -Type: Int64 -Parameter Sets: (All) -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: String -Parameter Sets: (All) -Aliases: - -Required: True -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -ServiceLevel -The service level of the ANF pool - -```yaml -Type: String -Parameter Sets: (All) -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 - -### None - -## OUTPUTS - -### Microsoft.Azure.Commands.Anf.Models.PSAnfPool - -## NOTES - -## RELATED LINKS diff --git a/src/Anf/Anf/help/Set-AzAnfVolume.md b/src/Anf/Anf/help/Set-AzAnfVolume.md deleted file mode 100644 index f612976c5b04..000000000000 --- a/src/Anf/Anf/help/Set-AzAnfVolume.md +++ /dev/null @@ -1,199 +0,0 @@ ---- -external help file: Microsoft.Azure.PowerShell.Cmdlets.Anf.dll-Help.xml -Module Name: Az.anf -online version: -schema: 2.0.0 ---- - -# Set-AzAnfVolume - -## SYNOPSIS -Modifies an Azure NetApp Files (ANF) volume with the new data set. - -## SYNTAX - -``` -Set-AzAnfVolume -ResourceGroupName -Location -AccountName -PoolName - -VolumeName -UsageThreshold -SubnetId -CreationToken -ServiceLevel - [-DefaultProfile ] [] -``` - -## DESCRIPTION -The **Set-AzAnfVolume** cmdlet modifies an ANF volume. - -## EXAMPLES - -### Example 1: Modify an ANF volume -``` -PS C:\>Set-AzAnfVolume -AccountName "MyAnfAccount" -PoolName "MyAnfPool" -VolumeName "MyAnfVolume" -CreationToken "CreationToken" -ServiceLevel "ServiceLevel" -SubnetId "/subscriptions/mysubsid/resourceGroups/myrg/providers/Microsoft.Network/virtualNetworks/myvnet/subnets/default" -``` - -This command changes the ANF volume "MyAnfVolume" to have the provided details. - -## PARAMETERS - -### -AccountName -The name of the ANF account - -```yaml -Type: String -Parameter Sets: (All) -Aliases: - -Required: True -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -CreationToken -A unique file path for the volume - -```yaml -Type: String -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: IAzureContextContainer -Parameter Sets: (All) -Aliases: AzContext, AzureRmContext, AzureCredential - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -Location -The location of the resource - -```yaml -Type: String -Parameter Sets: (All) -Aliases: - -Required: True -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -PoolName -The name of the ANF pool - -```yaml -Type: String -Parameter Sets: (All) -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: String -Parameter Sets: (All) -Aliases: - -Required: True -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -ServiceLevel -The service level of the ANF volume - -```yaml -Type: String -Parameter Sets: (All) -Aliases: - -Required: True -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -SubnetId -The Azure Resource URI for a delegated subnet - -```yaml -Type: String -Parameter Sets: (All) -Aliases: - -Required: True -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 - -```yaml -Type: Int64 -Parameter Sets: (All) -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: String -Parameter Sets: (All) -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 - -### None - -## OUTPUTS - -### Microsoft.Azure.Commands.Anf.Models.PSAnfVolume - -## NOTES - -## RELATED LINKS diff --git a/src/Anf/Anf.Test/Anf.Test.csproj b/src/NetAppFiles/NetAppFiles.Test/NetAppFiles.Test.csproj similarity index 86% rename from src/Anf/Anf.Test/Anf.Test.csproj rename to src/NetAppFiles/NetAppFiles.Test/NetAppFiles.Test.csproj index df2b16e37406..a49c5d61044f 100644 --- a/src/Anf/Anf.Test/Anf.Test.csproj +++ b/src/NetAppFiles/NetAppFiles.Test/NetAppFiles.Test.csproj @@ -1,7 +1,7 @@ - Anf + NetAppFiles @@ -12,7 +12,7 @@ - + \ No newline at end of file diff --git a/src/Anf/Anf.Test/Properties/AssemblyInfo.cs b/src/NetAppFiles/NetAppFiles.Test/Properties/AssemblyInfo.cs similarity index 93% rename from src/Anf/Anf.Test/Properties/AssemblyInfo.cs rename to src/NetAppFiles/NetAppFiles.Test/Properties/AssemblyInfo.cs index a9e284bc6e11..0a583a3d2e50 100644 --- a/src/Anf/Anf.Test/Properties/AssemblyInfo.cs +++ b/src/NetAppFiles/NetAppFiles.Test/Properties/AssemblyInfo.cs @@ -19,11 +19,11 @@ // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. -[assembly: AssemblyTitle("Microsoft.Azure.Commands.Anf.Test")] +[assembly: AssemblyTitle("Microsoft.Azure.Commands.NetAppFiles.Test")] [assembly: AssemblyDescription("")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("Microsoft.Azure.Commands.Anf.Test")] +[assembly: AssemblyProduct("Microsoft.Azure.Commands.NetAppFiles.Test")] [assembly: AssemblyCopyright(Microsoft.WindowsAzure.Commands.Common.AzurePowerShell.AssemblyCopyright)] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] diff --git a/src/Anf/Anf.Test/ScenarioTests/AccountTests.cs b/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/AccountTests.cs similarity index 77% rename from src/Anf/Anf.Test/ScenarioTests/AccountTests.cs rename to src/NetAppFiles/NetAppFiles.Test/ScenarioTests/AccountTests.cs index 3b5cddab40b0..c9980a818291 100644 --- a/src/Anf/Anf.Test/ScenarioTests/AccountTests.cs +++ b/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/AccountTests.cs @@ -1,4 +1,4 @@ -// ---------------------------------------------------------------------------------- +// ---------------------------------------------------------------------------------- // // Copyright Microsoft Corporation // Licensed under the Apache License, Version 2.0 (the "License"); @@ -15,7 +15,7 @@ using Microsoft.WindowsAzure.Commands.ScenarioTest; using Xunit; -namespace Microsoft.Azure.Commands.Anf.Test.ScenarioTests.ScenarioTest +namespace Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest { public class AccountTests { @@ -33,5 +33,13 @@ public void TestAccountCrud() { TestController.NewInstance.RunPowerShellTest(_logger, "Test-AccountCrud"); } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestAccountPipelines() + { + TestController.NewInstance.RunPowerShellTest(_logger, "Test-AccountPipelines"); + } + } } diff --git a/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/AccountTests.ps1 b/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/AccountTests.ps1 new file mode 100644 index 000000000000..08298a0ec868 --- /dev/null +++ b/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/AccountTests.ps1 @@ -0,0 +1,107 @@ +# ---------------------------------------------------------------------------------- +# +# 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. +# ---------------------------------------------------------------------------------- + +function Test-AccountCrud +{ + $resourceGroup = "pws-sdk-tests-rg-1" + $accName1 = "pws-sdk-acc-1" + $accName2 = "pws-sdk-acc-2" + $accName3 = "pws-sdk-acc-3" + $resourceLocation = "westus2" + + try + { + # create the resource group + New-AzureRmResourceGroup -Name $resourceGroup -Location $resourceLocation + + # create and check account 1 + $newTagName = "tag1" + $newTagValue = "tagValue1" + $retrievedAcc = New-AzureRmNetAppFilesAccount -ResourceGroupName $resourceGroup -Location $resourceLocation -Name $accName1 -Tag @{$newTagName = $newTagValue} + Assert-AreEqual $accName1 $retrievedAcc.Name + Assert-AreEqual True $retrievedAcc.Tags.ContainsKey($newTagName) + Assert-AreEqual "tagValue1" $retrievedAcc.Tags[$newTagName].ToString() + + # create and check account 2 using the Confirm flag + $retrievedAcc = New-AzureRmNetAppFilesAccount -ResourceGroupName $resourceGroup -Location $resourceLocation -AccountName $accName2 -Confirm:$false + Assert-AreEqual $accName2 $retrievedAcc.Name + + # create and check account 3 using the WhatIf - it should not be created + $retrievedAcc = New-AzureRmNetAppFilesAccount -ResourceGroupName $resourceGroup -Location $resourceLocation -AccountName $accName3 -WhatIf + + # get and check accounts by group (list) + $retrievedAcc = Get-AzureRmNetAppFilesAccount -ResourceGroupName $resourceGroup + Assert-AreEqual $accName1 $retrievedAcc[0].Name + Assert-AreEqual $accName2 $retrievedAcc[1].Name + Assert-AreEqual 2 $retrievedAcc.Length + + # get and check an account by name + $retrievedAcc = Get-AzureRmNetAppFilesAccount -ResourceGroupName $resourceGroup -Name $accName1 + Assert-AreEqual $accName1 $retrievedAcc.Name + + # get and check the account again using the resource id just obtained + $retrievedAccById = Get-AzureRmNetAppFilesAccount -ResourceId $retrievedAcc.Id + Assert-AreEqual $accName1 $retrievedAccById.Name + + # update and check the account (tags) + # since only tags can be patched and no other set or update is possible + # there is no implemented cmdlet + + # delete one account retrieved by id and one by name and check removed + Remove-AzureRmNetAppFilesAccount -ResourceId $retrievedAccById.Id + + # but test the WhatIf first + Remove-AzureRmNetAppFilesAccount -ResourceGroupName $resourceGroup -AccountName $accName2 -WhatIf + $retrievedAcc = Get-AzureRmNetAppFilesAccount -ResourceGroupName $resourceGroup + Assert-AreEqual 1 $retrievedAcc.Length + + Remove-AzureRmNetAppFilesAccount -ResourceGroupName $resourceGroup -AccountName $accName2 + $retrievedAcc = Get-AzureRmNetAppFilesAccount -ResourceGroupName $resourceGroup + Assert-AreEqual 0 $retrievedAcc.Length + } + finally + { + # Cleanup + Clean-ResourceGroup $resourceGroup + } +} + +<# +.SYNOPSIS +Test Account Pipeline operations (uses command aliases) +#> +function Test-AccountPipelines +{ + $resourceGroup = "pws-sdk-tests-rg-1" + $accName1 = "pws-sdk-acc-1" + $accName2 = "pws-sdk-acc-2" + $resourceLocation = "westus2" + + try + { + # create the resource group + New-AzureRmResourceGroup -Name $resourceGroup -Location $resourceLocation + + New-AnfAccount -ResourceGroupName $resourceGroup -Location $resourceLocation -Name $accName1 | Remove-AnfAccount + + New-AnfAccount -ResourceGroupName $resourceGroup -Location $resourceLocation -Name $accName2 + + Get-AnfAccount -ResourceGroupName $resourceGroup -Name $accName2 | Remove-AnfAccount + } + finally + { + # Cleanup + Clean-ResourceGroup $resourceGroup + } +} diff --git a/src/Anf/Anf.Test/ScenarioTests/Common.ps1 b/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/Common.ps1 similarity index 100% rename from src/Anf/Anf.Test/ScenarioTests/Common.ps1 rename to src/NetAppFiles/NetAppFiles.Test/ScenarioTests/Common.ps1 diff --git a/src/Anf/Anf.Test/ScenarioTests/PoolTests.cs b/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/PoolTests.cs similarity index 77% rename from src/Anf/Anf.Test/ScenarioTests/PoolTests.cs rename to src/NetAppFiles/NetAppFiles.Test/ScenarioTests/PoolTests.cs index 43dbfad8410d..bfab6a9e362f 100644 --- a/src/Anf/Anf.Test/ScenarioTests/PoolTests.cs +++ b/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/PoolTests.cs @@ -1,4 +1,4 @@ -// ---------------------------------------------------------------------------------- +// ---------------------------------------------------------------------------------- // // Copyright Microsoft Corporation // Licensed under the Apache License, Version 2.0 (the "License"); @@ -15,7 +15,7 @@ using Microsoft.WindowsAzure.Commands.ScenarioTest; using Xunit; -namespace Microsoft.Azure.Commands.Anf.Test.ScenarioTests.ScenarioTest +namespace Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest { public class PoolTests { @@ -33,5 +33,12 @@ public void TestPoolCrud() { TestController.NewInstance.RunPowerShellTest(_logger, "Test-PoolCrud"); } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestPoolPipelines() + { + TestController.NewInstance.RunPowerShellTest(_logger, "Test-PoolPipelines"); + } } } diff --git a/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/PoolTests.ps1 b/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/PoolTests.ps1 new file mode 100644 index 000000000000..4fefb4a4d347 --- /dev/null +++ b/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/PoolTests.ps1 @@ -0,0 +1,144 @@ +# ---------------------------------------------------------------------------------- +# +# 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 Pool CRUD operations +#> +function Test-PoolCrud +{ + $resourceGroup = "pws-sdk-tests-rg-1" + $accName = "pws-sdk-acc-1" + $poolName1 = "pws-sdk-pool-1" + $poolName2 = "pws-sdk-pool-2" + $resourceLocation = "westus2" + $poolSize = 4398046511104 + $serviceLevel = "Premium" + + try + { + # create the resource group + New-AzureRmResourceGroup -Name $resourceGroup -Location $resourceLocation + + # create account + $retrievedAcc = New-AzureRmNetAppFilesAccount -ResourceGroupName $resourceGroup -Location $resourceLocation -AccountName $accName + + # create pool 1 and check + $newTagName = "tag1" + $newTagValue = "tagValue1" + $retrievedPool = New-AzureRmNetAppFilesPool -ResourceGroupName $resourceGroup -Location $resourceLocation -AccountName $accName -PoolName $poolName1 -PoolSize $poolSize -ServiceLevel $serviceLevel -Tag @{$newTagName = $newTagValue} + Assert-AreEqual "$accName/$poolName1" $retrievedPool.Name + Assert-AreEqual $serviceLevel $retrievedPool.ServiceLevel + Assert-AreEqual True $retrievedPool.Tags.ContainsKey($newTagName) + Assert-AreEqual "tagValue1" $retrievedPool.Tags[$newTagName].ToString() + + # create and check pool 2 using the confirm flag + $retrievedPool = New-AzureRmNetAppFilesPool -ResourceGroupName $resourceGroup -Location $resourceLocation -AccountName $accName -PoolName $poolName2 -PoolSize $poolSize -ServiceLevel $serviceLevel -Confirm:$false + Assert-AreEqual "$accName/$poolName2" $retrievedPool.Name + + # create and check pool 3 using the WhatIf - it should not be created + $retrievedPool = New-AzureRmNetAppFilesPool -ResourceGroupName $resourceGroup -Location $resourceLocation -AccountName $accName -PoolName $poolName2 -PoolSize $poolSize -ServiceLevel $serviceLevel -WhatIf + + # get and check pools by group (list) + $retrievedPool = Get-AzureRmNetAppFilesPool -ResourceGroupName $resourceGroup -AccountName $accName + Assert-AreEqual "$accName/$poolName1" $retrievedPool[0].Name + Assert-AreEqual "$accName/$poolName2" $retrievedPool[1].Name + Assert-AreEqual 2 $retrievedPool.Length + + # get and check a pool by name + $retrievedPool = Get-AzureRmNetAppFilesPool -ResourceGroupName $resourceGroup -AccountName $accName -PoolName $poolName1 + Assert-AreEqual "$accName/$poolName1" $retrievedPool.Name + + # get and check the account again using the resource id just obtained + $retrievedPoolById = Get-AzureRmNetAppFilesPool -ResourceId $retrievedPool.Id + Assert-AreEqual "$accName/$poolName1" $retrievedPoolById.Name + + # update (patch) and check the pool + # only tags can currently be patched so there is no implemented cmdlet + + # Update and check the Pool + $retrievedPool = Update-AzureRmNetAppFilesPool -ResourceGroupName $resourceGroup -Location $resourceLocation -AccountName $accName -PoolName $poolName1 -PoolSize $poolSize -ServiceLevel "Standard" + Assert-AreEqual "$accName/$poolName1" $retrievedPool.Name + Assert-AreEqual "Standard" $retrievedPool.ServiceLevel + + # delete one account retrieved by id and one by name and check removed + Remove-AzureRmNetAppFilesPool -ResourceId $retrievedPoolById.Id + + # but test the WhatIf first + Remove-AzureRmNetAppFilesPool -ResourceGroupName $resourceGroup -AccountName $accName -PoolName $poolName2 -WhatIf + $retrievedPool = Get-AzureRmNetAppFilesPool -ResourceGroupName $resourceGroup -AccountName $accName + Assert-AreEqual 1 $retrievedPool.Length + + Remove-AzureRmNetAppFilesPool -ResourceGroupName $resourceGroup -AccountName $accName -PoolName $poolName2 + $retrievedPool = Get-AzureRmNetAppFilesPool -ResourceGroupName $resourceGroup -AccountName $accName + Assert-AreEqual 0 $retrievedPool.Length + } + finally + { + # Cleanup + Clean-ResourceGroup $resourceGroup + } +} + + +<# +.SYNOPSIS +Test Pool Pipeline operations (using command aliases) +#> +function Test-PoolPipelines +{ + $resourceGroup = "pws-sdk-tests-rg-1" + $accName = "pws-sdk-acc-1" + $poolName1 = "pws-sdk-pool-1" + $poolName2 = "pws-sdk-pool-2" + $resourceLocation = "westus2" + $poolSize = 4398046511104 + $serviceLevel = "Premium" + + try + { + # create the resource group + New-AzureRmResourceGroup -Name $resourceGroup -Location $resourceLocation + + # 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 -PoolSize $poolSize -ServiceLevel "Standard" + Assert-AreEqual "Standard" $retrievedPool.ServiceLevel + + # 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 + + # delete a pool by piping from account + Get-AnfAccount -ResourceGroupName $resourceGroup -Name $accName | Remove-AnfPool -Name $poolName1 + + # recreate two pools + New-AnfPool -ResourceGroupName $resourceGroup -Location $resourceLocation -AccountName $accName -Name $PoolName1 -PoolSize $poolSize -ServiceLevel $serviceLevel + + New-AnfPool -ResourceGroupName $resourceGroup -Location $resourceLocation -AccountName $accName -PoolName $poolName2 -PoolSize $poolSize -ServiceLevel $serviceLevel + + # delete one of the pools by piping from pool get + Get-AnfPool -ResourceGroupName $resourceGroup -AccountName $accName -Name $poolName1 | Remove-AzureRmNetAppFilesPool + + $retrievedPool = Get-AnfAccount -ResourceGroupName $resourceGroup -AccountName $accName | Get-AnfPool + Assert-AreEqual 1 $retrievedPool.Length + } + finally + { + # Cleanup + Clean-ResourceGroup $resourceGroup + } +} \ No newline at end of file diff --git a/src/Anf/Anf.Test/ScenarioTests/SnapshotTests.cs b/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/SnapshotTests.cs similarity index 77% rename from src/Anf/Anf.Test/ScenarioTests/SnapshotTests.cs rename to src/NetAppFiles/NetAppFiles.Test/ScenarioTests/SnapshotTests.cs index 92eb35d22165..06d7f2d2c4b5 100644 --- a/src/Anf/Anf.Test/ScenarioTests/SnapshotTests.cs +++ b/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/SnapshotTests.cs @@ -1,4 +1,4 @@ -// ---------------------------------------------------------------------------------- +// ---------------------------------------------------------------------------------- // // Copyright Microsoft Corporation // Licensed under the Apache License, Version 2.0 (the "License"); @@ -16,7 +16,7 @@ using System; using Xunit; -namespace Microsoft.Azure.Commands.Anf.Test.ScenarioTests.ScenarioTest +namespace Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest { public class SnapshotTests { @@ -34,5 +34,12 @@ public void TestSnapshotCrud() { TestController.NewInstance.RunPowerShellTest(_logger, "Test-SnapshotCrud"); } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestSnapshotPipelines() + { + TestController.NewInstance.RunPowerShellTest(_logger, "Test-SnapshotPipelines"); + } } } diff --git a/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/SnapshotTests.ps1 b/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/SnapshotTests.ps1 new file mode 100644 index 000000000000..5340be445c3f --- /dev/null +++ b/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/SnapshotTests.ps1 @@ -0,0 +1,161 @@ +# ---------------------------------------------------------------------------------- +# +# 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 CRUD operations +#> +function Test-SnapshotCrud +{ + $currentSub = (Get-AzureRmContext).Subscription + $subsid = $currentSub.SubscriptionId + + $resourceGroup = "pws-sdk-tests-rg-1" + $accName = "pws-sdk-acc-2" + $poolName = "pws-sdk-pool-1" + $volName = "pws-sdk-vol-1" + $snName1 = "pws-sdk-snapshot-1" + $snName2 = "pws-sdk-snapshot-2" + $gibibyte = 1024 * 1024 * 1024 + $usageThreshold = 100 * $gibibyte + $doubleUsage = 2 * $usageThreshold + $resourceLocation = "westus2" + $subnetName = "default" + $standardPoolSize = 4398046511104 + $serviceLevel = "Premium" + $vnetName = $resourceGroup + "-vnet" + + $subnetId = "/subscriptions/$subsId/resourceGroups/$resourceGroup/providers/Microsoft.Network/virtualNetworks/$vnetName/subnets/$subnetName" + + try + { + # create the resource group + New-AzureRmResourceGroup -Name $resourceGroup -Location $resourceLocation + + # create virtual network + $virtualNetwork = New-AzureRmVirtualNetwork -ResourceGroupName $resourceGroup -Location $resourceLocation -Name $vnetName -AddressPrefix 10.0.0.0/16 + $delegation = New-AzureRmDelegation -Name "netAppVolumes" -ServiceName "Microsoft.Netapp/volumes" + Add-AzureRmVirtualNetworkSubnetConfig -Name $subnetName -VirtualNetwork $virtualNetwork -AddressPrefix "10.0.1.0/24" -Delegation $delegation | Set-AzureRmVirtualNetwork + + # create the resource group + New-AzureRmResourceGroup -Name $resourceGroupName -Location $resourceLocation + + # create account, pool and volume + $retrievedAcc = New-AzureRmNetAppFilesAccount -ResourceGroupName $resourceGroup -Location $resourceLocation -AccountName $accName + + $retrievedPool = New-AzureRmNetAppFilesPool -ResourceGroupName $resourceGroup -Location $resourceLocation -AccountName $accName -PoolName $poolName -PoolSize $standardPoolSize -ServiceLevel $serviceLevel + + $retrievedVolume = New-AzureRmNetAppFilesVolume -ResourceGroupName $resourceGroup -Location $resourceLocation -AccountName $accName -PoolName $poolName -VolumeName $volName -CreationToken $volName -UsageThreshold $usageThreshold -ServiceLevel $serviceLevel -SubnetId $subnetId + Assert-AreEqual "$accName/$poolName/$volName" $retrievedVolume.Name + Assert-AreEqual $serviceLevel $retrievedVolume.ServiceLevel + + # create two snapshots and check + $retrieveSn = New-AzureRmNetAppFilesSnapshot -ResourceGroupName $resourceGroup -Location $resourceLocation -AccountName $accName -PoolName $poolName -VolumeName $volName -SnapshotName $snName1 -FileSystemId $retrievedVolume.FileSystemId + Assert-AreEqual "$accName/$poolName/$volName/$snName1" $retrieveSn.Name + + $retrieveSn = New-AzureRmNetAppFilesSnapshot -ResourceGroupName $resourceGroup -Location $resourceLocation -AccountName $accName -PoolName $poolName -VolumeName $volName -SnapshotName $snName2 -FileSystemId $retrievedVolume.FileSystemId + Assert-AreEqual "$accName/$poolName/$volName/$snName2" $retrieveSn.Name + + # get and check snapshots by group (list) + $retrievedSnapshot = Get-AzureRmNetAppFilesSnapshot -ResourceGroupName $resourceGroup -AccountName $accName -PoolName $poolName -VolumeName $volName + Assert-AreEqual "$accName/$poolName/$volName/$snName1" $retrievedSnapshot[0].Name + Assert-AreEqual "$accName/$poolName/$volName/$snName2" $retrievedSnapshot[1].Name + Assert-AreEqual 2 $retrievedSnapshot.Length + + # get and check a snapshot by name + $retrievedSnapshot = Get-AzureRmNetAppFilesSnapshot -ResourceGroupName $resourceGroup -AccountName $accName -PoolName $poolName -VolumeName $volName -SnapshotName $snName1 + Assert-AreEqual "$accName/$poolName/$volName/$snName1" $retrievedSnapshot.Name + + # get and check the snapshot again using the resource id just obtained + $retrievedSnapshotById = Get-AzureRmNetAppFilesSnapshot -ResourceId $retrievedSnapshot.Id + Assert-AreEqual "$accName/$poolName/$volName/$snName1" $retrievedSnapshotById.Name + + # no update/set (patch/put) possible for snapshot + + # delete one snapshot retrieved by id and one by name and check removed + # temporary fix. Deletion returns 200 until upcoming swagger change + Assert-ThrowsContains -script { Remove-AzureRmNetAppFilesSnapshot -ResourceId $retrievedSnapshotById.Id } -message "invalid status code 'OK'" + Assert-ThrowsContains -script { Remove-AzureRmNetAppFilesSnapshot -ResourceGroupName $resourceGroup -AccountName $accName -PoolName $poolName -VolumeName $volName -SnapshotName $snName2 } -message "invalid status code 'OK'" + $retrievedSnapshot = Get-AzureRmNetAppFilesSnapshot -ResourceGroupName $resourceGroup -AccountName $accName -PoolName $poolName -VolumeName $volName + Assert-AreEqual 0 $retrievedSnapshot.Length + } + finally + { + # Cleanup + Clean-ResourceGroup $resourceGroup + } +} + +<# +.SYNOPSIS +Test Snapshot Pipeline operations (using command aliases) +#> +function Test-SnapshotPipelines +{ + $currentSub = (Get-AzureRmContext).Subscription + $subsid = $currentSub.SubscriptionId + + $resourceGroup = "pws-sdk-tests-rg-1" + $accName = "pws-sdk-acc-1" + $poolName = "pws-sdk-pool-1" + $volName = "pws-sdk-vol-1" + $snName1 = "pws-sdk-snapshot-1" + $snName2 = "pws-sdk-snapshot-2" + $gibibyte = 1024 * 1024 * 1024 + $usageThreshold = 100 * $gibibyte + $doubleUsage = 2 * $usageThreshold + $resourceLocation = "westus2" + $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-AzureRmResourceGroup -Name $resourceGroup -Location $resourceLocation + + # create virtual network + $virtualNetwork = New-AzureRmVirtualNetwork -ResourceGroupName $resourceGroup -Location $resourceLocation -Name $vnetName -AddressPrefix 10.0.0.0/16 + $delegation = New-AzureRmDelegation -Name "netAppVolumes" -ServiceName "Microsoft.Netapp/volumes" + Add-AzureRmVirtualNetworkSubnetConfig -Name $subnetName -VirtualNetwork $virtualNetwork -AddressPrefix "10.0.1.0/24" -Delegation $delegation | Set-AzureRmVirtualNetwork + + # create an account, pool and volume + $retrievedAcc = New-AnfAccount -ResourceGroupName $resourceGroup -Location $resourceLocation -AccountName $accName + + New-AnfPool -ResourceGroupName $resourceGroup -Location $resourceLocation -AccountName $accName -Name $poolName -PoolSize $poolSize -ServiceLevel $serviceLevel + + $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 + Assert-AreEqual "$accName/$poolName/$volName/$snName1" $retrieveSn.Name + + # temporarily removed - snapshots cannot be deleted due to a change in status code in the RP + # this will be fixed in the R3.5 version of the swagger + # delete the snapshot by piping from snapshot get + #Get-AnfSnapshot -ResourceGroupName $resourceGroup -AccountName $accName -PoolName $poolName -VolumeName $volName -Name $snName1 | Remove-AnfSnapshot + + # and check the snapshot list by piping from volume get + #$retrievedSnapshot = Get-AnfVolume -ResourceGroupName $resourceGroup -AccountName $accName -PoolName $poolName -Name $volName | Get-AnfSnapshot + #Assert-AreEqual 0 $retrievedSnapshot.Length + } + finally + { + # Cleanup + Clean-ResourceGroup $resourceGroup + } +} \ No newline at end of file diff --git a/src/Anf/Anf.Test/ScenarioTests/TestController.cs b/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/TestController.cs similarity index 90% rename from src/Anf/Anf.Test/ScenarioTests/TestController.cs rename to src/NetAppFiles/NetAppFiles.Test/ScenarioTests/TestController.cs index f065c9f92d54..47f02b4c3783 100644 --- a/src/Anf/Anf.Test/ScenarioTests/TestController.cs +++ b/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/TestController.cs @@ -1,4 +1,4 @@ -// ---------------------------------------------------------------------------------- +// ---------------------------------------------------------------------------------- // // Copyright Microsoft Corporation // Licensed under the Apache License, Version 2.0 (the "License"); @@ -27,7 +27,7 @@ using Microsoft.WindowsAzure.Commands.Test.Utilities.Common; using TestEnvironmentFactory = Microsoft.Rest.ClientRuntime.Azure.TestFramework.TestEnvironmentFactory; -namespace Microsoft.Azure.Commands.Anf.Test.ScenarioTests.ScenarioTest +namespace Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest { public class TestController : RMTestBase { @@ -37,7 +37,7 @@ public class TestController : RMTestBase public NetworkManagementClient NetworkClient { get; private set; } - public AzureNetAppFilesManagementClient AnfManagementClient { get; private set; } + public AzureNetAppFilesManagementClient NetAppFilesManagementClient { get; private set; } public static TestController NewInstance => new TestController(); @@ -49,13 +49,13 @@ protected TestController() protected void SetupManagementClients(MockContext context) { ResourceManagementClient = GetResourceManagementClient(context); - AnfManagementClient = GetAnfManagementClient(context); + NetAppFilesManagementClient = GetNetAppFilesManagementClient(context); NetworkClient = GetNetworkClient(context); _helper.SetupManagementClients( ResourceManagementClient, NetworkClient, - AnfManagementClient); + NetAppFilesManagementClient); } public void RunPowerShellTest(ServiceManagement.Common.Models.XunitTracingInterceptor logger, params string[] scripts) @@ -108,7 +108,7 @@ public void RunPsTestWorkflow( "ScenarioTests\\" + callingClassName + ".ps1", _helper.RMProfileModule, _helper.RMNetworkModule, - _helper.GetRMModulePath("AzureRM.Anf.psd1"), + _helper.GetRMModulePath("AzureRM.NetAppFiles.psd1"), "AzureRM.Resources.ps1"); try { @@ -135,7 +135,7 @@ protected NetworkManagementClient GetNetworkClient(MockContext context) return context.GetServiceClient(TestEnvironmentFactory.GetTestEnvironment()); } - private static AzureNetAppFilesManagementClient GetAnfManagementClient(MockContext context) + private static AzureNetAppFilesManagementClient GetNetAppFilesManagementClient(MockContext context) { return context.GetServiceClient(TestEnvironmentFactory.GetTestEnvironment()); } diff --git a/src/Anf/Anf.Test/ScenarioTests/VolumeTests.cs b/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/VolumeTests.cs similarity index 77% rename from src/Anf/Anf.Test/ScenarioTests/VolumeTests.cs rename to src/NetAppFiles/NetAppFiles.Test/ScenarioTests/VolumeTests.cs index 014f5b62fa17..608f04081c39 100644 --- a/src/Anf/Anf.Test/ScenarioTests/VolumeTests.cs +++ b/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/VolumeTests.cs @@ -1,4 +1,4 @@ -// ---------------------------------------------------------------------------------- +// ---------------------------------------------------------------------------------- // // Copyright Microsoft Corporation // Licensed under the Apache License, Version 2.0 (the "License"); @@ -15,7 +15,7 @@ using Microsoft.WindowsAzure.Commands.ScenarioTest; using Xunit; -namespace Microsoft.Azure.Commands.Anf.Test.ScenarioTests.ScenarioTest +namespace Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest { public class VolumeTests { @@ -33,5 +33,12 @@ public void TestVolumeCrud() { TestController.NewInstance.RunPowerShellTest(_logger, "Test-VolumeCrud"); } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestVolumePipelines() + { + TestController.NewInstance.RunPowerShellTest(_logger, "Test-VolumePipelines"); + } } } diff --git a/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/VolumeTests.ps1 b/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/VolumeTests.ps1 new file mode 100644 index 000000000000..6261292e493d --- /dev/null +++ b/src/NetAppFiles/NetAppFiles.Test/ScenarioTests/VolumeTests.ps1 @@ -0,0 +1,172 @@ +# ---------------------------------------------------------------------------------- +# +# Copyright Microsoft Corporation +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ---------------------------------------------------------------------------------- + +<# +.SYNOPSIS +Test Volume CRUD operations +#> +function Test-VolumeCrud +{ + $currentSub = (Get-AzureRmContext).Subscription + $subsid = $currentSub.SubscriptionId + + $resourceGroup = "pws-sdk-tests-rg-1" + $accName = "pws-sdk-acc-1" + $poolName = "pws-sdk-pool-1" + $volName1 = "pws-sdk-vol-1" + $volName2 = "pws-sdk-vol-2" + $volName3 = "pws-sdk-vol-3" + $gibibyte = 1024 * 1024 * 1024 + $usageThreshold = 100 * $gibibyte + $doubleUsage = 2 * $usageThreshold + $resourceLocation = "westus2" + $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-AzureRmResourceGroup -Name $resourceGroup -Location $resourceLocation + + # create virtual network + $virtualNetwork = New-AzureRmVirtualNetwork -ResourceGroupName $resourceGroup -Location $resourceLocation -Name $vnetName -AddressPrefix 10.0.0.0/16 + $delegation = New-AzureRmDelegation -Name "netAppVolumes" -ServiceName "Microsoft.Netapp/volumes" + Add-AzureRmVirtualNetworkSubnetConfig -Name $subnetName -VirtualNetwork $virtualNetwork -AddressPrefix "10.0.1.0/24" -Delegation $delegation | Set-AzureRmVirtualNetwork + + # create account + $retrievedAcc = New-AzureRmNetAppFilesAccount -ResourceGroupName $resourceGroup -Location $resourceLocation -AccountName $accName + + # create pool + $retrievedPool = New-AzureRmNetAppFilesPool -ResourceGroupName $resourceGroup -Location $resourceLocation -AccountName $accName -PoolName $poolName -PoolSize $poolSize -ServiceLevel $serviceLevel + + # create first volume and check + $newTagName = "tag1" + $newTagValue = "tagValue1" + $retrievedVolume = New-AzureRmNetAppFilesVolume -ResourceGroupName $resourceGroup -Location $resourceLocation -AccountName $accName -PoolName $poolName -VolumeName $volName1 -CreationToken $volName1 -UsageThreshold $usageThreshold -ServiceLevel $serviceLevel -SubnetId $subnetId -Tag @{$newTagName = $newTagValue} + 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() + + # create second volume and check using the confirm flag + $retrievedVolume = New-AzureRmNetAppFilesVolume -ResourceGroupName $resourceGroup -Location $resourceLocation -AccountName $accName -PoolName $poolName -VolumeName $volName2 -CreationToken $volName2 -UsageThreshold $usageThreshold -ServiceLevel $serviceLevel -SubnetId $subnetId -Confirm:$false + Assert-AreEqual "$accName/$poolName/$volName2" $retrievedVolume.Name + Assert-AreEqual $serviceLevel $retrievedVolume.ServiceLevel + + # create and check a third volume using the WhatIf - it should not be created + $retrievedVolume = New-AzureRmNetAppFilesVolume -ResourceGroupName $resourceGroup -Location $resourceLocation -AccountName $accName -PoolName $poolName -VolumeName $volName3 -CreationToken $volName2 -UsageThreshold $usageThreshold -ServiceLevel $serviceLevel -SubnetId $subnetId -WhatIf + + # get and check volumes by group (list) + $retrievedVolume = Get-AzureRmNetAppFilesVolume -ResourceGroupName $resourceGroup -AccountName $accName -PoolName $poolName + Assert-AreEqual "$accName/$poolName/$volName1" $retrievedVolume[0].Name + Assert-AreEqual "$accName/$poolName/$volName2" $retrievedVolume[1].Name + Assert-AreEqual 2 $retrievedVolume.Length + + # get and check a volume by name + $retrievedVolume = Get-AzureRmNetAppFilesVolume -ResourceGroupName $resourceGroup -AccountName $accName -PoolName $poolName -VolumeName $volName1 + Assert-AreEqual "$accName/$poolName/$volName1" $retrievedVolume.Name + + # get and check the volume again using the resource id just obtained + $retrievedVolumeById = Get-AzureRmNetAppFilesVolume -ResourceId $retrievedVolume.Id + Assert-AreEqual "$accName/$poolName/$volName1" $retrievedVolumeById.Name + + # update (patch) and check the volume + $retrievedVolume = Update-AzureRmNetAppFilesVolume -ResourceGroupName $resourceGroup -Location $resourceLocation -AccountName $accName -PoolName $poolName -VolumeName $volName1 -UsageThreshold $doubleUsage + Assert-AreEqual "Premium" $retrievedVolume.ServiceLevel # unchanged/not part of the patch + Assert-AreEqual $doubleUsage $retrievedVolume.usageThreshold + + # delete one volume retrieved by id and one by name and check removed + Remove-AzureRmNetAppFilesVolume -ResourceId $retrievedVolumeById.Id + + # but test the WhatIf first + Remove-AzureRmNetAppFilesVolume -ResourceGroupName $resourceGroup -AccountName $accName -PoolName $poolName -Name $volName2 -WhatIf + $retrievedVolume = Get-AzureRmNetAppFilesVolume -ResourceGroupName $resourceGroup -AccountName $accName -PoolName $poolName + Assert-AreEqual 1 $retrievedVolume.Length + + Remove-AzureRmNetAppFilesVolume -ResourceGroupName $resourceGroup -AccountName $accName -PoolName $poolName -VolumeName $volName2 + $retrievedVolume = Get-AzureRmNetAppFilesVolume -ResourceGroupName $resourceGroup -AccountName $accName -PoolName $poolName + Assert-AreEqual 0 $retrievedVolume.Length + } + finally + { + # Cleanup + Clean-ResourceGroup $resourceGroup + } +} + +<# +.SYNOPSIS +Test Volume Pipeline operations (using command aliases) +#> +function Test-VolumePipelines +{ + $currentSub = (Get-AzureRmContext).Subscription + $subsid = $currentSub.SubscriptionId + + $resourceGroup = "pws-sdk-tests-rg-1" + $accName = "pws-sdk-acc-1" + $poolName = "pws-sdk-pool-1" + $volName1 = "pws-sdk-vol-1" + $gibibyte = 1024 * 1024 * 1024 + $usageThreshold = 100 * $gibibyte + $doubleUsage = 2 * $usageThreshold + $resourceLocation = "westus2" + $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-AzureRmResourceGroup -Name $resourceGroup -Location $resourceLocation + + # create virtual network + $virtualNetwork = New-AzureRmVirtualNetwork -ResourceGroupName $resourceGroup -Location $resourceLocation -Name $vnetName -AddressPrefix 10.0.0.0/16 + $delegation = New-AzureRmDelegation -Name "netAppVolumes" -ServiceName "Microsoft.Netapp/volumes" + Add-AzureRmVirtualNetworkSubnetConfig -Name $subnetName -VirtualNetwork $virtualNetwork -AddressPrefix "10.0.1.0/24" -Delegation $delegation | Set-AzureRmVirtualNetwork + + # create account + $retrievedAcc = New-AnfAccount -ResourceGroupName $resourceGroup -Location $resourceLocation -AccountName $accName + + # create pool + New-AnfPool -ResourceGroupName $resourceGroup -Location $resourceLocation -AccountName $accName -Name $poolName -PoolSize $poolSize -ServiceLevel $serviceLevel + + # create volume by piping from a pool + $retrievedVolume = Get-AnfPool -ResourceGroupName $resourceGroup -AccountName $accName -Name $poolName | New-AnfVolume -Name $volName1 -CreationToken $volName1 -UsageThreshold $usageThreshold -ServiceLevel $serviceLevel -SubnetId $subnetId + Assert-AreEqual "$accName/$poolName/$volName1" $retrievedVolume.Name + + # modify volume by piping from volume + $retrievedVolume = Get-AnfVolume -ResourceGroupName $resourceGroup -AccountName $accName -PoolName $poolName -Name $volName1 | Update-AnfVolume -ServiceLevel "Standard" + Assert-AreEqual "Standard" $retrievedVolume.ServiceLevel + + # delete the volumes by piping from volume get + Get-AnfVolume -ResourceGroupName $resourceGroup -AccountName $accName -PoolName $poolName -Name $volName1 | Remove-AnfVolume + + # and check the volume list by piping from get + $retrievedVolume = Get-AnfPool -ResourceGroupName $resourceGroup -AccountName $accName -PoolName $poolName | Get-AnfVolume + Assert-AreEqual 0 $retrievedVolume.Length + } + finally + { + # Cleanup + Clean-ResourceGroup $resourceGroup + } +} \ No newline at end of file diff --git a/src/Anf/Anf.Test/SessionRecords/Microsoft.Azure.Commands.Anf.Test.ScenarioTests.ScenarioTest.AccountTests/TestAccountCrud.json b/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.AccountTests/TestAccountCrud.json similarity index 75% rename from src/Anf/Anf.Test/SessionRecords/Microsoft.Azure.Commands.Anf.Test.ScenarioTests.ScenarioTest.AccountTests/TestAccountCrud.json rename to src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.AccountTests/TestAccountCrud.json index 25799288ccb3..3244c40256f3 100644 --- a/src/Anf/Anf.Test/SessionRecords/Microsoft.Azure.Commands.Anf.Test.ScenarioTests.ScenarioTest.AccountTests/TestAccountCrud.json +++ b/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.AccountTests/TestAccountCrud.json @@ -7,7 +7,7 @@ "RequestBody": "{\r\n \"location\": \"westus2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "a823696f-59fb-4171-b5d3-0bf2697b16f7" + "db02d7e5-7e03-4ecb-815e-aaa0e050f20d" ], "Accept-Language": [ "en-US" @@ -33,16 +33,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1199" ], "x-ms-request-id": [ - "cd725eb7-f524-41ae-8500-f05825fd252b" + "35f9e5c7-0d47-48ea-9e1f-1d74537336ff" ], "x-ms-correlation-request-id": [ - "cd725eb7-f524-41ae-8500-f05825fd252b" + "35f9e5c7-0d47-48ea-9e1f-1d74537336ff" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T171908Z:cd725eb7-f524-41ae-8500-f05825fd252b" + "SOUTHEASTASIA:20190313T124140Z:35f9e5c7-0d47-48ea-9e1f-1d74537336ff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:19:07 GMT" + "Wed, 13 Mar 2019 12:41:39 GMT" ], "Content-Length": [ "190" @@ -70,10 +70,10 @@ "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1?api-version=2017-08-15", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlR3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wd3Mtc2RrLWFjYy0xP2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westus2\"\r\n}", + "RequestBody": "{\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "fa9c64b7-e009-44ff-99f8-124bfb1caa16" + "46ec56f9-8e14-4a5b-94b8-7883d37ef07a" ], "Accept-Language": [ "en-US" @@ -88,7 +88,7 @@ "application/json; charset=utf-8" ], "Content-Length": [ - "29" + "73" ] }, "ResponseHeaders": { @@ -99,13 +99,13 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2019-02-27T17%3A19%3A13.3282919Z'\"" + "W/\"datetime'2019-03-13T12%3A41%3A45.182572Z'\"" ], "x-ms-request-id": [ - "43f3f771-5293-40aa-9985-e520833a406c" + "4b767d4a-f86b-45a8-a4fa-e5185ba5cbba" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/051b0b22-10c8-4c25-966d-04b79e5bbe5e?api-version=2017-08-15" + "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/b896fd35-375a-4a65-9f69-488720eb0765?api-version=2017-08-15" ], "Server": [ "Microsoft-IIS/10.0" @@ -117,10 +117,10 @@ "1199" ], "x-ms-correlation-request-id": [ - "5d315933-b0a7-4011-8cde-0f1ec6ece867" + "d2ef3dd7-5052-4eb7-bf69-afd277251818" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T171925Z:5d315933-b0a7-4011-8cde-0f1ec6ece867" + "SOUTHEASTASIA:20190313T124146Z:d2ef3dd7-5052-4eb7-bf69-afd277251818" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -129,10 +129,10 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:19:24 GMT" + "Wed, 13 Mar 2019 12:41:46 GMT" ], "Content-Length": [ - "362" + "389" ], "Content-Type": [ "application/json; charset=utf-8" @@ -141,12 +141,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1\",\r\n \"name\": \"pws-sdk-acc-1\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2019-02-27T17%3A19%3A13.3282919Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"name\": \"pws-sdk-acc-1\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1\",\r\n \"name\": \"pws-sdk-acc-1\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2019-03-13T12%3A41%3A45.182572Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"name\": \"pws-sdk-acc-1\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/051b0b22-10c8-4c25-966d-04b79e5bbe5e?api-version=2017-08-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvMDUxYjBiMjItMTBjOC00YzI1LTk2NmQtMDRiNzllNWJiZTVlP2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/b896fd35-375a-4a65-9f69-488720eb0765?api-version=2017-08-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvYjg5NmZkMzUtMzc1YS00YTY1LTlmNjktNDg4NzIwZWIwNzY1P2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -165,7 +165,7 @@ "no-cache" ], "x-ms-request-id": [ - "f54276f4-47d2-4c1e-8083-0be7c28937bb" + "5c5f3133-0231-4da0-a9f8-0883a30f424e" ], "Server": [ "Microsoft-IIS/10.0" @@ -174,13 +174,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11999" ], "x-ms-correlation-request-id": [ - "8eec605f-fae3-4835-ab68-ce597a0c6f73" + "6ed526e2-6522-48f6-b3c0-dc02d7da09e2" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T171955Z:8eec605f-fae3-4835-ab68-ce597a0c6f73" + "SOUTHEASTASIA:20190313T124216Z:6ed526e2-6522-48f6-b3c0-dc02d7da09e2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -189,10 +189,10 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:19:54 GMT" + "Wed, 13 Mar 2019 12:42:16 GMT" ], "Content-Length": [ - "508" + "506" ], "Content-Type": [ "application/json; charset=utf-8" @@ -201,7 +201,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/051b0b22-10c8-4c25-966d-04b79e5bbe5e\",\r\n \"name\": \"051b0b22-10c8-4c25-966d-04b79e5bbe5e\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-02-27T17:19:13.2608282Z\",\r\n \"endTime\": \"2019-02-27T17:19:13.5737027Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/b896fd35-375a-4a65-9f69-488720eb0765\",\r\n \"name\": \"b896fd35-375a-4a65-9f69-488720eb0765\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-03-13T12:41:45.1055171Z\",\r\n \"endTime\": \"2019-03-13T12:41:45.43365Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1\"\r\n }\r\n}", "StatusCode": 200 }, { @@ -225,10 +225,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2019-02-27T17%3A19%3A13.5964826Z'\"" + "W/\"datetime'2019-03-13T12%3A41%3A45.4817881Z'\"" ], "x-ms-request-id": [ - "9a56acb6-7553-42ad-9872-c80034aba5f9" + "658b8cc4-48b1-4012-9353-fcaa87637567" ], "Server": [ "Microsoft-IIS/10.0" @@ -237,13 +237,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11998" ], "x-ms-correlation-request-id": [ - "29fd3b1c-e7b8-4764-95c6-02a6ec374b29" + "598bde15-3ccb-472e-bcec-a32134969879" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T171956Z:29fd3b1c-e7b8-4764-95c6-02a6ec374b29" + "SOUTHEASTASIA:20190313T124217Z:598bde15-3ccb-472e-bcec-a32134969879" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -252,10 +252,10 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:19:55 GMT" + "Wed, 13 Mar 2019 12:42:16 GMT" ], "Content-Length": [ - "363" + "391" ], "Content-Type": [ "application/json; charset=utf-8" @@ -264,7 +264,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1\",\r\n \"name\": \"pws-sdk-acc-1\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2019-02-27T17%3A19%3A13.5964826Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"name\": \"pws-sdk-acc-1\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1\",\r\n \"name\": \"pws-sdk-acc-1\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2019-03-13T12%3A41%3A45.4817881Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"name\": \"pws-sdk-acc-1\"\r\n }\r\n}", "StatusCode": 200 }, { @@ -274,7 +274,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dbf67263-ba4e-462c-aafd-ae538729cc06" + "0e785123-05ff-418c-bfc4-f0f00d290c5e" ], "Accept-Language": [ "en-US" @@ -294,10 +294,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2019-02-27T17%3A19%3A13.5964826Z'\"" + "W/\"datetime'2019-03-13T12%3A41%3A45.4817881Z'\"" ], "x-ms-request-id": [ - "7c51eec8-53cb-4229-aec5-10a4c5c10550" + "138e2ffb-72db-4613-af78-de6668e86e8a" ], "Server": [ "Microsoft-IIS/10.0" @@ -306,13 +306,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" + "11994" ], "x-ms-correlation-request-id": [ - "5729c90a-b82d-4bdc-bbe6-5d429588a983" + "e70c12a2-2994-4c11-8330-f71d84682a78" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T172031Z:5729c90a-b82d-4bdc-bbe6-5d429588a983" + "SOUTHEASTASIA:20190313T124252Z:e70c12a2-2994-4c11-8330-f71d84682a78" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -321,10 +321,10 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:20:30 GMT" + "Wed, 13 Mar 2019 12:42:52 GMT" ], "Content-Length": [ - "363" + "391" ], "Content-Type": [ "application/json; charset=utf-8" @@ -333,7 +333,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1\",\r\n \"name\": \"pws-sdk-acc-1\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2019-02-27T17%3A19%3A13.5964826Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"name\": \"pws-sdk-acc-1\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1\",\r\n \"name\": \"pws-sdk-acc-1\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2019-03-13T12%3A41%3A45.4817881Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"name\": \"pws-sdk-acc-1\"\r\n }\r\n}", "StatusCode": 200 }, { @@ -343,7 +343,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "441b5e90-28ae-4fc2-8adc-bf38ad0fd72d" + "fc0af790-5da5-4bd0-832f-aa85a2e5c910" ], "Accept-Language": [ "en-US" @@ -363,10 +363,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2019-02-27T17%3A19%3A13.5964826Z'\"" + "W/\"datetime'2019-03-13T12%3A41%3A45.4817881Z'\"" ], "x-ms-request-id": [ - "cf991889-4bcb-4f69-9072-85bc14a75e27" + "944e59e9-be15-49f4-84ca-e3e72b3a04d7" ], "Server": [ "Microsoft-IIS/10.0" @@ -375,13 +375,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" + "11993" ], "x-ms-correlation-request-id": [ - "28ad9923-446f-4209-a321-0618ddfbc935" + "37f9307f-ff10-4af9-a0ee-bba9a06bfb3e" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T172031Z:28ad9923-446f-4209-a321-0618ddfbc935" + "SOUTHEASTASIA:20190313T124252Z:37f9307f-ff10-4af9-a0ee-bba9a06bfb3e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -390,10 +390,10 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:20:31 GMT" + "Wed, 13 Mar 2019 12:42:52 GMT" ], "Content-Length": [ - "363" + "391" ], "Content-Type": [ "application/json; charset=utf-8" @@ -402,7 +402,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1\",\r\n \"name\": \"pws-sdk-acc-1\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2019-02-27T17%3A19%3A13.5964826Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"name\": \"pws-sdk-acc-1\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1\",\r\n \"name\": \"pws-sdk-acc-1\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2019-03-13T12%3A41%3A45.4817881Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"name\": \"pws-sdk-acc-1\"\r\n }\r\n}", "StatusCode": 200 }, { @@ -412,7 +412,7 @@ "RequestBody": "{\r\n \"location\": \"westus2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "e2a3ca6d-2ac2-4b21-bd47-62727f895796" + "e8c10666-9274-4891-9325-005fdd32f43b" ], "Accept-Language": [ "en-US" @@ -438,13 +438,13 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2019-02-27T17%3A19%3A46.5958465Z'\"" + "W/\"datetime'2019-03-13T12%3A42%3A18.5966655Z'\"" ], "x-ms-request-id": [ - "87ca7b36-074b-46f9-880a-9bba24ea2a5b" + "4daf8ce3-ae57-4aea-8272-1d69abc95a8d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/18c52494-601f-4f29-9ef3-66c855b43352?api-version=2017-08-15" + "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/68de8f67-26d7-49bf-a622-6e62a079a79f?api-version=2017-08-15" ], "Server": [ "Microsoft-IIS/10.0" @@ -456,10 +456,10 @@ "1198" ], "x-ms-correlation-request-id": [ - "68aba50e-a7e3-4981-86cb-d56094c4b04a" + "149542c4-930d-4d11-8a77-dc81d2960451" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T171958Z:68aba50e-a7e3-4981-86cb-d56094c4b04a" + "SOUTHEASTASIA:20190313T124219Z:149542c4-930d-4d11-8a77-dc81d2960451" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -468,7 +468,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:19:57 GMT" + "Wed, 13 Mar 2019 12:42:18 GMT" ], "Content-Length": [ "362" @@ -480,12 +480,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-2\",\r\n \"name\": \"pws-sdk-acc-2\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2019-02-27T17%3A19%3A46.5958465Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"name\": \"pws-sdk-acc-2\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-2\",\r\n \"name\": \"pws-sdk-acc-2\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2019-03-13T12%3A42%3A18.5966655Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"name\": \"pws-sdk-acc-2\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/18c52494-601f-4f29-9ef3-66c855b43352?api-version=2017-08-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvMThjNTI0OTQtNjAxZi00ZjI5LTllZjMtNjZjODU1YjQzMzUyP2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/68de8f67-26d7-49bf-a622-6e62a079a79f?api-version=2017-08-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvNjhkZThmNjctMjZkNy00OWJmLWE2MjItNmU2MmEwNzlhNzlmP2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -504,10 +504,10 @@ "no-cache" ], "x-ms-request-id": [ - "e1752c8f-c537-402c-b6da-4826facd8aaa" + "d11f194f-b7a4-457d-8d02-3438680fee98" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11997" ], "Server": [ "Microsoft-IIS/10.0" @@ -516,10 +516,10 @@ "ASP.NET" ], "x-ms-correlation-request-id": [ - "4f9c5af7-621d-4f6e-b59d-7e4229881e4a" + "6c7db33b-8ed2-4d3d-a065-3d5cd947a4de" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T172029Z:4f9c5af7-621d-4f6e-b59d-7e4229881e4a" + "SOUTHEASTASIA:20190313T124249Z:6c7db33b-8ed2-4d3d-a065-3d5cd947a4de" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -528,7 +528,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:20:28 GMT" + "Wed, 13 Mar 2019 12:42:48 GMT" ], "Content-Length": [ "508" @@ -540,7 +540,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/18c52494-601f-4f29-9ef3-66c855b43352\",\r\n \"name\": \"18c52494-601f-4f29-9ef3-66c855b43352\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-02-27T17:19:46.5688274Z\",\r\n \"endTime\": \"2019-02-27T17:19:46.8410528Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-2\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/68de8f67-26d7-49bf-a622-6e62a079a79f\",\r\n \"name\": \"68de8f67-26d7-49bf-a622-6e62a079a79f\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-03-13T12:42:18.5422307Z\",\r\n \"endTime\": \"2019-03-13T12:42:18.8078386Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-2\"\r\n }\r\n}", "StatusCode": 200 }, { @@ -564,10 +564,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2019-02-27T17%3A19%3A46.8680389Z'\"" + "W/\"datetime'2019-03-13T12%3A42%3A18.8558531Z'\"" ], "x-ms-request-id": [ - "f1c3869a-48e3-4dec-85d9-bbed0085994a" + "c54b8a38-0468-4591-bfa6-74861f86fe72" ], "Server": [ "Microsoft-IIS/10.0" @@ -576,13 +576,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "11996" ], "x-ms-correlation-request-id": [ - "ca8ef2a6-505d-4885-86ea-0668ebe34ea1" + "189c631c-bff1-4ca4-a03d-58bf0958cfb1" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T172030Z:ca8ef2a6-505d-4885-86ea-0668ebe34ea1" + "SOUTHEASTASIA:20190313T124251Z:189c631c-bff1-4ca4-a03d-58bf0958cfb1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -591,7 +591,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:20:29 GMT" + "Wed, 13 Mar 2019 12:42:51 GMT" ], "Content-Length": [ "363" @@ -603,7 +603,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-2\",\r\n \"name\": \"pws-sdk-acc-2\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2019-02-27T17%3A19%3A46.8680389Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"name\": \"pws-sdk-acc-2\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-2\",\r\n \"name\": \"pws-sdk-acc-2\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2019-03-13T12%3A42%3A18.8558531Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"name\": \"pws-sdk-acc-2\"\r\n }\r\n}", "StatusCode": 200 }, { @@ -613,7 +613,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ea9a3a2c-4d43-4dc8-963b-5a696573826f" + "1ba982ef-ff77-4db0-8ae3-286a80bc0d35" ], "Accept-Language": [ "en-US" @@ -633,7 +633,7 @@ "no-cache" ], "x-ms-request-id": [ - "68a65057-a192-4828-a345-6fd905c3a2c5" + "9fc9819b-8c8d-4ed8-aa5a-c76b9c523f14" ], "Server": [ "Microsoft-IIS/10.0" @@ -642,13 +642,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" + "11995" ], "x-ms-correlation-request-id": [ - "f5e718e6-c117-44b8-8b4b-23f7f91f22b2" + "4cb9ae4b-8cb7-4163-9d80-860bbc32d6a3" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T172030Z:f5e718e6-c117-44b8-8b4b-23f7f91f22b2" + "SOUTHEASTASIA:20190313T124251Z:4cb9ae4b-8cb7-4163-9d80-860bbc32d6a3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -657,10 +657,10 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:20:30 GMT" + "Wed, 13 Mar 2019 12:42:51 GMT" ], "Content-Length": [ - "739" + "767" ], "Content-Type": [ "application/json; charset=utf-8" @@ -669,7 +669,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1\",\r\n \"name\": \"pws-sdk-acc-1\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2019-02-27T17%3A19%3A13.5964826Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"name\": \"pws-sdk-acc-1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-2\",\r\n \"name\": \"pws-sdk-acc-2\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2019-02-27T17%3A19%3A46.8680389Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"name\": \"pws-sdk-acc-2\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1\",\r\n \"name\": \"pws-sdk-acc-1\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2019-03-13T12%3A41%3A45.4817881Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"name\": \"pws-sdk-acc-1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-2\",\r\n \"name\": \"pws-sdk-acc-2\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2019-03-13T12%3A42%3A18.8558531Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"name\": \"pws-sdk-acc-2\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -679,7 +679,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f4afd5b5-c2a7-48b1-ac4c-59187cb06721" + "4de8aab7-a3bb-441c-9723-51fbb5757b72" ], "Accept-Language": [ "en-US" @@ -699,7 +699,7 @@ "no-cache" ], "x-ms-request-id": [ - "e32499e6-cf6a-42f6-adac-17f2b4f4d2ae" + "dc360fff-6cc6-40fe-a10e-5bd657b2a879" ], "Server": [ "Microsoft-IIS/10.0" @@ -708,13 +708,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11965" + "11990" ], "x-ms-correlation-request-id": [ - "b86a0f0c-a461-4961-b42c-cf8795ea0461" + "39e51ac1-d6a3-422c-87b3-a72ac9655898" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T172136Z:b86a0f0c-a461-4961-b42c-cf8795ea0461" + "SOUTHEASTASIA:20190313T124324Z:39e51ac1-d6a3-422c-87b3-a72ac9655898" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -723,16 +723,76 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:21:36 GMT" + "Wed, 13 Mar 2019 12:43:24 GMT" ], "Content-Length": [ - "12" + "375" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-2\",\r\n \"name\": \"pws-sdk-acc-2\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2019-03-13T12%3A42%3A18.8558531Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"name\": \"pws-sdk-acc-2\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts?api-version=2017-08-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlR3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cz9hcGktdmVyc2lvbj0yMDE3LTA4LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "498812b9-2c2e-4ab2-a171-8a04896d4f5b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/0.9.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-request-id": [ + "6dea783f-21cd-4d57-a5b4-4639fb17117b" + ], + "x-ms-correlation-request-id": [ + "6dea783f-21cd-4d57-a5b4-4639fb17117b" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190313T124357Z:6dea783f-21cd-4d57-a5b4-4639fb17117b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 12:43:57 GMT" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" + ], + "Content-Length": [ + "12" ] }, "ResponseBody": "{\r\n \"value\": []\r\n}", @@ -745,7 +805,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8c317e58-dec7-4a4c-bc24-88ca35a8c82d" + "f1218e4d-1479-4cc0-aff1-f40a2467e268" ], "Accept-Language": [ "en-US" @@ -765,10 +825,10 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/6bb32d99-6505-4c89-aa75-1c8ae6d99ba7?api-version=2017-08-15&operationResultResponseType=Location" + "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/8b46b688-f7f3-44d2-b68b-d6aacd7d9692?api-version=2017-08-15&operationResultResponseType=Location" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/6bb32d99-6505-4c89-aa75-1c8ae6d99ba7?api-version=2017-08-15" + "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/8b46b688-f7f3-44d2-b68b-d6aacd7d9692?api-version=2017-08-15" ], "Server": [ "Microsoft-IIS/10.0" @@ -780,13 +840,13 @@ "14998" ], "x-ms-request-id": [ - "d9a23af1-0b1a-4ce3-ac22-f3d3434a4028" + "08daab9c-ee28-466f-8dfe-f2bafa2e6b18" ], "x-ms-correlation-request-id": [ - "d9a23af1-0b1a-4ce3-ac22-f3d3434a4028" + "08daab9c-ee28-466f-8dfe-f2bafa2e6b18" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T172032Z:d9a23af1-0b1a-4ce3-ac22-f3d3434a4028" + "SOUTHEASTASIA:20190313T124253Z:08daab9c-ee28-466f-8dfe-f2bafa2e6b18" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -795,7 +855,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:20:32 GMT" + "Wed, 13 Mar 2019 12:42:53 GMT" ], "Expires": [ "-1" @@ -808,8 +868,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/6bb32d99-6505-4c89-aa75-1c8ae6d99ba7?api-version=2017-08-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvNmJiMzJkOTktNjUwNS00Yzg5LWFhNzUtMWM4YWU2ZDk5YmE3P2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/8b46b688-f7f3-44d2-b68b-d6aacd7d9692?api-version=2017-08-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvOGI0NmI2ODgtZjdmMy00NGQyLWI2OGItZDZhYWNkN2Q5NjkyP2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -828,7 +888,7 @@ "no-cache" ], "x-ms-request-id": [ - "b7604767-21d8-4ce6-9675-d920e7ac68fd" + "372be424-7886-4d2d-a55c-d22b79760a4a" ], "Server": [ "Microsoft-IIS/10.0" @@ -837,13 +897,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" + "11992" ], "x-ms-correlation-request-id": [ - "94719102-b7e4-4283-a629-8898c9fbc195" + "1b4a45ba-0d77-4af2-8850-0b7686f7bd8a" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T172103Z:94719102-b7e4-4283-a629-8898c9fbc195" + "SOUTHEASTASIA:20190313T124324Z:1b4a45ba-0d77-4af2-8850-0b7686f7bd8a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -852,7 +912,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:21:02 GMT" + "Wed, 13 Mar 2019 12:43:23 GMT" ], "Content-Length": [ "508" @@ -864,12 +924,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/6bb32d99-6505-4c89-aa75-1c8ae6d99ba7\",\r\n \"name\": \"6bb32d99-6505-4c89-aa75-1c8ae6d99ba7\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-02-27T17:20:21.5360431Z\",\r\n \"endTime\": \"2019-02-27T17:20:21.6297785Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/8b46b688-f7f3-44d2-b68b-d6aacd7d9692\",\r\n \"name\": \"8b46b688-f7f3-44d2-b68b-d6aacd7d9692\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-03-13T12:42:53.3654566Z\",\r\n \"endTime\": \"2019-03-13T12:42:53.4435504Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/6bb32d99-6505-4c89-aa75-1c8ae6d99ba7?api-version=2017-08-15&operationResultResponseType=Location", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvNmJiMzJkOTktNjUwNS00Yzg5LWFhNzUtMWM4YWU2ZDk5YmE3P2FwaS12ZXJzaW9uPTIwMTctMDgtMTUmb3BlcmF0aW9uUmVzdWx0UmVzcG9uc2VUeXBlPUxvY2F0aW9u", + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/8b46b688-f7f3-44d2-b68b-d6aacd7d9692?api-version=2017-08-15&operationResultResponseType=Location", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvOGI0NmI2ODgtZjdmMy00NGQyLWI2OGItZDZhYWNkN2Q5NjkyP2FwaS12ZXJzaW9uPTIwMTctMDgtMTUmb3BlcmF0aW9uUmVzdWx0UmVzcG9uc2VUeXBlPUxvY2F0aW9u", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -888,7 +948,7 @@ "no-cache" ], "x-ms-request-id": [ - "c9768055-765b-44bf-9799-0ee1733d4ff8" + "ce1d7094-55c4-4660-9765-cf7211705e87" ], "Server": [ "Microsoft-IIS/10.0" @@ -897,13 +957,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11968" + "11991" ], "x-ms-correlation-request-id": [ - "3c446d5d-8414-4b81-bc23-87fa87eeed41" + "3dcb04d0-f5ad-4efd-9ce2-a121c8ec5f1c" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T172103Z:3c446d5d-8414-4b81-bc23-87fa87eeed41" + "SOUTHEASTASIA:20190313T124324Z:3dcb04d0-f5ad-4efd-9ce2-a121c8ec5f1c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -912,10 +972,10 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:21:03 GMT" + "Wed, 13 Mar 2019 12:43:23 GMT" ], "Content-Length": [ - "362" + "390" ], "Content-Type": [ "application/json; charset=utf-8" @@ -924,7 +984,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1\",\r\n \"name\": \"pws-sdk-acc-1\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2019-02-27T17%3A20%3A21.5905657Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Deleting\",\r\n \"name\": \"pws-sdk-acc-1\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1\",\r\n \"name\": \"pws-sdk-acc-1\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2019-03-13T12%3A42%3A53.4277772Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Deleting\",\r\n \"name\": \"pws-sdk-acc-1\"\r\n }\r\n}", "StatusCode": 200 }, { @@ -934,7 +994,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3fddc826-9ed6-4dc1-8c6c-1ee894204a7e" + "06a0f250-e4b3-4118-95df-5dfbef399657" ], "Accept-Language": [ "en-US" @@ -954,10 +1014,10 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/f629fc1e-7b98-4ae3-9538-f0541c2c5e56?api-version=2017-08-15&operationResultResponseType=Location" + "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/d79928b6-b685-4f48-b9ff-f1e61b533fb6?api-version=2017-08-15&operationResultResponseType=Location" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/f629fc1e-7b98-4ae3-9538-f0541c2c5e56?api-version=2017-08-15" + "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/d79928b6-b685-4f48-b9ff-f1e61b533fb6?api-version=2017-08-15" ], "Server": [ "Microsoft-IIS/10.0" @@ -969,13 +1029,13 @@ "14997" ], "x-ms-request-id": [ - "be43225b-5eaa-4cd1-bcbf-e4ba2683b6e6" + "6eaae6a7-6c9c-401a-a553-dcb74cf1410f" ], "x-ms-correlation-request-id": [ - "be43225b-5eaa-4cd1-bcbf-e4ba2683b6e6" + "6eaae6a7-6c9c-401a-a553-dcb74cf1410f" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T172104Z:be43225b-5eaa-4cd1-bcbf-e4ba2683b6e6" + "SOUTHEASTASIA:20190313T124326Z:6eaae6a7-6c9c-401a-a553-dcb74cf1410f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -984,7 +1044,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:21:04 GMT" + "Wed, 13 Mar 2019 12:43:25 GMT" ], "Expires": [ "-1" @@ -997,8 +1057,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/f629fc1e-7b98-4ae3-9538-f0541c2c5e56?api-version=2017-08-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvZjYyOWZjMWUtN2I5OC00YWUzLTk1MzgtZjA1NDFjMmM1ZTU2P2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/d79928b6-b685-4f48-b9ff-f1e61b533fb6?api-version=2017-08-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvZDc5OTI4YjYtYjY4NS00ZjQ4LWI5ZmYtZjFlNjFiNTMzZmI2P2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1017,10 +1077,10 @@ "no-cache" ], "x-ms-request-id": [ - "ed784b33-062f-4b97-a150-33999bcd77dc" + "941e686a-7d47-4b79-bd73-3f4cea7b3615" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11967" + "11989" ], "Server": [ "Microsoft-IIS/10.0" @@ -1029,10 +1089,10 @@ "ASP.NET" ], "x-ms-correlation-request-id": [ - "9fff5d08-f071-463b-9580-a8a5733578f8" + "b1488b3b-6df1-41b4-a4f6-e64eebf75025" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T172135Z:9fff5d08-f071-463b-9580-a8a5733578f8" + "SOUTHEASTASIA:20190313T124356Z:b1488b3b-6df1-41b4-a4f6-e64eebf75025" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1041,7 +1101,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:21:35 GMT" + "Wed, 13 Mar 2019 12:43:56 GMT" ], "Content-Length": [ "508" @@ -1053,12 +1113,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/f629fc1e-7b98-4ae3-9538-f0541c2c5e56\",\r\n \"name\": \"f629fc1e-7b98-4ae3-9538-f0541c2c5e56\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-02-27T17:20:53.4123306Z\",\r\n \"endTime\": \"2019-02-27T17:20:53.4905582Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-2\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/d79928b6-b685-4f48-b9ff-f1e61b533fb6\",\r\n \"name\": \"d79928b6-b685-4f48-b9ff-f1e61b533fb6\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-03-13T12:43:25.7262191Z\",\r\n \"endTime\": \"2019-03-13T12:43:25.8199362Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-2\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/f629fc1e-7b98-4ae3-9538-f0541c2c5e56?api-version=2017-08-15&operationResultResponseType=Location", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvZjYyOWZjMWUtN2I5OC00YWUzLTk1MzgtZjA1NDFjMmM1ZTU2P2FwaS12ZXJzaW9uPTIwMTctMDgtMTUmb3BlcmF0aW9uUmVzdWx0UmVzcG9uc2VUeXBlPUxvY2F0aW9u", + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/d79928b6-b685-4f48-b9ff-f1e61b533fb6?api-version=2017-08-15&operationResultResponseType=Location", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvZDc5OTI4YjYtYjY4NS00ZjQ4LWI5ZmYtZjFlNjFiNTMzZmI2P2FwaS12ZXJzaW9uPTIwMTctMDgtMTUmb3BlcmF0aW9uUmVzdWx0UmVzcG9uc2VUeXBlPUxvY2F0aW9u", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1077,7 +1137,7 @@ "no-cache" ], "x-ms-request-id": [ - "f31e3b4b-92f6-4af1-b8ed-d906a44d6d36" + "e6991ed8-5dac-48c0-84a9-88129812f208" ], "Server": [ "Microsoft-IIS/10.0" @@ -1086,13 +1146,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11966" + "11988" ], "x-ms-correlation-request-id": [ - "d3c16228-9d63-4c20-bc5b-aefc5a0dd720" + "c8706a17-1974-4e6f-82a2-3ffdbb0ba033" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T172136Z:d3c16228-9d63-4c20-bc5b-aefc5a0dd720" + "SOUTHEASTASIA:20190313T124357Z:c8706a17-1974-4e6f-82a2-3ffdbb0ba033" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1101,7 +1161,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:21:36 GMT" + "Wed, 13 Mar 2019 12:43:57 GMT" ], "Content-Length": [ "362" @@ -1113,7 +1173,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-2\",\r\n \"name\": \"pws-sdk-acc-2\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2019-02-27T17%3A20%3A53.4551888Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Deleting\",\r\n \"name\": \"pws-sdk-acc-2\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-2\",\r\n \"name\": \"pws-sdk-acc-2\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2019-03-13T12%3A43%3A25.7971143Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Deleting\",\r\n \"name\": \"pws-sdk-acc-2\"\r\n }\r\n}", "StatusCode": 200 }, { @@ -1123,7 +1183,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6057b98b-b3a0-4730-8c1d-0cd1604712ce" + "b7a3f49c-76ed-4a3b-b6eb-9aaa0a1e3011" ], "Accept-Language": [ "en-US" @@ -1149,16 +1209,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14997" + "14999" ], "x-ms-request-id": [ - "53d46c18-ce11-4a40-84e3-0db1df559a2c" + "e0b91faa-43b0-44ef-a89f-e9d675521a8b" ], "x-ms-correlation-request-id": [ - "53d46c18-ce11-4a40-84e3-0db1df559a2c" + "e0b91faa-43b0-44ef-a89f-e9d675521a8b" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T172133Z:53d46c18-ce11-4a40-84e3-0db1df559a2c" + "WESTEUROPE:20190313T124402Z:e0b91faa-43b0-44ef-a89f-e9d675521a8b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1167,7 +1227,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:21:33 GMT" + "Wed, 13 Mar 2019 12:44:01 GMT" ], "Expires": [ "-1" @@ -1206,16 +1266,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11999" ], "x-ms-request-id": [ - "c1c14132-8102-473e-ba44-c03af059c097" + "0e844fe5-ad0b-4d27-b772-c328307770e7" ], "x-ms-correlation-request-id": [ - "c1c14132-8102-473e-ba44-c03af059c097" + "0e844fe5-ad0b-4d27-b772-c328307770e7" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T172149Z:c1c14132-8102-473e-ba44-c03af059c097" + "WESTEUROPE:20190313T124417Z:0e844fe5-ad0b-4d27-b772-c328307770e7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1224,7 +1284,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:21:48 GMT" + "Wed, 13 Mar 2019 12:44:17 GMT" ], "Expires": [ "-1" @@ -1263,16 +1323,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11998" ], "x-ms-request-id": [ - "a5cfe545-968a-4993-b0e8-7ac4c53e3c78" + "33001510-1cda-468f-91fe-51c082e8f0b0" ], "x-ms-correlation-request-id": [ - "a5cfe545-968a-4993-b0e8-7ac4c53e3c78" + "33001510-1cda-468f-91fe-51c082e8f0b0" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T172205Z:a5cfe545-968a-4993-b0e8-7ac4c53e3c78" + "WESTEUROPE:20190313T124433Z:33001510-1cda-468f-91fe-51c082e8f0b0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1281,7 +1341,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:22:04 GMT" + "Wed, 13 Mar 2019 12:44:33 GMT" ], "Expires": [ "-1" @@ -1314,16 +1374,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11997" ], "x-ms-request-id": [ - "34ab7d1e-8571-44de-956b-a0dd10432430" + "304ff1b0-bb18-4dcb-acae-5b5ce5320afe" ], "x-ms-correlation-request-id": [ - "34ab7d1e-8571-44de-956b-a0dd10432430" + "304ff1b0-bb18-4dcb-acae-5b5ce5320afe" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T172220Z:34ab7d1e-8571-44de-956b-a0dd10432430" + "WESTEUROPE:20190313T124448Z:304ff1b0-bb18-4dcb-acae-5b5ce5320afe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1332,7 +1392,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:22:20 GMT" + "Wed, 13 Mar 2019 12:44:48 GMT" ], "Expires": [ "-1" @@ -1365,16 +1425,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11996" ], "x-ms-request-id": [ - "d1976db8-3235-4967-a5fa-120f2d7cac85" + "e1f24edd-19db-4132-86f9-a9daefc13742" ], "x-ms-correlation-request-id": [ - "d1976db8-3235-4967-a5fa-120f2d7cac85" + "e1f24edd-19db-4132-86f9-a9daefc13742" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T172221Z:d1976db8-3235-4967-a5fa-120f2d7cac85" + "WESTEUROPE:20190313T124449Z:e1f24edd-19db-4132-86f9-a9daefc13742" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1383,7 +1443,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:22:20 GMT" + "Wed, 13 Mar 2019 12:44:49 GMT" ], "Expires": [ "-1" 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 new file mode 100644 index 000000000000..0d3b367ce4f6 --- /dev/null +++ b/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.AccountTests/TestAccountPipelines.json @@ -0,0 +1,1202 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourcegroups/pws-sdk-tests-rg-1?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlZ3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westus2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3bb09461-0e2b-45c6-a083-ffb5a7f4b0a1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.13" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "840b5d88-7e3a-42a6-b737-82bb106d4756" + ], + "x-ms-correlation-request-id": [ + "840b5d88-7e3a-42a6-b737-82bb106d4756" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190313T123809Z:840b5d88-7e3a-42a6-b737-82bb106d4756" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 12:38:09 GMT" + ], + "Content-Length": [ + "190" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1\",\r\n \"name\": \"pws-sdk-tests-rg-1\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1?api-version=2017-08-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlR3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wd3Mtc2RrLWFjYy0xP2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westus2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "257efa0d-c9f3-4897-8d28-202b86cfd639" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/0.9.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2019-03-13T12%3A38%3A14.656795Z'\"" + ], + "x-ms-request-id": [ + "72cdb34f-02ed-406e-9819-36f5c6924d77" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/8b7027e1-595e-467b-8e5f-9a5f7379296d?api-version=2017-08-15" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "6a6beabf-467c-4f55-80ba-35202f11c336" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190313T123815Z:6a6beabf-467c-4f55-80ba-35202f11c336" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 12:38:15 GMT" + ], + "Content-Length": [ + "361" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1\",\r\n \"name\": \"pws-sdk-acc-1\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2019-03-13T12%3A38%3A14.656795Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"name\": \"pws-sdk-acc-1\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/8b7027e1-595e-467b-8e5f-9a5f7379296d?api-version=2017-08-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvOGI3MDI3ZTEtNTk1ZS00NjdiLThlNWYtOWE1ZjczNzkyOTZkP2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/0.9.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "bbfae217-1160-4692-a6b2-aa0c14e70abb" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "6b00f879-4560-4836-b29f-e11d24baead8" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190313T123846Z:6b00f879-4560-4836-b29f-e11d24baead8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 12:38:45 GMT" + ], + "Content-Length": [ + "508" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/8b7027e1-595e-467b-8e5f-9a5f7379296d\",\r\n \"name\": \"8b7027e1-595e-467b-8e5f-9a5f7379296d\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-03-13T12:38:14.5898667Z\",\r\n \"endTime\": \"2019-03-13T12:38:14.9023651Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1?api-version=2017-08-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlR3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wd3Mtc2RrLWFjYy0xP2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/0.9.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2019-03-13T12%3A38%3A14.9570118Z'\"" + ], + "x-ms-request-id": [ + "538d29b5-d497-484c-9255-b81a6c9900d8" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "0a5f1b58-2406-4f5a-af28-37468e72d928" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190313T123846Z:0a5f1b58-2406-4f5a-af28-37468e72d928" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 12:38:45 GMT" + ], + "Content-Length": [ + "363" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1\",\r\n \"name\": \"pws-sdk-acc-1\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2019-03-13T12%3A38%3A14.9570118Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"name\": \"pws-sdk-acc-1\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1?api-version=2017-08-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlR3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wd3Mtc2RrLWFjYy0xP2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a0609503-c4b0-420b-b20f-cedf85451576" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/0.9.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/a043ac5f-31df-45f1-9357-5a0cd97ca77b?api-version=2017-08-15&operationResultResponseType=Location" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/a043ac5f-31df-45f1-9357-5a0cd97ca77b?api-version=2017-08-15" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "8e41c459-01c8-4828-89e4-2e040b48e12f" + ], + "x-ms-correlation-request-id": [ + "8e41c459-01c8-4828-89e4-2e040b48e12f" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190313T123847Z:8e41c459-01c8-4828-89e4-2e040b48e12f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 12:38:47 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/a043ac5f-31df-45f1-9357-5a0cd97ca77b?api-version=2017-08-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvYTA0M2FjNWYtMzFkZi00NWYxLTkzNTctNWEwY2Q5N2NhNzdiP2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/0.9.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "7c1aeb80-3547-4a11-8af4-132e78607015" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-correlation-request-id": [ + "c66f7b5e-6efc-4fb4-a779-b4b4e867bb93" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190313T123918Z:c66f7b5e-6efc-4fb4-a779-b4b4e867bb93" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 12:39:17 GMT" + ], + "Content-Length": [ + "508" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/a043ac5f-31df-45f1-9357-5a0cd97ca77b\",\r\n \"name\": \"a043ac5f-31df-45f1-9357-5a0cd97ca77b\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-03-13T12:38:47.6626975Z\",\r\n \"endTime\": \"2019-03-13T12:38:47.7876831Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/a043ac5f-31df-45f1-9357-5a0cd97ca77b?api-version=2017-08-15&operationResultResponseType=Location", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvYTA0M2FjNWYtMzFkZi00NWYxLTkzNTctNWEwY2Q5N2NhNzdiP2FwaS12ZXJzaW9uPTIwMTctMDgtMTUmb3BlcmF0aW9uUmVzdWx0UmVzcG9uc2VUeXBlPUxvY2F0aW9u", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/0.9.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "953f3cb3-7746-4d28-82d0-8bbea2ce873a" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "50ed9b5f-0a1f-4580-baa9-c2316e806149" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190313T123919Z:50ed9b5f-0a1f-4580-baa9-c2316e806149" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 12:39:18 GMT" + ], + "Content-Length": [ + "362" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1\",\r\n \"name\": \"pws-sdk-acc-1\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2019-03-13T12%3A38%3A47.7616596Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Deleting\",\r\n \"name\": \"pws-sdk-acc-1\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-2?api-version=2017-08-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlR3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wd3Mtc2RrLWFjYy0yP2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westus2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4d873943-5e5b-43c9-9371-633d00a5f4a4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/0.9.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2019-03-13T12%3A39%3A22.3375922Z'\"" + ], + "x-ms-request-id": [ + "acfd8f3e-d94a-427b-9969-d4f0753dc129" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/2fe1f948-befd-4ee9-b4fb-cbd3553c254e?api-version=2017-08-15" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "af5e4279-a715-4f71-ae50-f29938b386db" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190313T123923Z:af5e4279-a715-4f71-ae50-f29938b386db" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 12:39:22 GMT" + ], + "Content-Length": [ + "362" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-2\",\r\n \"name\": \"pws-sdk-acc-2\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2019-03-13T12%3A39%3A22.3375922Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"name\": \"pws-sdk-acc-2\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/2fe1f948-befd-4ee9-b4fb-cbd3553c254e?api-version=2017-08-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvMmZlMWY5NDgtYmVmZC00ZWU5LWI0ZmItY2JkMzU1M2MyNTRlP2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/0.9.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "0d96b555-0052-4af5-b86b-7e5225e0c9d6" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "ce890cc2-d18a-4f98-82d1-fca98aad4d58" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190313T123953Z:ce890cc2-d18a-4f98-82d1-fca98aad4d58" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 12:39:53 GMT" + ], + "Content-Length": [ + "508" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/2fe1f948-befd-4ee9-b4fb-cbd3553c254e\",\r\n \"name\": \"2fe1f948-befd-4ee9-b4fb-cbd3553c254e\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-03-13T12:39:22.2414742Z\",\r\n \"endTime\": \"2019-03-13T12:39:22.5696409Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-2\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-2?api-version=2017-08-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlR3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wd3Mtc2RrLWFjYy0yP2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/0.9.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2019-03-13T12%3A39%3A22.616792Z'\"" + ], + "x-ms-request-id": [ + "419a56e9-d7e9-45ab-baf7-b0def1084e04" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "21dfc53f-1a2e-4430-8427-ab9ac75d15e3" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190313T123953Z:21dfc53f-1a2e-4430-8427-ab9ac75d15e3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 12:39:53 GMT" + ], + "Content-Length": [ + "362" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-2\",\r\n \"name\": \"pws-sdk-acc-2\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2019-03-13T12%3A39%3A22.616792Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"name\": \"pws-sdk-acc-2\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-2?api-version=2017-08-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlR3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wd3Mtc2RrLWFjYy0yP2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "572735e1-ffe8-43c6-a9f6-61fcc2cea17d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/0.9.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2019-03-13T12%3A39%3A22.616792Z'\"" + ], + "x-ms-request-id": [ + "3bc82dd2-005a-4091-8dad-3a97f6aeffe4" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "f17381f1-73c7-4eaa-b21e-25851bc7e417" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190313T123954Z:f17381f1-73c7-4eaa-b21e-25851bc7e417" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 12:39:53 GMT" + ], + "Content-Length": [ + "362" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-2\",\r\n \"name\": \"pws-sdk-acc-2\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2019-03-13T12%3A39%3A22.616792Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"name\": \"pws-sdk-acc-2\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-2?api-version=2017-08-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlR3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wd3Mtc2RrLWFjYy0yP2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c32046fa-bf02-4d62-9693-7a463b85b3f0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/0.9.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/92e3f1e6-8548-42b3-99ea-9c99bd7d7837?api-version=2017-08-15&operationResultResponseType=Location" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/92e3f1e6-8548-42b3-99ea-9c99bd7d7837?api-version=2017-08-15" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14998" + ], + "x-ms-request-id": [ + "05617bf4-6cc6-4970-97cf-2f8410898c2c" + ], + "x-ms-correlation-request-id": [ + "05617bf4-6cc6-4970-97cf-2f8410898c2c" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190313T123955Z:05617bf4-6cc6-4970-97cf-2f8410898c2c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 12:39:54 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/92e3f1e6-8548-42b3-99ea-9c99bd7d7837?api-version=2017-08-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvOTJlM2YxZTYtODU0OC00MmIzLTk5ZWEtOWM5OWJkN2Q3ODM3P2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/0.9.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "45ef5ac7-ca40-48ba-bd01-50c0627e258e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-correlation-request-id": [ + "eca2aa97-3c57-44d3-a915-f12406f2d628" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190313T124025Z:eca2aa97-3c57-44d3-a915-f12406f2d628" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 12:40:24 GMT" + ], + "Content-Length": [ + "508" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/92e3f1e6-8548-42b3-99ea-9c99bd7d7837\",\r\n \"name\": \"92e3f1e6-8548-42b3-99ea-9c99bd7d7837\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-03-13T12:39:55.1545817Z\",\r\n \"endTime\": \"2019-03-13T12:39:55.2327022Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-2\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/92e3f1e6-8548-42b3-99ea-9c99bd7d7837?api-version=2017-08-15&operationResultResponseType=Location", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvOTJlM2YxZTYtODU0OC00MmIzLTk5ZWEtOWM5OWJkN2Q3ODM3P2FwaS12ZXJzaW9uPTIwMTctMDgtMTUmb3BlcmF0aW9uUmVzdWx0UmVzcG9uc2VUeXBlPUxvY2F0aW9u", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/0.9.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "8f4bac1f-a154-411b-9c21-ff95cd09a30e" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-correlation-request-id": [ + "7fe0f189-1328-41de-8804-9239f640e85d" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190313T124026Z:7fe0f189-1328-41de-8804-9239f640e85d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 12:40:26 GMT" + ], + "Content-Length": [ + "362" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-2\",\r\n \"name\": \"pws-sdk-acc-2\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2019-03-13T12%3A39%3A55.2192952Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Deleting\",\r\n \"name\": \"pws-sdk-acc-2\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourcegroups/pws-sdk-tests-rg-1?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlZ3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d0b1d921-e72e-4302-a04c-f1eedb0f1a37" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.13" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "6f4a5c8c-399f-48c4-af03-07e14be9b153" + ], + "x-ms-correlation-request-id": [ + "6f4a5c8c-399f-48c4-af03-07e14be9b153" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190313T124032Z:6f4a5c8c-399f-48c4-af03-07e14be9b153" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 12:40:31 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVjFNNk1rUlRSRXM2TWtSVVJWTlVVem95UkZKSE9qSkVNUzFYUlZOVVZWTXlJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNeUluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.13" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "71b34a9f-767b-4574-b3db-bb29b7c72385" + ], + "x-ms-correlation-request-id": [ + "71b34a9f-767b-4574-b3db-bb29b7c72385" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190313T124047Z:71b34a9f-767b-4574-b3db-bb29b7c72385" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 12:40:46 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVjFNNk1rUlRSRXM2TWtSVVJWTlVVem95UkZKSE9qSkVNUzFYUlZOVVZWTXlJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNeUluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.13" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "540a59b0-83e1-4d6a-9339-46c5d763550e" + ], + "x-ms-correlation-request-id": [ + "540a59b0-83e1-4d6a-9339-46c5d763550e" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190313T124103Z:540a59b0-83e1-4d6a-9339-46c5d763550e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 12:41:03 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVjFNNk1rUlRSRXM2TWtSVVJWTlVVem95UkZKSE9qSkVNUzFYUlZOVVZWTXlJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNeUluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.13" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "d92b6af6-3661-414b-b2b6-3c822618b1ea" + ], + "x-ms-correlation-request-id": [ + "d92b6af6-3661-414b-b2b6-3c822618b1ea" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190313T124119Z:d92b6af6-3661-414b-b2b6-3c822618b1ea" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 12:41:18 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVjFNNk1rUlRSRXM2TWtSVVJWTlVVem95UkZKSE9qSkVNUzFYUlZOVVZWTXlJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNeUluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.13" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "875969d3-7532-46f5-b96e-644ba78077f3" + ], + "x-ms-correlation-request-id": [ + "875969d3-7532-46f5-b96e-644ba78077f3" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190313T124120Z:875969d3-7532-46f5-b96e-644ba78077f3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 12:41:19 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "f557b96d-2308-4a18-aae1-b8f7e7e70cc7" + } +} \ No newline at end of file diff --git a/src/Anf/Anf.Test/SessionRecords/Microsoft.Azure.Commands.Anf.Test.ScenarioTests.ScenarioTest.PoolTests/TestPoolCrud.json b/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.PoolTests/TestPoolCrud.json similarity index 78% rename from src/Anf/Anf.Test/SessionRecords/Microsoft.Azure.Commands.Anf.Test.ScenarioTests.ScenarioTest.PoolTests/TestPoolCrud.json rename to src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.PoolTests/TestPoolCrud.json index 720349fe72fc..3bfb2a6911ee 100644 --- a/src/Anf/Anf.Test/SessionRecords/Microsoft.Azure.Commands.Anf.Test.ScenarioTests.ScenarioTest.PoolTests/TestPoolCrud.json +++ b/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.PoolTests/TestPoolCrud.json @@ -7,7 +7,7 @@ "RequestBody": "{\r\n \"location\": \"westus2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "872bcac9-09df-4b51-9ed3-7ca3b25af280" + "236e65f1-b4db-4507-8315-f8886cff1cc5" ], "Accept-Language": [ "en-US" @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "5a9c674f-d4bd-49a6-a703-879022e7a3aa" + "65f5618f-1989-419f-8615-2952284d83d5" ], "x-ms-correlation-request-id": [ - "5a9c674f-d4bd-49a6-a703-879022e7a3aa" + "65f5618f-1989-419f-8615-2952284d83d5" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T171313Z:5a9c674f-d4bd-49a6-a703-879022e7a3aa" + "SOUTHEASTASIA:20190313T125347Z:65f5618f-1989-419f-8615-2952284d83d5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:13:13 GMT" + "Wed, 13 Mar 2019 12:53:46 GMT" ], "Content-Length": [ "190" @@ -73,7 +73,7 @@ "RequestBody": "{\r\n \"location\": \"westus2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "40518db3-0f7f-4ffe-b425-ec645b4e3748" + "4b1ed287-c8d8-4f45-a58f-f3f4bdd96347" ], "Accept-Language": [ "en-US" @@ -99,13 +99,13 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2019-02-27T17%3A13%3A15.0642328Z'\"" + "W/\"datetime'2019-03-13T12%3A53%3A52.1055327Z'\"" ], "x-ms-request-id": [ - "7a5e8a3d-3cc3-44d5-8f99-be6b3a6b1911" + "f4083c42-f29d-4d82-8fac-f5ae4375db65" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/427494c3-034a-422f-988f-47ab9764155f?api-version=2017-08-15" + "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/d3146fbd-e41d-4bb9-bd68-393722b79b26?api-version=2017-08-15" ], "Server": [ "Microsoft-IIS/10.0" @@ -114,13 +114,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1199" ], "x-ms-correlation-request-id": [ - "0a9b0b1a-77aa-48d9-99a9-fe147178c3a7" + "8fc6f2fc-0c65-47b0-b689-0232d9e9d85a" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T171316Z:0a9b0b1a-77aa-48d9-99a9-fe147178c3a7" + "SOUTHEASTASIA:20190313T125353Z:8fc6f2fc-0c65-47b0-b689-0232d9e9d85a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -129,7 +129,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:13:16 GMT" + "Wed, 13 Mar 2019 12:53:52 GMT" ], "Content-Length": [ "362" @@ -141,12 +141,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1\",\r\n \"name\": \"pws-sdk-acc-1\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2019-02-27T17%3A13%3A15.0642328Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"name\": \"pws-sdk-acc-1\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1\",\r\n \"name\": \"pws-sdk-acc-1\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2019-03-13T12%3A53%3A52.1055327Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"name\": \"pws-sdk-acc-1\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/427494c3-034a-422f-988f-47ab9764155f?api-version=2017-08-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvNDI3NDk0YzMtMDM0YS00MjJmLTk4OGYtNDdhYjk3NjQxNTVmP2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/d3146fbd-e41d-4bb9-bd68-393722b79b26?api-version=2017-08-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvZDMxNDZmYmQtZTQxZC00YmI5LWJkNjgtMzkzNzIyYjc5YjI2P2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -165,7 +165,7 @@ "no-cache" ], "x-ms-request-id": [ - "e8ba0eef-8f09-4f04-912d-e06f49f8b22c" + "4c2d76ed-8215-47e8-bfff-8bc18da00b4b" ], "Server": [ "Microsoft-IIS/10.0" @@ -174,13 +174,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11999" ], "x-ms-correlation-request-id": [ - "720599b0-e481-4464-9166-4b2d7010732b" + "2768d554-3afa-40f6-80fa-7c33220f2f94" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T171346Z:720599b0-e481-4464-9166-4b2d7010732b" + "SOUTHEASTASIA:20190313T125423Z:2768d554-3afa-40f6-80fa-7c33220f2f94" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -189,7 +189,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:13:46 GMT" + "Wed, 13 Mar 2019 12:54:22 GMT" ], "Content-Length": [ "508" @@ -201,7 +201,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/427494c3-034a-422f-988f-47ab9764155f\",\r\n \"name\": \"427494c3-034a-422f-988f-47ab9764155f\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-02-27T17:13:14.9253568Z\",\r\n \"endTime\": \"2019-02-27T17:13:15.3298965Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/d3146fbd-e41d-4bb9-bd68-393722b79b26\",\r\n \"name\": \"d3146fbd-e41d-4bb9-bd68-393722b79b26\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-03-13T12:53:52.0497025Z\",\r\n \"endTime\": \"2019-03-13T12:53:52.3310079Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1\"\r\n }\r\n}", "StatusCode": 200 }, { @@ -225,10 +225,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2019-02-27T17%3A13%3A15.3704505Z'\"" + "W/\"datetime'2019-03-13T12%3A53%3A52.3777283Z'\"" ], "x-ms-request-id": [ - "050ec074-37b2-4d4a-86b2-1f1a3b7b2e2b" + "a02b4010-df58-4159-913d-2a19951bc828" ], "Server": [ "Microsoft-IIS/10.0" @@ -237,13 +237,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11998" ], "x-ms-correlation-request-id": [ - "3b8765cf-3097-4aca-91dc-4bb227a2f4b9" + "f82e4dd5-c811-4269-a755-d2a384ad1037" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T171347Z:3b8765cf-3097-4aca-91dc-4bb227a2f4b9" + "SOUTHEASTASIA:20190313T125423Z:f82e4dd5-c811-4269-a755-d2a384ad1037" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -252,7 +252,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:13:46 GMT" + "Wed, 13 Mar 2019 12:54:23 GMT" ], "Content-Length": [ "363" @@ -264,17 +264,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1\",\r\n \"name\": \"pws-sdk-acc-1\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2019-02-27T17%3A13%3A15.3704505Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"name\": \"pws-sdk-acc-1\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1\",\r\n \"name\": \"pws-sdk-acc-1\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2019-03-13T12%3A53%3A52.3777283Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"name\": \"pws-sdk-acc-1\"\r\n }\r\n}", "StatusCode": 200 }, { "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1?api-version=2017-08-15", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlR3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wd3Mtc2RrLWFjYy0xL2NhcGFjaXR5UG9vbHMvcHdzLXNkay1wb29sLTE/YXBpLXZlcnNpb249MjAxNy0wOC0xNQ==", "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\": \"westus2\",\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": [ - "00c6a863-4e3d-4ebd-84d9-000c9cbfdd07" + "dd8f87af-6f05-4e22-a9c8-c6d5f3ea0e84" ], "Accept-Language": [ "en-US" @@ -289,7 +289,7 @@ "application/json; charset=utf-8" ], "Content-Length": [ - "113" + "157" ] }, "ResponseHeaders": { @@ -300,13 +300,13 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2019-02-27T17%3A13%3A48.5069488Z'\"" + "W/\"datetime'2019-03-13T12%3A54%3A25.5536443Z'\"" ], "x-ms-request-id": [ - "223504ad-f800-46bb-8e39-72f9cadf8556" + "e6728bb3-5ddd-4bd7-9b0f-27d5be979dec" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/0b9ca8fe-d082-4357-931b-2608efea31c0?api-version=2017-08-15" + "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/98fd9a24-541a-461d-b7d2-14c5cf9e042e?api-version=2017-08-15" ], "Server": [ "Microsoft-IIS/10.0" @@ -315,13 +315,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1198" ], "x-ms-correlation-request-id": [ - "3ed72a72-a67d-4a19-a5f4-0c22f4932e4b" + "3dd50eb5-7a15-48fd-aba2-dcf3d4194c0c" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T171349Z:3ed72a72-a67d-4a19-a5f4-0c22f4932e4b" + "SOUTHEASTASIA:20190313T125426Z:3dd50eb5-7a15-48fd-aba2-dcf3d4194c0c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -330,10 +330,10 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:13:49 GMT" + "Wed, 13 Mar 2019 12:54:25 GMT" ], "Content-Length": [ - "443" + "471" ], "Content-Type": [ "application/json; charset=utf-8" @@ -342,7 +342,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1\",\r\n \"name\": \"pws-sdk-acc-1/pws-sdk-pool-1\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2019-02-27T17%3A13%3A48.5069488Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"size\": 4398046511104,\r\n \"serviceLevel\": \"Premium\",\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1\",\r\n \"name\": \"pws-sdk-acc-1/pws-sdk-pool-1\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2019-03-13T12%3A54%3A25.5536443Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"size\": 4398046511104,\r\n \"serviceLevel\": \"Premium\",\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { @@ -352,7 +352,7 @@ "RequestBody": "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"size\": 4398046511104,\r\n \"serviceLevel\": \"Standard\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "6bbb799e-8b56-4d71-b963-9a74924be2e0" + "6b622cbe-4b3c-438d-b9d5-b7b67d4ca01a" ], "Accept-Language": [ "en-US" @@ -378,10 +378,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2019-02-27T17%3A14%3A56.7963735Z'\"" + "W/\"datetime'2019-03-13T12%3A55%3A33.6187135Z'\"" ], "x-ms-request-id": [ - "dc825bff-981c-4b88-bc46-fb5fa4084435" + "34b74639-856c-4d14-9bf6-a37e7813441a" ], "Server": [ "Microsoft-IIS/10.0" @@ -390,13 +390,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1196" ], "x-ms-correlation-request-id": [ - "a983a502-f0e4-4375-948a-d4c18e945412" + "cb006b2d-2ab8-4329-be96-2621b7ea3b51" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T171457Z:a983a502-f0e4-4375-948a-d4c18e945412" + "SOUTHEASTASIA:20190313T125534Z:cb006b2d-2ab8-4329-be96-2621b7ea3b51" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -405,7 +405,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:14:57 GMT" + "Wed, 13 Mar 2019 12:55:33 GMT" ], "Content-Length": [ "531" @@ -417,12 +417,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1\",\r\n \"name\": \"pws-sdk-acc-1/pws-sdk-pool-1\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2019-02-27T17%3A14%3A56.7963735Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"poolId\": \"23d05bab-0147-6bfb-59c2-4470ff41e213\",\r\n \"name\": \"pws-sdk-acc-1/pws-sdk-pool-1\",\r\n \"serviceLevel\": \"Standard\",\r\n \"size\": 4398046511104,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1\",\r\n \"name\": \"pws-sdk-acc-1/pws-sdk-pool-1\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2019-03-13T12%3A55%3A33.6187135Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"poolId\": \"a5a2d6df-81cc-c4fb-abf3-8a08ce510a9f\",\r\n \"name\": \"pws-sdk-acc-1/pws-sdk-pool-1\",\r\n \"serviceLevel\": \"Standard\",\r\n \"size\": 4398046511104,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/0b9ca8fe-d082-4357-931b-2608efea31c0?api-version=2017-08-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvMGI5Y2E4ZmUtZDA4Mi00MzU3LTkzMWItMjYwOGVmZWEzMWMwP2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/98fd9a24-541a-461d-b7d2-14c5cf9e042e?api-version=2017-08-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvOThmZDlhMjQtNTQxYS00NjFkLWI3ZDItMTRjNWNmOWUwNDJlP2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -441,10 +441,10 @@ "no-cache" ], "x-ms-request-id": [ - "5f63e059-5bfe-488d-8dd8-7c44cfcd0b34" + "6ca8c484-cb49-43b5-aee4-80b8ec68289a" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11997" ], "Server": [ "Microsoft-IIS/10.0" @@ -453,10 +453,10 @@ "ASP.NET" ], "x-ms-correlation-request-id": [ - "11a56b4e-2131-48a6-8cc4-218ae9f2d3ad" + "bdc40401-7ec3-4da6-8cdf-41c6b7d2b306" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T171420Z:11a56b4e-2131-48a6-8cc4-218ae9f2d3ad" + "SOUTHEASTASIA:20190313T125456Z:bdc40401-7ec3-4da6-8cdf-41c6b7d2b306" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -465,7 +465,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:14:20 GMT" + "Wed, 13 Mar 2019 12:54:56 GMT" ], "Content-Length": [ "537" @@ -477,7 +477,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/0b9ca8fe-d082-4357-931b-2608efea31c0\",\r\n \"name\": \"0b9ca8fe-d082-4357-931b-2608efea31c0\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-02-27T17:13:48.4658931Z\",\r\n \"endTime\": \"2019-02-27T17:13:48.8216064Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/98fd9a24-541a-461d-b7d2-14c5cf9e042e\",\r\n \"name\": \"98fd9a24-541a-461d-b7d2-14c5cf9e042e\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-03-13T12:54:25.4905745Z\",\r\n \"endTime\": \"2019-03-13T12:54:25.8343199Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1\"\r\n }\r\n}", "StatusCode": 200 }, { @@ -501,10 +501,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2019-02-27T17%3A13%3A48.8712074Z'\"" + "W/\"datetime'2019-03-13T12%3A54%3A25.886885Z'\"" ], "x-ms-request-id": [ - "4166eeaa-0929-47c4-89cc-5017173c6043" + "aefbab6f-6136-4f76-b368-482d3f0ffb63" ], "Server": [ "Microsoft-IIS/10.0" @@ -513,13 +513,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11996" ], "x-ms-correlation-request-id": [ - "7e52d821-b909-48b1-a1b7-1764fc3bc181" + "59fda461-414e-4e14-bf7d-8b959a14f020" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T171421Z:7e52d821-b909-48b1-a1b7-1764fc3bc181" + "SOUTHEASTASIA:20190313T125457Z:59fda461-414e-4e14-bf7d-8b959a14f020" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -528,10 +528,10 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:14:21 GMT" + "Wed, 13 Mar 2019 12:54:57 GMT" ], "Content-Length": [ - "530" + "557" ], "Content-Type": [ "application/json; charset=utf-8" @@ -540,7 +540,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1\",\r\n \"name\": \"pws-sdk-acc-1/pws-sdk-pool-1\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2019-02-27T17%3A13%3A48.8712074Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"poolId\": \"23d05bab-0147-6bfb-59c2-4470ff41e213\",\r\n \"name\": \"pws-sdk-acc-1/pws-sdk-pool-1\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1\",\r\n \"name\": \"pws-sdk-acc-1/pws-sdk-pool-1\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2019-03-13T12%3A54%3A25.886885Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"poolId\": \"a5a2d6df-81cc-c4fb-abf3-8a08ce510a9f\",\r\n \"name\": \"pws-sdk-acc-1/pws-sdk-pool-1\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { @@ -550,7 +550,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "89e6718a-8d98-46c9-af8f-d59b8651ed7d" + "2bb015be-17e8-48b5-acfb-66f5a97793b9" ], "Accept-Language": [ "en-US" @@ -570,10 +570,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2019-02-27T17%3A13%3A48.8712074Z'\"" + "W/\"datetime'2019-03-13T12%3A54%3A25.886885Z'\"" ], "x-ms-request-id": [ - "cf2b95a1-e9bb-41c5-82fa-189a894c411f" + "5f811584-9f17-4896-9d05-97cff5ce29fc" ], "Server": [ "Microsoft-IIS/10.0" @@ -582,13 +582,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11992" ], "x-ms-correlation-request-id": [ - "1a08bde8-11eb-411a-8790-afaeff98a794" + "508ef11e-de51-4675-b9e4-31dad6c4dfa0" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T171456Z:1a08bde8-11eb-411a-8790-afaeff98a794" + "SOUTHEASTASIA:20190313T125532Z:508ef11e-de51-4675-b9e4-31dad6c4dfa0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -597,10 +597,10 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:14:56 GMT" + "Wed, 13 Mar 2019 12:55:31 GMT" ], "Content-Length": [ - "530" + "557" ], "Content-Type": [ "application/json; charset=utf-8" @@ -609,7 +609,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1\",\r\n \"name\": \"pws-sdk-acc-1/pws-sdk-pool-1\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2019-02-27T17%3A13%3A48.8712074Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"poolId\": \"23d05bab-0147-6bfb-59c2-4470ff41e213\",\r\n \"name\": \"pws-sdk-acc-1/pws-sdk-pool-1\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1\",\r\n \"name\": \"pws-sdk-acc-1/pws-sdk-pool-1\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2019-03-13T12%3A54%3A25.886885Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"poolId\": \"a5a2d6df-81cc-c4fb-abf3-8a08ce510a9f\",\r\n \"name\": \"pws-sdk-acc-1/pws-sdk-pool-1\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { @@ -619,7 +619,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d3919832-fe84-4407-b17f-151b965e71f1" + "ce6621a9-400c-472b-8c26-30aa4ada7e20" ], "Accept-Language": [ "en-US" @@ -639,10 +639,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2019-02-27T17%3A13%3A48.8712074Z'\"" + "W/\"datetime'2019-03-13T12%3A54%3A25.886885Z'\"" ], "x-ms-request-id": [ - "d3007cc6-6491-4e09-8753-6a5bc705258d" + "9326eca6-dfc1-48c7-b4a4-a7d229dd1844" ], "Server": [ "Microsoft-IIS/10.0" @@ -651,13 +651,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11991" ], "x-ms-correlation-request-id": [ - "90a1bfb0-69df-4e49-a5f6-c50aea6c8247" + "074afcda-34ac-446e-955d-f572de3a6612" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T171456Z:90a1bfb0-69df-4e49-a5f6-c50aea6c8247" + "SOUTHEASTASIA:20190313T125532Z:074afcda-34ac-446e-955d-f572de3a6612" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -666,10 +666,10 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:14:56 GMT" + "Wed, 13 Mar 2019 12:55:32 GMT" ], "Content-Length": [ - "530" + "557" ], "Content-Type": [ "application/json; charset=utf-8" @@ -678,7 +678,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1\",\r\n \"name\": \"pws-sdk-acc-1/pws-sdk-pool-1\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2019-02-27T17%3A13%3A48.8712074Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"poolId\": \"23d05bab-0147-6bfb-59c2-4470ff41e213\",\r\n \"name\": \"pws-sdk-acc-1/pws-sdk-pool-1\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1\",\r\n \"name\": \"pws-sdk-acc-1/pws-sdk-pool-1\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2019-03-13T12%3A54%3A25.886885Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"poolId\": \"a5a2d6df-81cc-c4fb-abf3-8a08ce510a9f\",\r\n \"name\": \"pws-sdk-acc-1/pws-sdk-pool-1\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { @@ -688,7 +688,7 @@ "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": [ - "1302c51f-09ec-4f40-a5e1-ce56687f5b7b" + "74894082-d31e-4312-8263-8c75f206f436" ], "Accept-Language": [ "en-US" @@ -714,13 +714,13 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2019-02-27T17%3A14%3A22.7432284Z'\"" + "W/\"datetime'2019-03-13T12%3A54%3A59.3870351Z'\"" ], "x-ms-request-id": [ - "d5a9b5e8-129f-4899-b6df-944fe5769fb1" + "82682807-a844-4d77-b617-ed3b2670cdb0" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/d7f3fa78-cf60-4bc7-a4bf-c49d4a4b680a?api-version=2017-08-15" + "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/e3a13baa-48e5-43d4-90b0-24a333247775?api-version=2017-08-15" ], "Server": [ "Microsoft-IIS/10.0" @@ -729,13 +729,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1197" ], "x-ms-correlation-request-id": [ - "f98b4ac8-3c47-4389-b8b2-a0493c6bf917" + "1bda2056-80a1-4e4b-a115-095328bedd04" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T171424Z:f98b4ac8-3c47-4389-b8b2-a0493c6bf917" + "SOUTHEASTASIA:20190313T125500Z:1bda2056-80a1-4e4b-a115-095328bedd04" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -744,7 +744,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:14:23 GMT" + "Wed, 13 Mar 2019 12:55:00 GMT" ], "Content-Length": [ "443" @@ -756,12 +756,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-2\",\r\n \"name\": \"pws-sdk-acc-1/pws-sdk-pool-2\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2019-02-27T17%3A14%3A22.7432284Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"size\": 4398046511104,\r\n \"serviceLevel\": \"Premium\",\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-2\",\r\n \"name\": \"pws-sdk-acc-1/pws-sdk-pool-2\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2019-03-13T12%3A54%3A59.3870351Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"size\": 4398046511104,\r\n \"serviceLevel\": \"Premium\",\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/d7f3fa78-cf60-4bc7-a4bf-c49d4a4b680a?api-version=2017-08-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvZDdmM2ZhNzgtY2Y2MC00YmM3LWE0YmYtYzQ5ZDRhNGI2ODBhP2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/e3a13baa-48e5-43d4-90b0-24a333247775?api-version=2017-08-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvZTNhMTNiYWEtNDhlNS00M2Q0LTkwYjAtMjRhMzMzMjQ3Nzc1P2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -780,7 +780,7 @@ "no-cache" ], "x-ms-request-id": [ - "0b1108f2-8fd3-4cf7-8ed2-82805fbdf550" + "dce55d27-c89e-47ae-b958-033b406f6b51" ], "Server": [ "Microsoft-IIS/10.0" @@ -789,13 +789,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11995" ], "x-ms-correlation-request-id": [ - "63b35be9-511f-4652-bca2-f2c82f37b713" + "7b68b007-db3e-47c4-ad75-4fea606cca3b" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T171454Z:63b35be9-511f-4652-bca2-f2c82f37b713" + "SOUTHEASTASIA:20190313T125530Z:7b68b007-db3e-47c4-ad75-4fea606cca3b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -804,7 +804,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:14:54 GMT" + "Wed, 13 Mar 2019 12:55:30 GMT" ], "Content-Length": [ "537" @@ -816,7 +816,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/d7f3fa78-cf60-4bc7-a4bf-c49d4a4b680a\",\r\n \"name\": \"d7f3fa78-cf60-4bc7-a4bf-c49d4a4b680a\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-02-27T17:14:22.6772676Z\",\r\n \"endTime\": \"2019-02-27T17:14:23.1143932Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-2\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/e3a13baa-48e5-43d4-90b0-24a333247775\",\r\n \"name\": \"e3a13baa-48e5-43d4-90b0-24a333247775\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-03-13T12:54:59.3237853Z\",\r\n \"endTime\": \"2019-03-13T12:54:59.7456582Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-2\"\r\n }\r\n}", "StatusCode": 200 }, { @@ -840,10 +840,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2019-02-27T17%3A14%3A23.1575225Z'\"" + "W/\"datetime'2019-03-13T12%3A54%3A59.7993333Z'\"" ], "x-ms-request-id": [ - "d3504586-9fbc-42d5-9545-b4a557a842a8" + "827e4481-b70a-4bfe-bb3c-bc0def3978a9" ], "Server": [ "Microsoft-IIS/10.0" @@ -852,13 +852,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11994" ], "x-ms-correlation-request-id": [ - "68932148-8a2b-48fa-a5a7-5b6ff872ee62" + "052bff4c-b9e9-4630-b73d-be9e76dc0457" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T171455Z:68932148-8a2b-48fa-a5a7-5b6ff872ee62" + "SOUTHEASTASIA:20190313T125531Z:052bff4c-b9e9-4630-b73d-be9e76dc0457" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -867,7 +867,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:14:55 GMT" + "Wed, 13 Mar 2019 12:55:30 GMT" ], "Content-Length": [ "530" @@ -879,7 +879,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-2\",\r\n \"name\": \"pws-sdk-acc-1/pws-sdk-pool-2\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2019-02-27T17%3A14%3A23.1575225Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"poolId\": \"c1df9ac8-67e1-f8b9-b81a-78fad2dc88bc\",\r\n \"name\": \"pws-sdk-acc-1/pws-sdk-pool-2\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-2\",\r\n \"name\": \"pws-sdk-acc-1/pws-sdk-pool-2\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2019-03-13T12%3A54%3A59.7993333Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"poolId\": \"993ee340-a759-071b-a895-df27107702dc\",\r\n \"name\": \"pws-sdk-acc-1/pws-sdk-pool-2\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { @@ -889,7 +889,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "15ee6f36-b7b3-4344-9ff3-f4f25af785c7" + "fa7115f4-a63c-4de9-8ab9-bcc13effc233" ], "Accept-Language": [ "en-US" @@ -909,7 +909,7 @@ "no-cache" ], "x-ms-request-id": [ - "ef0d7d45-7280-4c40-9147-90d4a2566dcc" + "135a4bd4-9bce-4576-863e-140b5af6e933" ], "Server": [ "Microsoft-IIS/10.0" @@ -918,13 +918,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11993" ], "x-ms-correlation-request-id": [ - "56e18316-a164-4f8b-8867-fa39510b5375" + "dfe9c5f5-aa0e-4066-af24-7b97fb5f50f4" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T171455Z:56e18316-a164-4f8b-8867-fa39510b5375" + "SOUTHEASTASIA:20190313T125531Z:dfe9c5f5-aa0e-4066-af24-7b97fb5f50f4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -933,10 +933,10 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:14:55 GMT" + "Wed, 13 Mar 2019 12:55:31 GMT" ], "Content-Length": [ - "1073" + "1100" ], "Content-Type": [ "application/json; charset=utf-8" @@ -945,7 +945,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1\",\r\n \"name\": \"pws-sdk-acc-1/pws-sdk-pool-1\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2019-02-27T17%3A13%3A48.8712074Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"poolId\": \"23d05bab-0147-6bfb-59c2-4470ff41e213\",\r\n \"name\": \"pws-sdk-acc-1/pws-sdk-pool-1\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-2\",\r\n \"name\": \"pws-sdk-acc-1/pws-sdk-pool-2\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2019-02-27T17%3A14%3A23.1575225Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"poolId\": \"c1df9ac8-67e1-f8b9-b81a-78fad2dc88bc\",\r\n \"name\": \"pws-sdk-acc-1/pws-sdk-pool-2\",\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/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1\",\r\n \"name\": \"pws-sdk-acc-1/pws-sdk-pool-1\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2019-03-13T12%3A54%3A25.886885Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"poolId\": \"a5a2d6df-81cc-c4fb-abf3-8a08ce510a9f\",\r\n \"name\": \"pws-sdk-acc-1/pws-sdk-pool-1\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-2\",\r\n \"name\": \"pws-sdk-acc-1/pws-sdk-pool-2\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2019-03-13T12%3A54%3A59.7993333Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"poolId\": \"993ee340-a759-071b-a895-df27107702dc\",\r\n \"name\": \"pws-sdk-acc-1/pws-sdk-pool-2\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -955,7 +955,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4e83c8ea-0944-4a16-b5c9-2a9c7160216e" + "6857ac1c-01c9-45fb-8a10-3fcc60b889da" ], "Accept-Language": [ "en-US" @@ -975,7 +975,7 @@ "no-cache" ], "x-ms-request-id": [ - "72f4fee4-b58a-45e2-a698-a576936e0103" + "5de45a4f-8746-4707-869b-2e4740a91032" ], "Server": [ "Microsoft-IIS/10.0" @@ -984,13 +984,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11988" ], "x-ms-correlation-request-id": [ - "8c773181-8de9-4597-9ea8-20ac3894afa9" + "cb569fa0-4667-447b-ad5f-4a86ef6e2887" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T171602Z:8c773181-8de9-4597-9ea8-20ac3894afa9" + "SOUTHEASTASIA:20190313T125608Z:cb569fa0-4667-447b-ad5f-4a86ef6e2887" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -999,7 +999,73 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:16:02 GMT" + "Wed, 13 Mar 2019 12:56:08 GMT" + ], + "Content-Length": [ + "542" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-2\",\r\n \"name\": \"pws-sdk-acc-1/pws-sdk-pool-2\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2019-03-13T12%3A54%3A59.7993333Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"poolId\": \"993ee340-a759-071b-a895-df27107702dc\",\r\n \"name\": \"pws-sdk-acc-1/pws-sdk-pool-2\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools?api-version=2017-08-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlR3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wd3Mtc2RrLWFjYy0xL2NhcGFjaXR5UG9vbHM/YXBpLXZlcnNpb249MjAxNy0wOC0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f000ae71-70fc-457c-a870-f59431434818" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/0.9.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a0bd0e0d-4aba-4f4b-b756-0de99afecf91" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-correlation-request-id": [ + "bf9cb530-4146-451c-bfe7-1263823ed0b7" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190313T125640Z:bf9cb530-4146-451c-bfe7-1263823ed0b7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 12:56:40 GMT" ], "Content-Length": [ "12" @@ -1021,7 +1087,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "351646dd-f2f4-4071-9c8f-a6044670793d" + "84824c96-c72e-43af-9d78-94c427ec21b9" ], "Accept-Language": [ "en-US" @@ -1041,10 +1107,10 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/1a22d2a1-d372-4950-a09f-251bfb435466?api-version=2017-08-15&operationResultResponseType=Location" + "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/df1184fe-2977-414f-ad0e-fb54a286e03c?api-version=2017-08-15&operationResultResponseType=Location" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/1a22d2a1-d372-4950-a09f-251bfb435466?api-version=2017-08-15" + "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/df1184fe-2977-414f-ad0e-fb54a286e03c?api-version=2017-08-15" ], "Server": [ "Microsoft-IIS/10.0" @@ -1056,13 +1122,13 @@ "14999" ], "x-ms-request-id": [ - "7127a2c3-3a96-40fa-955f-d95e842c5579" + "b08e2eec-3098-4b5a-a40b-51ac891479f5" ], "x-ms-correlation-request-id": [ - "7127a2c3-3a96-40fa-955f-d95e842c5579" + "b08e2eec-3098-4b5a-a40b-51ac891479f5" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T171458Z:7127a2c3-3a96-40fa-955f-d95e842c5579" + "SOUTHEASTASIA:20190313T125535Z:b08e2eec-3098-4b5a-a40b-51ac891479f5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1071,7 +1137,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:14:58 GMT" + "Wed, 13 Mar 2019 12:55:34 GMT" ], "Expires": [ "-1" @@ -1084,8 +1150,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/1a22d2a1-d372-4950-a09f-251bfb435466?api-version=2017-08-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvMWEyMmQyYTEtZDM3Mi00OTUwLWEwOWYtMjUxYmZiNDM1NDY2P2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/df1184fe-2977-414f-ad0e-fb54a286e03c?api-version=2017-08-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvZGYxMTg0ZmUtMjk3Ny00MTRmLWFkMGUtZmI1NGEyODZlMDNjP2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1104,10 +1170,10 @@ "no-cache" ], "x-ms-request-id": [ - "24870ba4-f558-4362-8ef8-9a547e8df6a5" + "68efee67-e6f1-4e1a-bf62-fc56c0df089c" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11990" ], "Server": [ "Microsoft-IIS/10.0" @@ -1116,10 +1182,10 @@ "ASP.NET" ], "x-ms-correlation-request-id": [ - "75e84ebb-1600-4803-93e8-a9d7f42f6e80" + "df8ea074-b9c6-4df8-a3fb-89efb7d4e5af" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T171528Z:75e84ebb-1600-4803-93e8-a9d7f42f6e80" + "SOUTHEASTASIA:20190313T125605Z:df8ea074-b9c6-4df8-a3fb-89efb7d4e5af" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1128,7 +1194,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:15:28 GMT" + "Wed, 13 Mar 2019 12:56:05 GMT" ], "Content-Length": [ "537" @@ -1140,12 +1206,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/1a22d2a1-d372-4950-a09f-251bfb435466\",\r\n \"name\": \"1a22d2a1-d372-4950-a09f-251bfb435466\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-02-27T17:14:57.7474352Z\",\r\n \"endTime\": \"2019-02-27T17:15:00.9929091Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/df1184fe-2977-414f-ad0e-fb54a286e03c\",\r\n \"name\": \"df1184fe-2977-414f-ad0e-fb54a286e03c\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-03-13T12:55:35.1336782Z\",\r\n \"endTime\": \"2019-03-13T12:55:38.3341826Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/1a22d2a1-d372-4950-a09f-251bfb435466?api-version=2017-08-15&operationResultResponseType=Location", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvMWEyMmQyYTEtZDM3Mi00OTUwLWEwOWYtMjUxYmZiNDM1NDY2P2FwaS12ZXJzaW9uPTIwMTctMDgtMTUmb3BlcmF0aW9uUmVzdWx0UmVzcG9uc2VUeXBlPUxvY2F0aW9u", + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/df1184fe-2977-414f-ad0e-fb54a286e03c?api-version=2017-08-15&operationResultResponseType=Location", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvZGYxMTg0ZmUtMjk3Ny00MTRmLWFkMGUtZmI1NGEyODZlMDNjP2FwaS12ZXJzaW9uPTIwMTctMDgtMTUmb3BlcmF0aW9uUmVzdWx0UmVzcG9uc2VUeXBlPUxvY2F0aW9u", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1164,7 +1230,7 @@ "no-cache" ], "x-ms-request-id": [ - "79575a6b-303c-44ec-90c2-b135cc80c025" + "ef2beb25-ed18-4da4-b53b-3c3c6b76e0ee" ], "Server": [ "Microsoft-IIS/10.0" @@ -1173,13 +1239,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11989" ], "x-ms-correlation-request-id": [ - "66f2feae-3759-4624-b4f7-edfed936e045" + "0f75fe99-9bcc-4cd1-9bc5-099143b03fe2" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T171530Z:66f2feae-3759-4624-b4f7-edfed936e045" + "SOUTHEASTASIA:20190313T125606Z:0f75fe99-9bcc-4cd1-9bc5-099143b03fe2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1188,7 +1254,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:15:29 GMT" + "Wed, 13 Mar 2019 12:56:06 GMT" ], "Content-Length": [ "530" @@ -1200,7 +1266,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1\",\r\n \"name\": \"pws-sdk-acc-1/pws-sdk-pool-1\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2019-02-27T17%3A14%3A57.8351112Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"poolId\": \"23d05bab-0147-6bfb-59c2-4470ff41e213\",\r\n \"name\": \"pws-sdk-acc-1/pws-sdk-pool-1\",\r\n \"serviceLevel\": \"Standard\",\r\n \"size\": 4398046511104,\r\n \"provisioningState\": \"Deleting\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1\",\r\n \"name\": \"pws-sdk-acc-1/pws-sdk-pool-1\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2019-03-13T12%3A55%3A35.2228716Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"poolId\": \"a5a2d6df-81cc-c4fb-abf3-8a08ce510a9f\",\r\n \"name\": \"pws-sdk-acc-1/pws-sdk-pool-1\",\r\n \"serviceLevel\": \"Standard\",\r\n \"size\": 4398046511104,\r\n \"provisioningState\": \"Deleting\"\r\n }\r\n}", "StatusCode": 200 }, { @@ -1210,7 +1276,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dd96a3b5-5b49-412e-82f5-cb3206dea286" + "1b5516d3-c678-499d-90e8-455ebd829c46" ], "Accept-Language": [ "en-US" @@ -1230,10 +1296,10 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/4e729cd2-b1bc-4fb7-9f85-2c7a9fa5a169?api-version=2017-08-15&operationResultResponseType=Location" + "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/d5f90899-94f0-4bf0-833f-4d31f1986c56?api-version=2017-08-15&operationResultResponseType=Location" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/4e729cd2-b1bc-4fb7-9f85-2c7a9fa5a169?api-version=2017-08-15" + "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/d5f90899-94f0-4bf0-833f-4d31f1986c56?api-version=2017-08-15" ], "Server": [ "Microsoft-IIS/10.0" @@ -1245,13 +1311,13 @@ "14998" ], "x-ms-request-id": [ - "1571d3e8-f4a7-46c1-88e8-018e554e5873" + "451d673b-bf7f-4d09-bf3c-5e0c2da81767" ], "x-ms-correlation-request-id": [ - "1571d3e8-f4a7-46c1-88e8-018e554e5873" + "451d673b-bf7f-4d09-bf3c-5e0c2da81767" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T171531Z:1571d3e8-f4a7-46c1-88e8-018e554e5873" + "SOUTHEASTASIA:20190313T125609Z:451d673b-bf7f-4d09-bf3c-5e0c2da81767" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1260,7 +1326,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:15:30 GMT" + "Wed, 13 Mar 2019 12:56:09 GMT" ], "Expires": [ "-1" @@ -1273,8 +1339,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/4e729cd2-b1bc-4fb7-9f85-2c7a9fa5a169?api-version=2017-08-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvNGU3MjljZDItYjFiYy00ZmI3LTlmODUtMmM3YTlmYTVhMTY5P2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/d5f90899-94f0-4bf0-833f-4d31f1986c56?api-version=2017-08-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvZDVmOTA4OTktOTRmMC00YmYwLTgzM2YtNGQzMWYxOTg2YzU2P2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1293,7 +1359,7 @@ "no-cache" ], "x-ms-request-id": [ - "3fa314f2-a24b-4946-8c65-f17e182ee320" + "0b69793f-2248-4630-81f8-18c314c4a4f7" ], "Server": [ "Microsoft-IIS/10.0" @@ -1302,13 +1368,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11987" ], "x-ms-correlation-request-id": [ - "29eb49d0-d7c9-468f-8b60-3a82915201dd" + "33bb997f-b948-4ba1-a4e0-a54f4b6ab7c9" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T171601Z:29eb49d0-d7c9-468f-8b60-3a82915201dd" + "SOUTHEASTASIA:20190313T125640Z:33bb997f-b948-4ba1-a4e0-a54f4b6ab7c9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1317,7 +1383,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:16:01 GMT" + "Wed, 13 Mar 2019 12:56:40 GMT" ], "Content-Length": [ "537" @@ -1329,12 +1395,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/4e729cd2-b1bc-4fb7-9f85-2c7a9fa5a169\",\r\n \"name\": \"4e729cd2-b1bc-4fb7-9f85-2c7a9fa5a169\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-02-27T17:15:30.4647317Z\",\r\n \"endTime\": \"2019-02-27T17:15:33.5983583Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-2\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/d5f90899-94f0-4bf0-833f-4d31f1986c56\",\r\n \"name\": \"d5f90899-94f0-4bf0-833f-4d31f1986c56\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-03-13T12:56:09.4469263Z\",\r\n \"endTime\": \"2019-03-13T12:56:12.7125615Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-2\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/4e729cd2-b1bc-4fb7-9f85-2c7a9fa5a169?api-version=2017-08-15&operationResultResponseType=Location", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvNGU3MjljZDItYjFiYy00ZmI3LTlmODUtMmM3YTlmYTVhMTY5P2FwaS12ZXJzaW9uPTIwMTctMDgtMTUmb3BlcmF0aW9uUmVzdWx0UmVzcG9uc2VUeXBlPUxvY2F0aW9u", + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/d5f90899-94f0-4bf0-833f-4d31f1986c56?api-version=2017-08-15&operationResultResponseType=Location", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvZDVmOTA4OTktOTRmMC00YmYwLTgzM2YtNGQzMWYxOTg2YzU2P2FwaS12ZXJzaW9uPTIwMTctMDgtMTUmb3BlcmF0aW9uUmVzdWx0UmVzcG9uc2VUeXBlPUxvY2F0aW9u", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1353,7 +1419,7 @@ "no-cache" ], "x-ms-request-id": [ - "a55f5746-4a8a-453e-80a0-6e938bb32f9a" + "dff14ba7-b930-4bc7-ab3c-d7a8b6f3e351" ], "Server": [ "Microsoft-IIS/10.0" @@ -1362,13 +1428,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11986" ], "x-ms-correlation-request-id": [ - "079429ce-824c-4020-b7be-9a11bd002b1e" + "ef580443-341a-4e43-93ed-cd76bf68cdb7" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T171602Z:079429ce-824c-4020-b7be-9a11bd002b1e" + "SOUTHEASTASIA:20190313T125640Z:ef580443-341a-4e43-93ed-cd76bf68cdb7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1377,7 +1443,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:16:01 GMT" + "Wed, 13 Mar 2019 12:56:40 GMT" ], "Content-Length": [ "529" @@ -1389,7 +1455,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-2\",\r\n \"name\": \"pws-sdk-acc-1/pws-sdk-pool-2\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2019-02-27T17%3A15%3A30.5192911Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"poolId\": \"c1df9ac8-67e1-f8b9-b81a-78fad2dc88bc\",\r\n \"name\": \"pws-sdk-acc-1/pws-sdk-pool-2\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"provisioningState\": \"Deleting\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-2\",\r\n \"name\": \"pws-sdk-acc-1/pws-sdk-pool-2\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2019-03-13T12%3A56%3A09.5486171Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"poolId\": \"993ee340-a759-071b-a895-df27107702dc\",\r\n \"name\": \"pws-sdk-acc-1/pws-sdk-pool-2\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"provisioningState\": \"Deleting\"\r\n }\r\n}", "StatusCode": 200 }, { @@ -1399,7 +1465,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a71c42d5-6884-4202-be84-0e9ed4892457" + "a2c6381f-c0b9-4367-a9a9-d60c14274ea2" ], "Accept-Language": [ "en-US" @@ -1428,13 +1494,13 @@ "14997" ], "x-ms-request-id": [ - "b6f8cb4b-4a0a-4411-8216-5037f51e7c74" + "6296734f-62ca-44b0-8851-9f587f98d523" ], "x-ms-correlation-request-id": [ - "b6f8cb4b-4a0a-4411-8216-5037f51e7c74" + "6296734f-62ca-44b0-8851-9f587f98d523" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T171606Z:b6f8cb4b-4a0a-4411-8216-5037f51e7c74" + "SOUTHEASTASIA:20190313T125646Z:6296734f-62ca-44b0-8851-9f587f98d523" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1443,7 +1509,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:16:06 GMT" + "Wed, 13 Mar 2019 12:56:45 GMT" ], "Expires": [ "-1" @@ -1482,16 +1548,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11990" ], "x-ms-request-id": [ - "3e27a5d5-b904-4757-9f14-f5549e89756e" + "5f1de484-546d-4302-91e0-cd3e166db06d" ], "x-ms-correlation-request-id": [ - "3e27a5d5-b904-4757-9f14-f5549e89756e" + "5f1de484-546d-4302-91e0-cd3e166db06d" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T171622Z:3e27a5d5-b904-4757-9f14-f5549e89756e" + "SOUTHEASTASIA:20190313T125702Z:5f1de484-546d-4302-91e0-cd3e166db06d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1500,7 +1566,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:16:22 GMT" + "Wed, 13 Mar 2019 12:57:01 GMT" ], "Expires": [ "-1" @@ -1539,16 +1605,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11989" ], "x-ms-request-id": [ - "c21e255f-bb31-4f87-857a-2e87e7a5087c" + "f2126939-5354-4b33-895a-51655febc456" ], "x-ms-correlation-request-id": [ - "c21e255f-bb31-4f87-857a-2e87e7a5087c" + "f2126939-5354-4b33-895a-51655febc456" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T171638Z:c21e255f-bb31-4f87-857a-2e87e7a5087c" + "SOUTHEASTASIA:20190313T125717Z:f2126939-5354-4b33-895a-51655febc456" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1557,7 +1623,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:16:37 GMT" + "Wed, 13 Mar 2019 12:57:17 GMT" ], "Expires": [ "-1" @@ -1596,16 +1662,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11988" ], "x-ms-request-id": [ - "cb7095f4-4f4a-43a4-9c4e-05b74e924e4e" + "ce163584-fe5a-455c-a4da-5adc0db5ae46" ], "x-ms-correlation-request-id": [ - "cb7095f4-4f4a-43a4-9c4e-05b74e924e4e" + "ce163584-fe5a-455c-a4da-5adc0db5ae46" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T171654Z:cb7095f4-4f4a-43a4-9c4e-05b74e924e4e" + "SOUTHEASTASIA:20190313T125733Z:ce163584-fe5a-455c-a4da-5adc0db5ae46" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1614,7 +1680,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:16:54 GMT" + "Wed, 13 Mar 2019 12:57:33 GMT" ], "Expires": [ "-1" @@ -1653,16 +1719,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11987" ], "x-ms-request-id": [ - "a064fe00-d699-414b-85f3-633549e45cf1" + "cc09aedd-96ef-4b96-bd6b-fe70c7823ad1" ], "x-ms-correlation-request-id": [ - "a064fe00-d699-414b-85f3-633549e45cf1" + "cc09aedd-96ef-4b96-bd6b-fe70c7823ad1" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T171710Z:a064fe00-d699-414b-85f3-633549e45cf1" + "SOUTHEASTASIA:20190313T125749Z:cc09aedd-96ef-4b96-bd6b-fe70c7823ad1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1671,7 +1737,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:17:09 GMT" + "Wed, 13 Mar 2019 12:57:49 GMT" ], "Expires": [ "-1" @@ -1710,16 +1776,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "11986" ], "x-ms-request-id": [ - "288b44f4-8b23-4462-b60b-a5e813e6b7df" + "b5e098e8-7a2a-4e9d-a2a9-c757170fa71a" ], "x-ms-correlation-request-id": [ - "288b44f4-8b23-4462-b60b-a5e813e6b7df" + "b5e098e8-7a2a-4e9d-a2a9-c757170fa71a" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T171725Z:288b44f4-8b23-4462-b60b-a5e813e6b7df" + "SOUTHEASTASIA:20190313T125805Z:b5e098e8-7a2a-4e9d-a2a9-c757170fa71a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1728,7 +1794,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:17:25 GMT" + "Wed, 13 Mar 2019 12:58:04 GMT" ], "Expires": [ "-1" @@ -1767,16 +1833,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" + "11985" ], "x-ms-request-id": [ - "7cf957d7-9287-4dcd-b92f-1a7f60752a8b" + "eb17b4bd-a754-4137-ba3b-584a6dd885ae" ], "x-ms-correlation-request-id": [ - "7cf957d7-9287-4dcd-b92f-1a7f60752a8b" + "eb17b4bd-a754-4137-ba3b-584a6dd885ae" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T171741Z:7cf957d7-9287-4dcd-b92f-1a7f60752a8b" + "SOUTHEASTASIA:20190313T125821Z:eb17b4bd-a754-4137-ba3b-584a6dd885ae" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1785,7 +1851,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:17:40 GMT" + "Wed, 13 Mar 2019 12:58:20 GMT" ], "Expires": [ "-1" @@ -1824,16 +1890,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" + "11984" ], "x-ms-request-id": [ - "f76567e2-4156-4279-a930-39008ce6e20c" + "d0de0728-08ad-4927-bff5-b129de1f5ca7" ], "x-ms-correlation-request-id": [ - "f76567e2-4156-4279-a930-39008ce6e20c" + "d0de0728-08ad-4927-bff5-b129de1f5ca7" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T171757Z:f76567e2-4156-4279-a930-39008ce6e20c" + "SOUTHEASTASIA:20190313T125836Z:d0de0728-08ad-4927-bff5-b129de1f5ca7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1842,7 +1908,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:17:57 GMT" + "Wed, 13 Mar 2019 12:58:36 GMT" ], "Expires": [ "-1" @@ -1881,16 +1947,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" + "11983" ], "x-ms-request-id": [ - "ce843025-6c2c-4ca1-9f3e-87eb4a00db94" + "4c7de3d6-0696-4354-91f9-8a5d60d1a368" ], "x-ms-correlation-request-id": [ - "ce843025-6c2c-4ca1-9f3e-87eb4a00db94" + "4c7de3d6-0696-4354-91f9-8a5d60d1a368" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T171813Z:ce843025-6c2c-4ca1-9f3e-87eb4a00db94" + "SOUTHEASTASIA:20190313T125852Z:4c7de3d6-0696-4354-91f9-8a5d60d1a368" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1899,7 +1965,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:18:12 GMT" + "Wed, 13 Mar 2019 12:58:52 GMT" ], "Expires": [ "-1" @@ -1938,16 +2004,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" + "11982" ], "x-ms-request-id": [ - "8d661eba-47e3-4281-b996-0ed0752f1c4f" + "b35332c0-467d-4028-8d80-0246a3a0ee27" ], "x-ms-correlation-request-id": [ - "8d661eba-47e3-4281-b996-0ed0752f1c4f" + "b35332c0-467d-4028-8d80-0246a3a0ee27" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T171829Z:8d661eba-47e3-4281-b996-0ed0752f1c4f" + "SOUTHEASTASIA:20190313T125908Z:b35332c0-467d-4028-8d80-0246a3a0ee27" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1956,7 +2022,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:18:28 GMT" + "Wed, 13 Mar 2019 12:59:07 GMT" ], "Expires": [ "-1" @@ -1989,16 +2055,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11968" + "11981" ], "x-ms-request-id": [ - "9edaaefa-efd4-4eea-ae81-1bce51977c4c" + "d58b9018-8e00-4ba4-938f-beef78c1dd00" ], "x-ms-correlation-request-id": [ - "9edaaefa-efd4-4eea-ae81-1bce51977c4c" + "d58b9018-8e00-4ba4-938f-beef78c1dd00" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T171844Z:9edaaefa-efd4-4eea-ae81-1bce51977c4c" + "SOUTHEASTASIA:20190313T125924Z:d58b9018-8e00-4ba4-938f-beef78c1dd00" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2007,7 +2073,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:18:43 GMT" + "Wed, 13 Mar 2019 12:59:24 GMT" ], "Expires": [ "-1" @@ -2040,16 +2106,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11967" + "11980" ], "x-ms-request-id": [ - "b0785a5d-ef08-493f-ae0a-4c57876218de" + "c9631ef7-c2f2-4e87-9aa0-8b802a266697" ], "x-ms-correlation-request-id": [ - "b0785a5d-ef08-493f-ae0a-4c57876218de" + "c9631ef7-c2f2-4e87-9aa0-8b802a266697" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T171845Z:b0785a5d-ef08-493f-ae0a-4c57876218de" + "SOUTHEASTASIA:20190313T125924Z:c9631ef7-c2f2-4e87-9aa0-8b802a266697" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2058,7 +2124,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:18:44 GMT" + "Wed, 13 Mar 2019 12:59:24 GMT" ], "Expires": [ "-1" 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 new file mode 100644 index 000000000000..a2c6a2067fa2 --- /dev/null +++ b/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.PoolTests/TestPoolPipelines.json @@ -0,0 +1,2723 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourcegroups/pws-sdk-tests-rg-1?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlZ3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westus2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bb23ce4e-b4a0-4bb9-aae1-f323c378c883" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.13" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "4331ed22-5ea8-4215-9624-f78d0bc782c5" + ], + "x-ms-correlation-request-id": [ + "4331ed22-5ea8-4215-9624-f78d0bc782c5" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20190313T124631Z:4331ed22-5ea8-4215-9624-f78d0bc782c5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 12:46:30 GMT" + ], + "Content-Length": [ + "190" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1\",\r\n \"name\": \"pws-sdk-tests-rg-1\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1?api-version=2017-08-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlR3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wd3Mtc2RrLWFjYy0xP2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westus2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ce4b80d2-d288-40ea-933c-6de14cd15ee6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/0.9.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2019-03-13T12%3A46%3A34.8863273Z'\"" + ], + "x-ms-request-id": [ + "2a230402-630d-4438-9a5b-3aafe5a73fdc" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/267e8860-1526-4b41-af49-b3a5434e46df?api-version=2017-08-15" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "10e81701-6c5e-4aed-835e-7ea28c13c64d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20190313T124635Z:10e81701-6c5e-4aed-835e-7ea28c13c64d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 12:46:35 GMT" + ], + "Content-Length": [ + "362" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1\",\r\n \"name\": \"pws-sdk-acc-1\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2019-03-13T12%3A46%3A34.8863273Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"name\": \"pws-sdk-acc-1\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/267e8860-1526-4b41-af49-b3a5434e46df?api-version=2017-08-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvMjY3ZTg4NjAtMTUyNi00YjQxLWFmNDktYjNhNTQzNGU0NmRmP2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/0.9.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a8fa570b-fa6c-4bf2-b93a-a1fc97a082e6" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "cd47543d-dcfc-4d8f-b3fc-8a0642487df3" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20190313T124705Z:cd47543d-dcfc-4d8f-b3fc-8a0642487df3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 12:47:05 GMT" + ], + "Content-Length": [ + "507" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/267e8860-1526-4b41-af49-b3a5434e46df\",\r\n \"name\": \"267e8860-1526-4b41-af49-b3a5434e46df\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-03-13T12:46:34.8166727Z\",\r\n \"endTime\": \"2019-03-13T12:46:35.113514Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1?api-version=2017-08-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlR3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wd3Mtc2RrLWFjYy0xP2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/0.9.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2019-03-13T12%3A46%3A35.1665301Z'\"" + ], + "x-ms-request-id": [ + "29842d3a-6d89-4739-8954-823081e46a96" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "2e1537f2-596f-4723-abdc-1a5420039133" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20190313T124706Z:2e1537f2-596f-4723-abdc-1a5420039133" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 12:47:05 GMT" + ], + "Content-Length": [ + "363" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1\",\r\n \"name\": \"pws-sdk-acc-1\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2019-03-13T12%3A46%3A35.1665301Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"name\": \"pws-sdk-acc-1\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1?api-version=2017-08-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlR3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wd3Mtc2RrLWFjYy0xP2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "62ca5d47-d6e7-4a47-b3aa-ddc2d4dbfe52" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/0.9.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2019-03-13T12%3A46%3A35.1665301Z'\"" + ], + "x-ms-request-id": [ + "d82054e6-78cd-4f53-9486-d376296b0677" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "48385424-a0c6-4739-b65c-5eb8903e10e2" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20190313T124740Z:48385424-a0c6-4739-b65c-5eb8903e10e2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 12:47:40 GMT" + ], + "Content-Length": [ + "363" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1\",\r\n \"name\": \"pws-sdk-acc-1\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2019-03-13T12%3A46%3A35.1665301Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"name\": \"pws-sdk-acc-1\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1?api-version=2017-08-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlR3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wd3Mtc2RrLWFjYy0xP2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7157e4d0-65c8-4321-b1fb-328bbeaafa2e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/0.9.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2019-03-13T12%3A46%3A35.1665301Z'\"" + ], + "x-ms-request-id": [ + "1582ea98-5509-4df8-b604-31e91dfad50d" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "a440923f-d24d-46f3-823f-9ce93ec83173" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20190313T124744Z:a440923f-d24d-46f3-823f-9ce93ec83173" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 12:47:44 GMT" + ], + "Content-Length": [ + "363" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1\",\r\n \"name\": \"pws-sdk-acc-1\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2019-03-13T12%3A46%3A35.1665301Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"name\": \"pws-sdk-acc-1\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1?api-version=2017-08-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlR3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wd3Mtc2RrLWFjYy0xP2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "00569591-a64a-40f4-a231-fa5f85e5fd65" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/0.9.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2019-03-13T12%3A46%3A35.1665301Z'\"" + ], + "x-ms-request-id": [ + "6adf2a5c-02a1-404b-871e-4a3810cee1e0" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], + "x-ms-correlation-request-id": [ + "f7c91a9d-15d9-4e5c-acc0-e2d08fb2a45b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20190313T124955Z:f7c91a9d-15d9-4e5c-acc0-e2d08fb2a45b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 12:49:55 GMT" + ], + "Content-Length": [ + "363" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1\",\r\n \"name\": \"pws-sdk-acc-1\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2019-03-13T12%3A46%3A35.1665301Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"name\": \"pws-sdk-acc-1\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1?api-version=2017-08-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlR3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wd3Mtc2RrLWFjYy0xL2NhcGFjaXR5UG9vbHMvcHdzLXNkay1wb29sLTE/YXBpLXZlcnNpb249MjAxNy0wOC0xNQ==", + "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": [ + "7980396e-c227-448e-978d-a680af3a6673" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/0.9.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "113" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2019-03-13T12%3A47%3A07.1936159Z'\"" + ], + "x-ms-request-id": [ + "613c05c7-707e-4828-8d3f-d3607a9d9f80" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/643edfb9-63a0-4d33-95bb-646d834257a0?api-version=2017-08-15" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "abd580db-84d3-4d38-bb6b-02fab06ed759" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20190313T124708Z:abd580db-84d3-4d38-bb6b-02fab06ed759" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 12:47:07 GMT" + ], + "Content-Length": [ + "443" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1\",\r\n \"name\": \"pws-sdk-acc-1/pws-sdk-pool-1\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2019-03-13T12%3A47%3A07.1936159Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"size\": 4398046511104,\r\n \"serviceLevel\": \"Premium\",\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1?api-version=2017-08-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlR3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wd3Mtc2RrLWFjYy0xL2NhcGFjaXR5UG9vbHMvcHdzLXNkay1wb29sLTE/YXBpLXZlcnNpb249MjAxNy0wOC0xNQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"size\": 4398046511104,\r\n \"serviceLevel\": \"Standard\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d825cc3c-c0fb-4987-860b-226d9286aba0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/0.9.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "114" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2019-03-13T12%3A47%3A40.1093499Z'\"" + ], + "x-ms-request-id": [ + "6fa64a1f-6245-4824-b48a-ccc357c20380" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "38980831-68d1-4fde-904a-56e83ff6f1f2" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20190313T124740Z:38980831-68d1-4fde-904a-56e83ff6f1f2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 12:47:40 GMT" + ], + "Content-Length": [ + "531" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1\",\r\n \"name\": \"pws-sdk-acc-1/pws-sdk-pool-1\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2019-03-13T12%3A47%3A40.1093499Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"poolId\": \"8236de21-5634-9ee7-b85c-4fa185acd272\",\r\n \"name\": \"pws-sdk-acc-1/pws-sdk-pool-1\",\r\n \"serviceLevel\": \"Standard\",\r\n \"size\": 4398046511104,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1?api-version=2017-08-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlR3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wd3Mtc2RrLWFjYy0xL2NhcGFjaXR5UG9vbHMvcHdzLXNkay1wb29sLTE/YXBpLXZlcnNpb249MjAxNy0wOC0xNQ==", + "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": [ + "36cb0997-ac7d-4099-9679-7ae318da536d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/0.9.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "113" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2019-03-13T12%3A47%3A44.4274621Z'\"" + ], + "x-ms-request-id": [ + "bd050b6f-a0a4-435f-bfe5-15b0e093126c" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "dacb56c2-322a-44cb-8979-e30ef9cfa794" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20190313T124744Z:dacb56c2-322a-44cb-8979-e30ef9cfa794" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 12:47:44 GMT" + ], + "Content-Length": [ + "530" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1\",\r\n \"name\": \"pws-sdk-acc-1/pws-sdk-pool-1\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2019-03-13T12%3A47%3A44.4274621Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"poolId\": \"8236de21-5634-9ee7-b85c-4fa185acd272\",\r\n \"name\": \"pws-sdk-acc-1/pws-sdk-pool-1\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1?api-version=2017-08-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlR3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wd3Mtc2RrLWFjYy0xL2NhcGFjaXR5UG9vbHMvcHdzLXNkay1wb29sLTE/YXBpLXZlcnNpb249MjAxNy0wOC0xNQ==", + "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": [ + "fb2f29dc-b64b-40b4-8a2d-e0f561b1d894" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/0.9.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "113" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2019-03-13T12%3A48%3A18.3258994Z'\"" + ], + "x-ms-request-id": [ + "90ef5538-9359-4022-872f-7d5251a10a37" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/6c5f5167-438e-45a9-8749-93777829843d?api-version=2017-08-15" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "6263ed23-bf74-4684-90e4-59fc6d521a63" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20190313T124819Z:6263ed23-bf74-4684-90e4-59fc6d521a63" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 12:48:18 GMT" + ], + "Content-Length": [ + "443" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1\",\r\n \"name\": \"pws-sdk-acc-1/pws-sdk-pool-1\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2019-03-13T12%3A48%3A18.3258994Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"size\": 4398046511104,\r\n \"serviceLevel\": \"Premium\",\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/643edfb9-63a0-4d33-95bb-646d834257a0?api-version=2017-08-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvNjQzZWRmYjktNjNhMC00ZDMzLTk1YmItNjQ2ZDgzNDI1N2EwP2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/0.9.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d388599f-a4ea-4c10-ad62-12eaf5476207" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-correlation-request-id": [ + "e81aaad3-a7cd-48ae-abc6-77e193e0e2fd" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20190313T124738Z:e81aaad3-a7cd-48ae-abc6-77e193e0e2fd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 12:47:38 GMT" + ], + "Content-Length": [ + "537" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/643edfb9-63a0-4d33-95bb-646d834257a0\",\r\n \"name\": \"643edfb9-63a0-4d33-95bb-646d834257a0\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-03-13T12:47:07.1378135Z\",\r\n \"endTime\": \"2019-03-13T12:47:07.5909606Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1?api-version=2017-08-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlR3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wd3Mtc2RrLWFjYy0xL2NhcGFjaXR5UG9vbHMvcHdzLXNkay1wb29sLTE/YXBpLXZlcnNpb249MjAxNy0wOC0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/0.9.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2019-03-13T12%3A47%3A07.6599527Z'\"" + ], + "x-ms-request-id": [ + "f44d8b74-81e8-42d6-9e9f-23576c321b80" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "a77308fb-1f92-41a3-897e-b4f888b3217c" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20190313T124739Z:a77308fb-1f92-41a3-897e-b4f888b3217c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 12:47:39 GMT" + ], + "Content-Length": [ + "530" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1\",\r\n \"name\": \"pws-sdk-acc-1/pws-sdk-pool-1\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2019-03-13T12%3A47%3A07.6599527Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"poolId\": \"8236de21-5634-9ee7-b85c-4fa185acd272\",\r\n \"name\": \"pws-sdk-acc-1/pws-sdk-pool-1\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1?api-version=2017-08-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlR3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wd3Mtc2RrLWFjYy0xL2NhcGFjaXR5UG9vbHMvcHdzLXNkay1wb29sLTE/YXBpLXZlcnNpb249MjAxNy0wOC0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fad1bd4b-ec8c-4f22-99e0-52ac46c992d9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/0.9.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2019-03-13T12%3A47%3A07.6599527Z'\"" + ], + "x-ms-request-id": [ + "1a6b20a6-75f1-4140-920c-45cb460cd1c8" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "b34db414-4105-4346-a963-270071acad63" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20190313T124739Z:b34db414-4105-4346-a963-270071acad63" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 12:47:39 GMT" + ], + "Content-Length": [ + "530" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1\",\r\n \"name\": \"pws-sdk-acc-1/pws-sdk-pool-1\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2019-03-13T12%3A47%3A07.6599527Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"poolId\": \"8236de21-5634-9ee7-b85c-4fa185acd272\",\r\n \"name\": \"pws-sdk-acc-1/pws-sdk-pool-1\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1?api-version=2017-08-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlR3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wd3Mtc2RrLWFjYy0xL2NhcGFjaXR5UG9vbHMvcHdzLXNkay1wb29sLTE/YXBpLXZlcnNpb249MjAxNy0wOC0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/0.9.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2019-03-13T12%3A48%3A18.7161813Z'\"" + ], + "x-ms-request-id": [ + "a78f8a7f-51bb-4865-b6a0-eee312f0a1e1" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-correlation-request-id": [ + "0ba948e2-253b-4a8b-bb24-52dd0b59e17c" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20190313T124850Z:0ba948e2-253b-4a8b-bb24-52dd0b59e17c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 12:48:50 GMT" + ], + "Content-Length": [ + "530" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1\",\r\n \"name\": \"pws-sdk-acc-1/pws-sdk-pool-1\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2019-03-13T12%3A48%3A18.7161813Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"poolId\": \"7793b0de-3058-1023-2b4e-5c0f3bd249f2\",\r\n \"name\": \"pws-sdk-acc-1/pws-sdk-pool-1\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1?api-version=2017-08-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlR3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wd3Mtc2RrLWFjYy0xL2NhcGFjaXR5UG9vbHMvcHdzLXNkay1wb29sLTE/YXBpLXZlcnNpb249MjAxNy0wOC0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e2190b35-4360-46d1-8086-90aac356e81b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/0.9.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2019-03-13T12%3A48%3A18.7161813Z'\"" + ], + "x-ms-request-id": [ + "a03baff0-1c12-4e84-81d6-01fc714b72ac" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-correlation-request-id": [ + "94e05ade-76b4-4c0e-9788-a0870acf6292" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20190313T124923Z:94e05ade-76b4-4c0e-9788-a0870acf6292" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 12:49:22 GMT" + ], + "Content-Length": [ + "530" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1\",\r\n \"name\": \"pws-sdk-acc-1/pws-sdk-pool-1\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2019-03-13T12%3A48%3A18.7161813Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"poolId\": \"7793b0de-3058-1023-2b4e-5c0f3bd249f2\",\r\n \"name\": \"pws-sdk-acc-1/pws-sdk-pool-1\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1?api-version=2017-08-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlR3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wd3Mtc2RrLWFjYy0xL2NhcGFjaXR5UG9vbHMvcHdzLXNkay1wb29sLTE/YXBpLXZlcnNpb249MjAxNy0wOC0xNQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "37adaf0d-6d39-485a-bb97-b2e2e7feb010" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/0.9.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/dfd737ba-b102-45fa-82b0-0f3629ee0f8f?api-version=2017-08-15&operationResultResponseType=Location" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/dfd737ba-b102-45fa-82b0-0f3629ee0f8f?api-version=2017-08-15" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "9b43891b-3c80-44fb-bf35-dd1e36d0d9be" + ], + "x-ms-correlation-request-id": [ + "9b43891b-3c80-44fb-bf35-dd1e36d0d9be" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20190313T124745Z:9b43891b-3c80-44fb-bf35-dd1e36d0d9be" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 12:47:45 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1?api-version=2017-08-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlR3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wd3Mtc2RrLWFjYy0xL2NhcGFjaXR5UG9vbHMvcHdzLXNkay1wb29sLTE/YXBpLXZlcnNpb249MjAxNy0wOC0xNQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "73afbf26-5473-43c1-a1b4-7c1b432bc3ef" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/0.9.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/cc63d1b7-8c5d-43c8-b7af-8a9563389776?api-version=2017-08-15&operationResultResponseType=Location" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/cc63d1b7-8c5d-43c8-b7af-8a9563389776?api-version=2017-08-15" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14998" + ], + "x-ms-request-id": [ + "9f750b24-4017-4c0a-9f2e-929584d6b05b" + ], + "x-ms-correlation-request-id": [ + "9f750b24-4017-4c0a-9f2e-929584d6b05b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20190313T124924Z:9f750b24-4017-4c0a-9f2e-929584d6b05b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 12:49:23 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/dfd737ba-b102-45fa-82b0-0f3629ee0f8f?api-version=2017-08-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvZGZkNzM3YmEtYjEwMi00NWZhLTgyYjAtMGYzNjI5ZWUwZjhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/0.9.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e3996ae7-20d8-4b66-b10b-5dc117c01e87" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "15e47897-40e2-45df-a621-aed4813832b3" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20190313T124815Z:15e47897-40e2-45df-a621-aed4813832b3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 12:48:15 GMT" + ], + "Content-Length": [ + "537" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/dfd737ba-b102-45fa-82b0-0f3629ee0f8f\",\r\n \"name\": \"dfd737ba-b102-45fa-82b0-0f3629ee0f8f\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-03-13T12:47:45.4518961Z\",\r\n \"endTime\": \"2019-03-13T12:47:48.7049503Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/dfd737ba-b102-45fa-82b0-0f3629ee0f8f?api-version=2017-08-15&operationResultResponseType=Location", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvZGZkNzM3YmEtYjEwMi00NWZhLTgyYjAtMGYzNjI5ZWUwZjhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMTUmb3BlcmF0aW9uUmVzdWx0UmVzcG9uc2VUeXBlPUxvY2F0aW9u", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/0.9.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "9a84336d-c90a-4871-8c91-bdeb9fdd9527" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-correlation-request-id": [ + "e0983129-c820-4302-a603-928104b0e3d2" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20190313T124816Z:e0983129-c820-4302-a603-928104b0e3d2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 12:48:15 GMT" + ], + "Content-Length": [ + "529" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1\",\r\n \"name\": \"pws-sdk-acc-1/pws-sdk-pool-1\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2019-03-13T12%3A47%3A45.5112448Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"poolId\": \"8236de21-5634-9ee7-b85c-4fa185acd272\",\r\n \"name\": \"pws-sdk-acc-1/pws-sdk-pool-1\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"provisioningState\": \"Deleting\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/6c5f5167-438e-45a9-8749-93777829843d?api-version=2017-08-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvNmM1ZjUxNjctNDM4ZS00NWE5LTg3NDktOTM3Nzc4Mjk4NDNkP2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/0.9.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "0c709f3a-5b67-408f-a385-b36de78a9420" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-correlation-request-id": [ + "8c9c2121-8818-40f8-9399-3d12798ea4e2" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20190313T124849Z:8c9c2121-8818-40f8-9399-3d12798ea4e2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 12:48:49 GMT" + ], + "Content-Length": [ + "536" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/6c5f5167-438e-45a9-8749-93777829843d\",\r\n \"name\": \"6c5f5167-438e-45a9-8749-93777829843d\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-03-13T12:48:18.2748916Z\",\r\n \"endTime\": \"2019-03-13T12:48:18.665524Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-2?api-version=2017-08-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlR3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wd3Mtc2RrLWFjYy0xL2NhcGFjaXR5UG9vbHMvcHdzLXNkay1wb29sLTI/YXBpLXZlcnNpb249MjAxNy0wOC0xNQ==", + "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": [ + "807518eb-ae7c-4a51-863f-1da3084d9dc6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/0.9.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "113" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2019-03-13T12%3A48%3A51.5278337Z'\"" + ], + "x-ms-request-id": [ + "abe2d236-5fb4-492b-9561-89d4f1ee8614" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/8e671c11-6b83-4667-9820-7657de354e5d?api-version=2017-08-15" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-correlation-request-id": [ + "8c30d7fe-9084-406d-bd11-81ea00b3763b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20190313T124852Z:8c30d7fe-9084-406d-bd11-81ea00b3763b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 12:48:52 GMT" + ], + "Content-Length": [ + "443" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-2\",\r\n \"name\": \"pws-sdk-acc-1/pws-sdk-pool-2\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2019-03-13T12%3A48%3A51.5278337Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"size\": 4398046511104,\r\n \"serviceLevel\": \"Premium\",\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/8e671c11-6b83-4667-9820-7657de354e5d?api-version=2017-08-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvOGU2NzFjMTEtNmI4My00NjY3LTk4MjAtNzY1N2RlMzU0ZTVkP2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/0.9.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "881febb2-a3ef-41b6-a94d-c83dc263ce5b" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-correlation-request-id": [ + "843c6253-1408-4f78-b937-c246e39e0281" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20190313T124922Z:843c6253-1408-4f78-b937-c246e39e0281" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 12:49:22 GMT" + ], + "Content-Length": [ + "537" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/8e671c11-6b83-4667-9820-7657de354e5d\",\r\n \"name\": \"8e671c11-6b83-4667-9820-7657de354e5d\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-03-13T12:48:51.4663948Z\",\r\n \"endTime\": \"2019-03-13T12:48:51.8101407Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-2\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-2?api-version=2017-08-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlR3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wd3Mtc2RrLWFjYy0xL2NhcGFjaXR5UG9vbHMvcHdzLXNkay1wb29sLTI/YXBpLXZlcnNpb249MjAxNy0wOC0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/0.9.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2019-03-13T12%3A48%3A51.8640765Z'\"" + ], + "x-ms-request-id": [ + "6fe77099-de86-455a-99eb-a61cebf0e84f" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-correlation-request-id": [ + "ca8c05a6-591a-4299-82df-5ddc43393212" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20190313T124923Z:ca8c05a6-591a-4299-82df-5ddc43393212" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 12:49:22 GMT" + ], + "Content-Length": [ + "530" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-2\",\r\n \"name\": \"pws-sdk-acc-1/pws-sdk-pool-2\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2019-03-13T12%3A48%3A51.8640765Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"poolId\": \"1cba8f55-b7c6-6b69-4a93-e1a48bd032f5\",\r\n \"name\": \"pws-sdk-acc-1/pws-sdk-pool-2\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/cc63d1b7-8c5d-43c8-b7af-8a9563389776?api-version=2017-08-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvY2M2M2QxYjctOGM1ZC00M2M4LWI3YWYtOGE5NTYzMzg5Nzc2P2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/0.9.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ca56d716-f4e5-4a0c-ba96-1f9c9b6c111f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-correlation-request-id": [ + "bb2ecf3a-b7fc-4dd0-9761-69257926fe14" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20190313T124954Z:bb2ecf3a-b7fc-4dd0-9761-69257926fe14" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 12:49:53 GMT" + ], + "Content-Length": [ + "537" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/cc63d1b7-8c5d-43c8-b7af-8a9563389776\",\r\n \"name\": \"cc63d1b7-8c5d-43c8-b7af-8a9563389776\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-03-13T12:49:23.9571949Z\",\r\n \"endTime\": \"2019-03-13T12:49:27.1321115Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/cc63d1b7-8c5d-43c8-b7af-8a9563389776?api-version=2017-08-15&operationResultResponseType=Location", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvY2M2M2QxYjctOGM1ZC00M2M4LWI3YWYtOGE5NTYzMzg5Nzc2P2FwaS12ZXJzaW9uPTIwMTctMDgtMTUmb3BlcmF0aW9uUmVzdWx0UmVzcG9uc2VUeXBlPUxvY2F0aW9u", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/0.9.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "61c462e5-f5eb-452a-9e50-a741ecb329ce" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-correlation-request-id": [ + "99f932cf-c8ab-4922-af4e-6420524a124f" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20190313T124955Z:99f932cf-c8ab-4922-af4e-6420524a124f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 12:49:55 GMT" + ], + "Content-Length": [ + "529" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1\",\r\n \"name\": \"pws-sdk-acc-1/pws-sdk-pool-1\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2019-03-13T12%3A49%3A24.0202624Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"poolId\": \"7793b0de-3058-1023-2b4e-5c0f3bd249f2\",\r\n \"name\": \"pws-sdk-acc-1/pws-sdk-pool-1\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"provisioningState\": \"Deleting\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools?api-version=2017-08-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlR3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wd3Mtc2RrLWFjYy0xL2NhcGFjaXR5UG9vbHM/YXBpLXZlcnNpb249MjAxNy0wOC0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3901f9d6-1224-4afc-a456-f8646b2bad5b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/0.9.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "89a6369a-f53c-4bc5-ac8c-8641e899e21d" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" + ], + "x-ms-correlation-request-id": [ + "06200952-6957-45c0-a13a-882deaca1fdf" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20190313T124955Z:06200952-6957-45c0-a13a-882deaca1fdf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 12:49:55 GMT" + ], + "Content-Length": [ + "542" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-2\",\r\n \"name\": \"pws-sdk-acc-1/pws-sdk-pool-2\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2019-03-13T12%3A48%3A51.8640765Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"poolId\": \"1cba8f55-b7c6-6b69-4a93-e1a48bd032f5\",\r\n \"name\": \"pws-sdk-acc-1/pws-sdk-pool-2\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourcegroups/pws-sdk-tests-rg-1?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlZ3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "68827db4-b652-4c65-891c-07a717d2fd91" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.13" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "c6496aba-cda6-4b70-8491-b30b46906047" + ], + "x-ms-correlation-request-id": [ + "c6496aba-cda6-4b70-8491-b30b46906047" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20190313T125000Z:c6496aba-cda6-4b70-8491-b30b46906047" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 12:49:59 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVjFNNk1rUlRSRXM2TWtSVVJWTlVVem95UkZKSE9qSkVNUzFYUlZOVVZWTXlJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNeUluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.13" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "a63793ac-0170-4142-94c5-aaec668b7426" + ], + "x-ms-correlation-request-id": [ + "a63793ac-0170-4142-94c5-aaec668b7426" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20190313T125016Z:a63793ac-0170-4142-94c5-aaec668b7426" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 12:50:16 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVjFNNk1rUlRSRXM2TWtSVVJWTlVVem95UkZKSE9qSkVNUzFYUlZOVVZWTXlJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNeUluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.13" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "50e220a1-cc62-46fd-937c-41b07e050a60" + ], + "x-ms-correlation-request-id": [ + "50e220a1-cc62-46fd-937c-41b07e050a60" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20190313T125031Z:50e220a1-cc62-46fd-937c-41b07e050a60" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 12:50:31 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVjFNNk1rUlRSRXM2TWtSVVJWTlVVem95UkZKSE9qSkVNUzFYUlZOVVZWTXlJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNeUluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.13" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "69979b60-4f27-4f96-99f9-adc66071a100" + ], + "x-ms-correlation-request-id": [ + "69979b60-4f27-4f96-99f9-adc66071a100" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20190313T125047Z:69979b60-4f27-4f96-99f9-adc66071a100" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 12:50:46 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVjFNNk1rUlRSRXM2TWtSVVJWTlVVem95UkZKSE9qSkVNUzFYUlZOVVZWTXlJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNeUluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.13" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "a92bcb6e-a44a-46bf-b0cd-1aace6b20419" + ], + "x-ms-correlation-request-id": [ + "a92bcb6e-a44a-46bf-b0cd-1aace6b20419" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20190313T125102Z:a92bcb6e-a44a-46bf-b0cd-1aace6b20419" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 12:51:02 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVjFNNk1rUlRSRXM2TWtSVVJWTlVVem95UkZKSE9qSkVNUzFYUlZOVVZWTXlJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNeUluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.13" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "9872e253-2002-4b2a-9b79-a99712081d16" + ], + "x-ms-correlation-request-id": [ + "9872e253-2002-4b2a-9b79-a99712081d16" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20190313T125118Z:9872e253-2002-4b2a-9b79-a99712081d16" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 12:51:17 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVjFNNk1rUlRSRXM2TWtSVVJWTlVVem95UkZKSE9qSkVNUzFYUlZOVVZWTXlJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNeUluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.13" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-request-id": [ + "3fcd32ce-e9cc-4986-8646-a60beb84483a" + ], + "x-ms-correlation-request-id": [ + "3fcd32ce-e9cc-4986-8646-a60beb84483a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20190313T125133Z:3fcd32ce-e9cc-4986-8646-a60beb84483a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 12:51:32 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVjFNNk1rUlRSRXM2TWtSVVJWTlVVem95UkZKSE9qSkVNUzFYUlZOVVZWTXlJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNeUluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.13" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-request-id": [ + "9895be99-58ac-4b30-8a95-00b4fd7fc3e4" + ], + "x-ms-correlation-request-id": [ + "9895be99-58ac-4b30-8a95-00b4fd7fc3e4" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20190313T125149Z:9895be99-58ac-4b30-8a95-00b4fd7fc3e4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 12:51:49 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVjFNNk1rUlRSRXM2TWtSVVJWTlVVem95UkZKSE9qSkVNUzFYUlZOVVZWTXlJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNeUluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.13" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-request-id": [ + "50f31d04-5d5a-4a12-94ae-6b4c55b657e2" + ], + "x-ms-correlation-request-id": [ + "50f31d04-5d5a-4a12-94ae-6b4c55b657e2" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20190313T125204Z:50f31d04-5d5a-4a12-94ae-6b4c55b657e2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 12:52:04 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVjFNNk1rUlRSRXM2TWtSVVJWTlVVem95UkZKSE9qSkVNUzFYUlZOVVZWTXlJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNeUluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.13" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-request-id": [ + "5c2cb371-4b05-4243-9300-5763a54615bd" + ], + "x-ms-correlation-request-id": [ + "5c2cb371-4b05-4243-9300-5763a54615bd" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20190313T125220Z:5c2cb371-4b05-4243-9300-5763a54615bd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 12:52:19 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVjFNNk1rUlRSRXM2TWtSVVJWTlVVem95UkZKSE9qSkVNUzFYUlZOVVZWTXlJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNeUluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.13" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-request-id": [ + "c61aaff4-82dd-4ee1-b0c5-c424b414e111" + ], + "x-ms-correlation-request-id": [ + "c61aaff4-82dd-4ee1-b0c5-c424b414e111" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20190313T125236Z:c61aaff4-82dd-4ee1-b0c5-c424b414e111" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 12:52:35 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVjFNNk1rUlRSRXM2TWtSVVJWTlVVem95UkZKSE9qSkVNUzFYUlZOVVZWTXlJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNeUluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.13" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-request-id": [ + "2d554076-05c7-466e-be92-acb4bcda4d4b" + ], + "x-ms-correlation-request-id": [ + "2d554076-05c7-466e-be92-acb4bcda4d4b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20190313T125251Z:2d554076-05c7-466e-be92-acb4bcda4d4b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 12:52:50 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVjFNNk1rUlRSRXM2TWtSVVJWTlVVem95UkZKSE9qSkVNUzFYUlZOVVZWTXlJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNeUluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.13" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-request-id": [ + "1d80ac01-de4c-4755-9197-29c37da3ef89" + ], + "x-ms-correlation-request-id": [ + "1d80ac01-de4c-4755-9197-29c37da3ef89" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20190313T125307Z:1d80ac01-de4c-4755-9197-29c37da3ef89" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 12:53:07 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVjFNNk1rUlRSRXM2TWtSVVJWTlVVem95UkZKSE9qSkVNUzFYUlZOVVZWTXlJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNeUluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.13" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-request-id": [ + "c8d04c47-3383-436b-83ab-6bc022a5b20f" + ], + "x-ms-correlation-request-id": [ + "c8d04c47-3383-436b-83ab-6bc022a5b20f" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20190313T125322Z:c8d04c47-3383-436b-83ab-6bc022a5b20f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 12:53:22 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVjFNNk1rUlRSRXM2TWtSVVJWTlVVem95UkZKSE9qSkVNUzFYUlZOVVZWTXlJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNeUluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.13" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-request-id": [ + "ac0787d7-98c2-4d74-b4fd-bf0d00e266d3" + ], + "x-ms-correlation-request-id": [ + "ac0787d7-98c2-4d74-b4fd-bf0d00e266d3" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20190313T125338Z:ac0787d7-98c2-4d74-b4fd-bf0d00e266d3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 12:53:37 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVjFNNk1rUlRSRXM2TWtSVVJWTlVVem95UkZKSE9qSkVNUzFYUlZOVVZWTXlJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNeUluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.13" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-request-id": [ + "ffc214d6-9796-4824-9244-98922983a1d5" + ], + "x-ms-correlation-request-id": [ + "ffc214d6-9796-4824-9244-98922983a1d5" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20190313T125338Z:ffc214d6-9796-4824-9244-98922983a1d5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 12:53:38 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "f557b96d-2308-4a18-aae1-b8f7e7e70cc7" + } +} \ No newline at end of file diff --git a/src/Anf/Anf.Test/SessionRecords/Microsoft.Azure.Commands.Anf.Test.ScenarioTests.ScenarioTest.SnapshotTests/TestSnapshotCrud.json b/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.SnapshotTests/TestSnapshotCrud.json similarity index 84% rename from src/Anf/Anf.Test/SessionRecords/Microsoft.Azure.Commands.Anf.Test.ScenarioTests.ScenarioTest.SnapshotTests/TestSnapshotCrud.json rename to src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.SnapshotTests/TestSnapshotCrud.json index f3a1022c5ce8..fd8558d59cc7 100644 --- a/src/Anf/Anf.Test/SessionRecords/Microsoft.Azure.Commands.Anf.Test.ScenarioTests.ScenarioTest.SnapshotTests/TestSnapshotCrud.json +++ b/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.SnapshotTests/TestSnapshotCrud.json @@ -7,7 +7,7 @@ "RequestBody": "{\r\n \"location\": \"westus2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "3790d291-f9a4-49dc-a0e4-83354093f74a" + "b510b736-e812-4642-af63-6a2b97fc5880" ], "Accept-Language": [ "en-US" @@ -33,16 +33,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1198" ], "x-ms-request-id": [ - "8719177f-d4f6-44cf-9c4c-50feee4d0f8d" + "9b1edcf5-613e-4a7e-a799-64a8f7249d6c" ], "x-ms-correlation-request-id": [ - "8719177f-d4f6-44cf-9c4c-50feee4d0f8d" + "9b1edcf5-613e-4a7e-a799-64a8f7249d6c" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T165456Z:8719177f-d4f6-44cf-9c4c-50feee4d0f8d" + "SOUTHEASTASIA:20190313T130030Z:9b1edcf5-613e-4a7e-a799-64a8f7249d6c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 16:54:55 GMT" + "Wed, 13 Mar 2019 13:00:29 GMT" ], "Content-Length": [ "190" @@ -73,7 +73,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "42e3069b-06e4-4b1e-9c8e-b307dbe7399e" + "6d9fd59b-e7d0-4c71-9e62-2641116a1164" ], "Accept-Language": [ "en-US" @@ -96,13 +96,13 @@ "gateway" ], "x-ms-request-id": [ - "8d00b26e-455e-4e7c-a558-7a82754097f1" + "43154cf5-0afe-4f29-8011-42ebeb398ece" ], "x-ms-correlation-request-id": [ - "8d00b26e-455e-4e7c-a558-7a82754097f1" + "43154cf5-0afe-4f29-8011-42ebeb398ece" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T165456Z:8d00b26e-455e-4e7c-a558-7a82754097f1" + "SOUTHEASTASIA:20190313T130031Z:43154cf5-0afe-4f29-8011-42ebeb398ece" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 16:54:56 GMT" + "Wed, 13 Mar 2019 13:00:30 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -147,13 +147,13 @@ "no-cache" ], "ETag": [ - "W/\"fd9141d5-9936-4431-8b43-d93fd3eeaf73\"" + "W/\"f06aa8bf-04e8-44bb-882f-968cc2ca9281\"" ], "x-ms-request-id": [ - "7727c8a4-3fb3-4de7-a258-92598e82e837" + "07688bed-a189-415f-82c1-b5b43cc35bd0" ], "x-ms-correlation-request-id": [ - "74faa611-1550-4c68-853f-21c14de70008" + "66f8a888-e312-4b90-9b77-81d0007888cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -166,13 +166,13 @@ "11997" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T165505Z:74faa611-1550-4c68-853f-21c14de70008" + "SOUTHEASTASIA:20190313T130041Z:66f8a888-e312-4b90-9b77-81d0007888cd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 16:55:05 GMT" + "Wed, 13 Mar 2019 13:00:41 GMT" ], "Content-Length": [ "678" @@ -184,7 +184,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"pws-sdk-tests-rg-1-vnet\",\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet\",\r\n \"etag\": \"W/\\\"fd9141d5-9936-4431-8b43-d93fd3eeaf73\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ef1968a0-1f02-4cba-a356-41b8a953eab5\",\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\": \"pws-sdk-tests-rg-1-vnet\",\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet\",\r\n \"etag\": \"W/\\\"f06aa8bf-04e8-44bb-882f-968cc2ca9281\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c1dcae3e-2521-4bf8-8ad6-e29d309da038\",\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 }, { @@ -194,7 +194,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "36e29952-4ae4-4ecd-a834-f2ccda92331d" + "2874788e-6541-4e2f-a6f0-a7a1f0376b4f" ], "Accept-Language": [ "en-US" @@ -214,13 +214,13 @@ "no-cache" ], "ETag": [ - "W/\"fd9141d5-9936-4431-8b43-d93fd3eeaf73\"" + "W/\"f06aa8bf-04e8-44bb-882f-968cc2ca9281\"" ], "x-ms-request-id": [ - "15d69397-5300-4c06-90db-0a490a2f008b" + "6b9a3715-10cb-46ba-9da6-1e49c2d474a0" ], "x-ms-correlation-request-id": [ - "dd687f4a-20e0-4325-b03b-a189a237a889" + "1c2e8d9c-3e8d-49c3-98e3-54bf43c0ec31" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -233,13 +233,13 @@ "11996" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T165506Z:dd687f4a-20e0-4325-b03b-a189a237a889" + "SOUTHEASTASIA:20190313T130041Z:1c2e8d9c-3e8d-49c3-98e3-54bf43c0ec31" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 16:55:05 GMT" + "Wed, 13 Mar 2019 13:00:41 GMT" ], "Content-Length": [ "678" @@ -251,7 +251,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"pws-sdk-tests-rg-1-vnet\",\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet\",\r\n \"etag\": \"W/\\\"fd9141d5-9936-4431-8b43-d93fd3eeaf73\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ef1968a0-1f02-4cba-a356-41b8a953eab5\",\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\": \"pws-sdk-tests-rg-1-vnet\",\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet\",\r\n \"etag\": \"W/\\\"f06aa8bf-04e8-44bb-882f-968cc2ca9281\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c1dcae3e-2521-4bf8-8ad6-e29d309da038\",\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 }, { @@ -261,7 +261,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3493a905-94ee-40a5-876f-c922e50e7839" + "4a0a5862-e2cd-4473-9760-c17a90323870" ], "Accept-Language": [ "en-US" @@ -281,13 +281,13 @@ "no-cache" ], "ETag": [ - "W/\"fd9141d5-9936-4431-8b43-d93fd3eeaf73\"" + "W/\"f06aa8bf-04e8-44bb-882f-968cc2ca9281\"" ], "x-ms-request-id": [ - "c8f86faf-4051-4826-b3f4-5a22a8e88032" + "49e681a2-4345-4e45-b79f-56784fc48ddc" ], "x-ms-correlation-request-id": [ - "2fcdb561-cab7-4931-a3b8-e86a2294485c" + "cc1d29da-fac2-40c7-8831-7ccf38cbd4c1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -300,13 +300,13 @@ "11995" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T165506Z:2fcdb561-cab7-4931-a3b8-e86a2294485c" + "SOUTHEASTASIA:20190313T130042Z:cc1d29da-fac2-40c7-8831-7ccf38cbd4c1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 16:55:06 GMT" + "Wed, 13 Mar 2019 13:00:42 GMT" ], "Content-Length": [ "678" @@ -318,7 +318,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"pws-sdk-tests-rg-1-vnet\",\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet\",\r\n \"etag\": \"W/\\\"fd9141d5-9936-4431-8b43-d93fd3eeaf73\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ef1968a0-1f02-4cba-a356-41b8a953eab5\",\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\": \"pws-sdk-tests-rg-1-vnet\",\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet\",\r\n \"etag\": \"W/\\\"f06aa8bf-04e8-44bb-882f-968cc2ca9281\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c1dcae3e-2521-4bf8-8ad6-e29d309da038\",\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 }, { @@ -342,13 +342,13 @@ "no-cache" ], "ETag": [ - "W/\"ccd40be6-17ef-4c70-81a2-98010f88e480\"" + "W/\"4b95e619-a4a8-4b12-8b8a-61f6118e9a1e\"" ], "x-ms-request-id": [ - "b2751fa8-1e60-4b19-bf01-e51cf7cde086" + "9b8c1551-232a-4f9c-bbaa-14599413a922" ], "x-ms-correlation-request-id": [ - "ebff949b-b90f-4324-a325-8d65cbcd6d29" + "4230c391-2df1-4433-b8ae-cd11ae1f5ab8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -361,13 +361,13 @@ "11993" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T165511Z:ebff949b-b90f-4324-a325-8d65cbcd6d29" + "SOUTHEASTASIA:20190313T130046Z:4230c391-2df1-4433-b8ae-cd11ae1f5ab8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 16:55:10 GMT" + "Wed, 13 Mar 2019 13:00:46 GMT" ], "Content-Length": [ "2120" @@ -379,7 +379,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"pws-sdk-tests-rg-1-vnet\",\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet\",\r\n \"etag\": \"W/\\\"ccd40be6-17ef-4c70-81a2-98010f88e480\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ef1968a0-1f02-4cba-a356-41b8a953eab5\",\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/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"ccd40be6-17ef-4c70-81a2-98010f88e480\\\"\",\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/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"ccd40be6-17ef-4c70-81a2-98010f88e480\\\"\",\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 },\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\": \"pws-sdk-tests-rg-1-vnet\",\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet\",\r\n \"etag\": \"W/\\\"4b95e619-a4a8-4b12-8b8a-61f6118e9a1e\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c1dcae3e-2521-4bf8-8ad6-e29d309da038\",\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/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"4b95e619-a4a8-4b12-8b8a-61f6118e9a1e\\\"\",\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/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"4b95e619-a4a8-4b12-8b8a-61f6118e9a1e\\\"\",\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 },\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 }, { @@ -389,7 +389,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "88bd3b0a-f087-48c7-87b1-f019a2fc3165" + "4a48e354-fe02-4435-9ed0-957ae1089078" ], "Accept-Language": [ "en-US" @@ -409,13 +409,13 @@ "no-cache" ], "ETag": [ - "W/\"ccd40be6-17ef-4c70-81a2-98010f88e480\"" + "W/\"4b95e619-a4a8-4b12-8b8a-61f6118e9a1e\"" ], "x-ms-request-id": [ - "fe6600db-5ea6-476f-a799-2c28756b4d49" + "39224c9f-c2e3-4752-8eca-3a2bade224c5" ], "x-ms-correlation-request-id": [ - "a8fbe9d7-7c4b-4ebf-a6db-2755c3fe1204" + "b476e0a4-0fa7-4091-8688-35ae54e19430" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -428,13 +428,13 @@ "11992" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T165511Z:a8fbe9d7-7c4b-4ebf-a6db-2755c3fe1204" + "SOUTHEASTASIA:20190313T130047Z:b476e0a4-0fa7-4091-8688-35ae54e19430" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 16:55:11 GMT" + "Wed, 13 Mar 2019 13:00:46 GMT" ], "Content-Length": [ "2120" @@ -446,7 +446,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"pws-sdk-tests-rg-1-vnet\",\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet\",\r\n \"etag\": \"W/\\\"ccd40be6-17ef-4c70-81a2-98010f88e480\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ef1968a0-1f02-4cba-a356-41b8a953eab5\",\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/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"ccd40be6-17ef-4c70-81a2-98010f88e480\\\"\",\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/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"ccd40be6-17ef-4c70-81a2-98010f88e480\\\"\",\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 },\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\": \"pws-sdk-tests-rg-1-vnet\",\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet\",\r\n \"etag\": \"W/\\\"4b95e619-a4a8-4b12-8b8a-61f6118e9a1e\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c1dcae3e-2521-4bf8-8ad6-e29d309da038\",\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/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"4b95e619-a4a8-4b12-8b8a-61f6118e9a1e\\\"\",\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/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"4b95e619-a4a8-4b12-8b8a-61f6118e9a1e\\\"\",\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 },\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 }, { @@ -456,7 +456,7 @@ "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 },\r\n \"location\": \"westus2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "605a83a2-23bd-4fe3-a247-d55bf999cf0b" + "016b5339-9080-4c0e-9ca7-b87d50702b22" ], "Accept-Language": [ "en-US" @@ -485,13 +485,13 @@ "3" ], "x-ms-request-id": [ - "90b9319a-f776-4cd2-aca5-70ff671420e8" + "478a6f1a-c00b-4226-983b-280ba8a01d62" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.Network/locations/westus2/operations/90b9319a-f776-4cd2-aca5-70ff671420e8?api-version=2018-11-01" + "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.Network/locations/westus2/operations/478a6f1a-c00b-4226-983b-280ba8a01d62?api-version=2018-11-01" ], "x-ms-correlation-request-id": [ - "feeadf0c-8f97-4018-b9ce-b59cc6d74bae" + "16224153-a22f-4e8b-ae56-b81f6e1dff73" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -504,13 +504,13 @@ "1199" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T165501Z:feeadf0c-8f97-4018-b9ce-b59cc6d74bae" + "SOUTHEASTASIA:20190313T130036Z:16224153-a22f-4e8b-ae56-b81f6e1dff73" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 16:55:00 GMT" + "Wed, 13 Mar 2019 13:00:35 GMT" ], "Content-Length": [ "677" @@ -522,17 +522,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"pws-sdk-tests-rg-1-vnet\",\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet\",\r\n \"etag\": \"W/\\\"2eb85e0a-53bc-455b-8894-fbf89b244665\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"ef1968a0-1f02-4cba-a356-41b8a953eab5\",\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\": \"pws-sdk-tests-rg-1-vnet\",\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet\",\r\n \"etag\": \"W/\\\"2a17ded2-34c5-4a79-b4a5-557bed916946\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"c1dcae3e-2521-4bf8-8ad6-e29d309da038\",\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/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet?api-version=2018-11-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlR3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3B3cy1zZGstdGVzdHMtcmctMS12bmV0P2FwaS12ZXJzaW9uPTIwMTgtMTEtMDE=", "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 \"resourceNavigationLinks\": [],\r\n \"serviceAssociationLinks\": [],\r\n \"delegations\": [\r\n {\r\n \"properties\": {\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": []\r\n },\r\n \"name\": \"netAppVolumes\"\r\n }\r\n ]\r\n },\r\n \"name\": \"default\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"resourceGuid\": \"ef1968a0-1f02-4cba-a356-41b8a953eab5\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"enableDdosProtection\": false\r\n },\r\n \"etag\": \"W/\\\"fd9141d5-9936-4431-8b43-d93fd3eeaf73\\\"\",\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-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 \"resourceNavigationLinks\": [],\r\n \"serviceAssociationLinks\": [],\r\n \"delegations\": [\r\n {\r\n \"properties\": {\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": []\r\n },\r\n \"name\": \"netAppVolumes\"\r\n }\r\n ]\r\n },\r\n \"name\": \"default\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"resourceGuid\": \"c1dcae3e-2521-4bf8-8ad6-e29d309da038\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"enableDdosProtection\": false\r\n },\r\n \"etag\": \"W/\\\"f06aa8bf-04e8-44bb-882f-968cc2ca9281\\\"\",\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet\",\r\n \"location\": \"westus2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "adf1f9fc-997a-4e85-a7d7-079a2b534d99" + "4bb5e018-bcbf-404e-9ab6-f513ff576f25" ], "Accept-Language": [ "en-US" @@ -561,13 +561,13 @@ "3" ], "x-ms-request-id": [ - "ad9eb561-0680-41cb-a9aa-3ba6e377bee8" + "d3f2fda9-2f29-4c03-b7db-b3f90fbe7762" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.Network/locations/westus2/operations/ad9eb561-0680-41cb-a9aa-3ba6e377bee8?api-version=2018-11-01" + "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.Network/locations/westus2/operations/d3f2fda9-2f29-4c03-b7db-b3f90fbe7762?api-version=2018-11-01" ], "x-ms-correlation-request-id": [ - "fa13e850-d07b-40f2-b46b-0d6c55250d47" + "e691da04-fbba-4b9d-8953-aeb0e5b5a422" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -580,13 +580,13 @@ "1198" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T165507Z:fa13e850-d07b-40f2-b46b-0d6c55250d47" + "SOUTHEASTASIA:20190313T130042Z:e691da04-fbba-4b9d-8953-aeb0e5b5a422" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 16:55:06 GMT" + "Wed, 13 Mar 2019 13:00:42 GMT" ], "Content-Length": [ "2118" @@ -598,12 +598,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"pws-sdk-tests-rg-1-vnet\",\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet\",\r\n \"etag\": \"W/\\\"fa29e054-4f0a-491b-8dcd-6290154f472f\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"ef1968a0-1f02-4cba-a356-41b8a953eab5\",\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/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"fa29e054-4f0a-491b-8dcd-6290154f472f\\\"\",\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/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"fa29e054-4f0a-491b-8dcd-6290154f472f\\\"\",\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 },\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\": \"pws-sdk-tests-rg-1-vnet\",\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet\",\r\n \"etag\": \"W/\\\"15eabee4-a7cc-43fc-9287-05a41f76057f\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"c1dcae3e-2521-4bf8-8ad6-e29d309da038\",\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/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"15eabee4-a7cc-43fc-9287-05a41f76057f\\\"\",\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/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"15eabee4-a7cc-43fc-9287-05a41f76057f\\\"\",\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 },\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/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.Network/locations/westus2/operations/90b9319a-f776-4cd2-aca5-70ff671420e8?api-version=2018-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzkwYjkzMTlhLWY3NzYtNGNkMi1hY2E1LTcwZmY2NzE0MjBlOD9hcGktdmVyc2lvbj0yMDE4LTExLTAx", + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.Network/locations/westus2/operations/478a6f1a-c00b-4226-983b-280ba8a01d62?api-version=2018-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzQ3OGE2ZjFhLWMwMGItNDIyNi05ODNiLTI4MGJhOGEwMWQ2Mj9hcGktdmVyc2lvbj0yMDE4LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -622,10 +622,10 @@ "no-cache" ], "x-ms-request-id": [ - "3c0f4136-f117-4d12-9d29-0cf75a4bd5d4" + "99d157e7-15b8-4b57-904a-1280dc17826e" ], "x-ms-correlation-request-id": [ - "aee52fbc-1eb7-4f3b-b257-255ab8295ad7" + "55f1f759-dca8-4b99-b12b-e80a4180c5a9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -638,13 +638,13 @@ "11998" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T165505Z:aee52fbc-1eb7-4f3b-b257-255ab8295ad7" + "SOUTHEASTASIA:20190313T130040Z:55f1f759-dca8-4b99-b12b-e80a4180c5a9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 16:55:04 GMT" + "Wed, 13 Mar 2019 13:00:39 GMT" ], "Content-Length": [ "29" @@ -660,8 +660,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.Network/locations/westus2/operations/ad9eb561-0680-41cb-a9aa-3ba6e377bee8?api-version=2018-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2FkOWViNTYxLTA2ODAtNDFjYi1hOWFhLTNiYTZlMzc3YmVlOD9hcGktdmVyc2lvbj0yMDE4LTExLTAx", + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.Network/locations/westus2/operations/d3f2fda9-2f29-4c03-b7db-b3f90fbe7762?api-version=2018-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2QzZjJmZGE5LTJmMjktNGMwMy1iN2RiLWIzZjkwZmJlNzc2Mj9hcGktdmVyc2lvbj0yMDE4LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -680,10 +680,10 @@ "no-cache" ], "x-ms-request-id": [ - "b767f194-88fa-42ec-a7f8-4327aa49ebd6" + "141c6a27-68ee-4aa8-a346-e55bee30bfd3" ], "x-ms-correlation-request-id": [ - "480f3550-7a2f-462f-ae20-301182d73f9b" + "6fe08a5b-68e8-493b-ae97-c43c5139d976" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -696,13 +696,13 @@ "11994" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T165510Z:480f3550-7a2f-462f-ae20-301182d73f9b" + "SOUTHEASTASIA:20190313T130046Z:6fe08a5b-68e8-493b-ae97-c43c5139d976" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 16:55:10 GMT" + "Wed, 13 Mar 2019 13:00:46 GMT" ], "Content-Length": [ "29" @@ -724,7 +724,7 @@ "RequestBody": "{\r\n \"location\": \"westus2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "19e3135e-865e-4816-8b55-72e12bcb6bcc" + "fdfe7029-27ef-4afc-895e-01851e2d574d" ], "Accept-Language": [ "en-US" @@ -750,13 +750,13 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2019-02-27T16%3A55%3A18.214652Z'\"" + "W/\"datetime'2019-03-13T13%3A00%3A51.4878746Z'\"" ], "x-ms-request-id": [ - "ae43f54c-815a-470d-bed6-4caa257c891f" + "eaa0ab87-0151-4d6a-9ace-d86ed8628331" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/2890f965-9d7c-4d53-a26d-41d8c2aa837d?api-version=2017-08-15" + "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/c08cee3c-1273-42f5-b5a6-1aeaeb144400?api-version=2017-08-15" ], "Server": [ "Microsoft-IIS/10.0" @@ -765,13 +765,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1197" ], "x-ms-correlation-request-id": [ - "929d305c-db49-4bc6-9c36-16f02db25aef" + "81d77855-c865-4873-97a4-db9003a08e9c" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T165531Z:929d305c-db49-4bc6-9c36-16f02db25aef" + "SOUTHEASTASIA:20190313T130052Z:81d77855-c865-4873-97a4-db9003a08e9c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -780,10 +780,10 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 16:55:30 GMT" + "Wed, 13 Mar 2019 13:00:51 GMT" ], "Content-Length": [ - "361" + "362" ], "Content-Type": [ "application/json; charset=utf-8" @@ -792,12 +792,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-2\",\r\n \"name\": \"pws-sdk-acc-2\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2019-02-27T16%3A55%3A18.214652Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"name\": \"pws-sdk-acc-2\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-2\",\r\n \"name\": \"pws-sdk-acc-2\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2019-03-13T13%3A00%3A51.4878746Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"name\": \"pws-sdk-acc-2\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/2890f965-9d7c-4d53-a26d-41d8c2aa837d?api-version=2017-08-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvMjg5MGY5NjUtOWQ3Yy00ZDUzLWEyNmQtNDFkOGMyYWE4MzdkP2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/c08cee3c-1273-42f5-b5a6-1aeaeb144400?api-version=2017-08-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvYzA4Y2VlM2MtMTI3My00MmY1LWI1YTYtMWFlYWViMTQ0NDAwP2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -816,7 +816,7 @@ "no-cache" ], "x-ms-request-id": [ - "e3fd6680-e002-4da9-894a-81e24c23a5f6" + "eeb5047a-1a93-4f4e-9695-d0327b138724" ], "Server": [ "Microsoft-IIS/10.0" @@ -825,13 +825,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11986" ], "x-ms-correlation-request-id": [ - "9a4e593f-80ca-4edc-8462-9ca2b734b1c5" + "96f7ccec-88fe-482a-9dda-308e7855d247" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T165601Z:9a4e593f-80ca-4edc-8462-9ca2b734b1c5" + "SOUTHEASTASIA:20190313T130122Z:96f7ccec-88fe-482a-9dda-308e7855d247" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -840,7 +840,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 16:56:00 GMT" + "Wed, 13 Mar 2019 13:01:21 GMT" ], "Content-Length": [ "508" @@ -852,7 +852,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/2890f965-9d7c-4d53-a26d-41d8c2aa837d\",\r\n \"name\": \"2890f965-9d7c-4d53-a26d-41d8c2aa837d\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-02-27T16:55:18.1726511Z\",\r\n \"endTime\": \"2019-02-27T16:55:18.4580464Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-2\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/c08cee3c-1273-42f5-b5a6-1aeaeb144400\",\r\n \"name\": \"c08cee3c-1273-42f5-b5a6-1aeaeb144400\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-03-13T13:00:51.3132313Z\",\r\n \"endTime\": \"2019-03-13T13:00:51.7350688Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-2\"\r\n }\r\n}", "StatusCode": 200 }, { @@ -876,10 +876,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2019-02-27T16%3A55%3A18.4848425Z'\"" + "W/\"datetime'2019-03-13T13%3A00%3A51.7810864Z'\"" ], "x-ms-request-id": [ - "7f247ef0-e8a1-4ae1-a073-5a501e11927b" + "bbc52f29-4c72-4d78-a814-50f4ade615bf" ], "Server": [ "Microsoft-IIS/10.0" @@ -888,13 +888,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11985" ], "x-ms-correlation-request-id": [ - "21373720-04bb-4d81-a686-cc4e54960fa6" + "7541a690-4d1a-434c-bf6a-df3c86dbe547" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T165601Z:21373720-04bb-4d81-a686-cc4e54960fa6" + "SOUTHEASTASIA:20190313T130123Z:7541a690-4d1a-434c-bf6a-df3c86dbe547" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -903,7 +903,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 16:56:01 GMT" + "Wed, 13 Mar 2019 13:01:22 GMT" ], "Content-Length": [ "363" @@ -915,7 +915,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-2\",\r\n \"name\": \"pws-sdk-acc-2\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2019-02-27T16%3A55%3A18.4848425Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"name\": \"pws-sdk-acc-2\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-2\",\r\n \"name\": \"pws-sdk-acc-2\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2019-03-13T13%3A00%3A51.7810864Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"name\": \"pws-sdk-acc-2\"\r\n }\r\n}", "StatusCode": 200 }, { @@ -925,7 +925,7 @@ "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": [ - "5b1d1e1e-8e88-4663-9708-771cc4add079" + "cee0f7fe-ae85-41f5-8e8f-443e9609e58d" ], "Accept-Language": [ "en-US" @@ -951,13 +951,13 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2019-02-27T16%3A55%3A51.8915359Z'\"" + "W/\"datetime'2019-03-13T13%3A01%3A24.585734Z'\"" ], "x-ms-request-id": [ - "97106590-28ed-492c-8f8e-423e3ea055d0" + "b8f3ace2-1ebb-4a86-ba21-3c9a5ad207b9" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/c85c4b76-af31-426b-a8f5-d3c37bfb8f5a?api-version=2017-08-15" + "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/30e67821-7a7b-4648-950f-726fe13fd272?api-version=2017-08-15" ], "Server": [ "Microsoft-IIS/10.0" @@ -966,13 +966,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1196" ], "x-ms-correlation-request-id": [ - "0f5685a1-3410-4ab6-9653-192d89515da1" + "4f24c6e4-b40d-44a8-b122-a18b25137d1b" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T165604Z:0f5685a1-3410-4ab6-9653-192d89515da1" + "SOUTHEASTASIA:20190313T130125Z:4f24c6e4-b40d-44a8-b122-a18b25137d1b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -981,10 +981,10 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 16:56:04 GMT" + "Wed, 13 Mar 2019 13:01:24 GMT" ], "Content-Length": [ - "443" + "442" ], "Content-Type": [ "application/json; charset=utf-8" @@ -993,12 +993,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-2/capacityPools/pws-sdk-pool-1\",\r\n \"name\": \"pws-sdk-acc-2/pws-sdk-pool-1\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2019-02-27T16%3A55%3A51.8915359Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"size\": 4398046511104,\r\n \"serviceLevel\": \"Premium\",\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-2/capacityPools/pws-sdk-pool-1\",\r\n \"name\": \"pws-sdk-acc-2/pws-sdk-pool-1\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2019-03-13T13%3A01%3A24.585734Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"size\": 4398046511104,\r\n \"serviceLevel\": \"Premium\",\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/c85c4b76-af31-426b-a8f5-d3c37bfb8f5a?api-version=2017-08-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvYzg1YzRiNzYtYWYzMS00MjZiLWE4ZjUtZDNjMzdiZmI4ZjVhP2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/30e67821-7a7b-4648-950f-726fe13fd272?api-version=2017-08-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvMzBlNjc4MjEtN2E3Yi00NjQ4LTk1MGYtNzI2ZmUxM2ZkMjcyP2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1017,10 +1017,7 @@ "no-cache" ], "x-ms-request-id": [ - "46e740a7-4511-4f7e-8ef2-092172e5acfc" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "fcdc8f21-8f8b-4889-a502-d63521a2384d" ], "Server": [ "Microsoft-IIS/10.0" @@ -1028,11 +1025,14 @@ "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], "x-ms-correlation-request-id": [ - "edb7896c-39d5-4091-9c40-b2288307af1a" + "c580618d-e103-461a-b398-fd19930fc669" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T165635Z:edb7896c-39d5-4091-9c40-b2288307af1a" + "SOUTHEASTASIA:20190313T130155Z:c580618d-e103-461a-b398-fd19930fc669" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1041,10 +1041,10 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 16:56:34 GMT" + "Wed, 13 Mar 2019 13:01:55 GMT" ], "Content-Length": [ - "537" + "536" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1053,7 +1053,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/c85c4b76-af31-426b-a8f5-d3c37bfb8f5a\",\r\n \"name\": \"c85c4b76-af31-426b-a8f5-d3c37bfb8f5a\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-02-27T16:55:51.8570941Z\",\r\n \"endTime\": \"2019-02-27T16:56:04.7342504Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-2/capacityPools/pws-sdk-pool-1\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/30e67821-7a7b-4648-950f-726fe13fd272\",\r\n \"name\": \"30e67821-7a7b-4648-950f-726fe13fd272\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-03-13T13:01:24.520854Z\",\r\n \"endTime\": \"2019-03-13T13:01:25.0521246Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-2/capacityPools/pws-sdk-pool-1\"\r\n }\r\n}", "StatusCode": 200 }, { @@ -1077,10 +1077,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2019-02-27T16%3A56%3A04.7696648Z'\"" + "W/\"datetime'2019-03-13T13%3A01%3A25.1031074Z'\"" ], "x-ms-request-id": [ - "34e0bb4e-a6eb-4414-8746-09708f25a1e0" + "c0880f35-1c40-45c4-a7a1-253aaa84b84a" ], "Server": [ "Microsoft-IIS/10.0" @@ -1089,13 +1089,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11983" ], "x-ms-correlation-request-id": [ - "bce35e0f-cb64-43e9-abc3-b8c9f701177f" + "cb56f0cc-d56a-4eff-9e88-0f487a7a60ef" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T165637Z:bce35e0f-cb64-43e9-abc3-b8c9f701177f" + "SOUTHEASTASIA:20190313T130156Z:cb56f0cc-d56a-4eff-9e88-0f487a7a60ef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1104,7 +1104,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 16:56:37 GMT" + "Wed, 13 Mar 2019 13:01:55 GMT" ], "Content-Length": [ "530" @@ -1116,7 +1116,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-2/capacityPools/pws-sdk-pool-1\",\r\n \"name\": \"pws-sdk-acc-2/pws-sdk-pool-1\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2019-02-27T16%3A56%3A04.7696648Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"poolId\": \"8b18241a-4658-20d0-0d1f-3c1ae8ae759c\",\r\n \"name\": \"pws-sdk-acc-2/pws-sdk-pool-1\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-2/capacityPools/pws-sdk-pool-1\",\r\n \"name\": \"pws-sdk-acc-2/pws-sdk-pool-1\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2019-03-13T13%3A01%3A25.1031074Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"poolId\": \"03d4a59e-f2e8-90de-36ec-368e44cb07ab\",\r\n \"name\": \"pws-sdk-acc-2/pws-sdk-pool-1\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { @@ -1126,7 +1126,7 @@ "RequestBody": "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"creationToken\": \"pws-sdk-vol-1\",\r\n \"serviceLevel\": \"Premium\",\r\n \"usageThreshold\": 107374182400,\r\n \"subnetId\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet/subnets/default\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "ef7e8799-6804-4781-8f41-bc5b11d9c9ff" + "ffc27b2b-4f5f-4801-9f7c-67f354565983" ], "Accept-Language": [ "en-US" @@ -1152,13 +1152,13 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2019-02-27T16%3A56%3A27.5658329Z'\"" + "W/\"datetime'2019-03-13T13%3A01%3A58.291038Z'\"" ], "x-ms-request-id": [ - "4c1126db-735f-4360-9440-584b6b37ed8a" + "b7d03917-b065-4714-a2b3-83e44c4a6be5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/c68dd5c6-870f-4c53-ae61-e3afae7fb48f?api-version=2017-08-15" + "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/2cd85595-89b7-47f2-8b96-b51111222249?api-version=2017-08-15" ], "Server": [ "Microsoft-IIS/10.0" @@ -1167,13 +1167,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1195" ], "x-ms-correlation-request-id": [ - "45b9c9dd-431e-493e-90e5-11cf87a34490" + "744fc823-3ded-45e1-a59f-d27fb9f2602e" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T165640Z:45b9c9dd-431e-493e-90e5-11cf87a34490" + "SOUTHEASTASIA:20190313T130159Z:744fc823-3ded-45e1-a59f-d27fb9f2602e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1182,10 +1182,10 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 16:56:39 GMT" + "Wed, 13 Mar 2019 13:01:58 GMT" ], "Content-Length": [ - "711" + "710" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1194,12 +1194,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-2/capacityPools/pws-sdk-pool-1/volumes/pws-sdk-vol-1\",\r\n \"name\": \"pws-sdk-acc-2/pws-sdk-pool-1/pws-sdk-vol-1\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2019-02-27T16%3A56%3A27.5658329Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"creationToken\": \"pws-sdk-vol-1\",\r\n \"serviceLevel\": \"Premium\",\r\n \"usageThreshold\": 107374182400,\r\n \"subnetId\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet/subnets/default\",\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-2/capacityPools/pws-sdk-pool-1/volumes/pws-sdk-vol-1\",\r\n \"name\": \"pws-sdk-acc-2/pws-sdk-pool-1/pws-sdk-vol-1\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2019-03-13T13%3A01%3A58.291038Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"creationToken\": \"pws-sdk-vol-1\",\r\n \"serviceLevel\": \"Premium\",\r\n \"usageThreshold\": 107374182400,\r\n \"subnetId\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet/subnets/default\",\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/c68dd5c6-870f-4c53-ae61-e3afae7fb48f?api-version=2017-08-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvYzY4ZGQ1YzYtODcwZi00YzUzLWFlNjEtZTNhZmFlN2ZiNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/2cd85595-89b7-47f2-8b96-b51111222249?api-version=2017-08-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvMmNkODU1OTUtODliNy00N2YyLThiOTYtYjUxMTExMjIyMjQ5P2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1218,7 +1218,10 @@ "no-cache" ], "x-ms-request-id": [ - "f8641204-29da-4af8-8efe-be5447de013e" + "a160b524-5bce-4f38-9162-3c3de4a94609" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" ], "Server": [ "Microsoft-IIS/10.0" @@ -1226,14 +1229,11 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" - ], "x-ms-correlation-request-id": [ - "d6dfbee7-59a9-45c9-9e9e-cfb4d75ceea9" + "40b6867f-7516-4cab-a8e0-02f453f6d47e" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T165710Z:d6dfbee7-59a9-45c9-9e9e-cfb4d75ceea9" + "SOUTHEASTASIA:20190313T130229Z:40b6867f-7516-4cab-a8e0-02f453f6d47e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1242,7 +1242,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 16:57:10 GMT" + "Wed, 13 Mar 2019 13:02:28 GMT" ], "Content-Length": [ "548" @@ -1254,12 +1254,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/c68dd5c6-870f-4c53-ae61-e3afae7fb48f\",\r\n \"name\": \"c68dd5c6-870f-4c53-ae61-e3afae7fb48f\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2019-02-27T16:56:27.5363208Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-2/capacityPools/pws-sdk-pool-1/volumes/pws-sdk-vol-1\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/2cd85595-89b7-47f2-8b96-b51111222249\",\r\n \"name\": \"2cd85595-89b7-47f2-8b96-b51111222249\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2019-03-13T13:01:58.2378693Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-2/capacityPools/pws-sdk-pool-1/volumes/pws-sdk-vol-1\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/c68dd5c6-870f-4c53-ae61-e3afae7fb48f?api-version=2017-08-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvYzY4ZGQ1YzYtODcwZi00YzUzLWFlNjEtZTNhZmFlN2ZiNDhmP2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/2cd85595-89b7-47f2-8b96-b51111222249?api-version=2017-08-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvMmNkODU1OTUtODliNy00N2YyLThiOTYtYjUxMTExMjIyMjQ5P2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1278,10 +1278,7 @@ "no-cache" ], "x-ms-request-id": [ - "7a6f132f-51c5-4bc8-b056-8286c371fabc" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "b8c7902d-3d4a-46b9-8e23-66a231b65dbb" ], "Server": [ "Microsoft-IIS/10.0" @@ -1289,11 +1286,14 @@ "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" + ], "x-ms-correlation-request-id": [ - "6253454e-3227-4ba4-ac86-b9679e79917c" + "e69f0f7b-13d2-4ad5-922c-5e4885a0f929" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T165741Z:6253454e-3227-4ba4-ac86-b9679e79917c" + "SOUTHEASTASIA:20190313T130300Z:e69f0f7b-13d2-4ad5-922c-5e4885a0f929" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1302,10 +1302,10 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 16:57:40 GMT" + "Wed, 13 Mar 2019 13:03:00 GMT" ], "Content-Length": [ - "559" + "558" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1314,7 +1314,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/c68dd5c6-870f-4c53-ae61-e3afae7fb48f\",\r\n \"name\": \"c68dd5c6-870f-4c53-ae61-e3afae7fb48f\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-02-27T16:56:27.5363208Z\",\r\n \"endTime\": \"2019-02-27T16:57:02.6575288Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-2/capacityPools/pws-sdk-pool-1/volumes/pws-sdk-vol-1\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/2cd85595-89b7-47f2-8b96-b51111222249\",\r\n \"name\": \"2cd85595-89b7-47f2-8b96-b51111222249\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-03-13T13:01:58.2378693Z\",\r\n \"endTime\": \"2019-03-13T13:02:32.843481Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-2/capacityPools/pws-sdk-pool-1/volumes/pws-sdk-vol-1\"\r\n }\r\n}", "StatusCode": 200 }, { @@ -1338,10 +1338,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2019-02-27T16%3A57%3A02.6727315Z'\"" + "W/\"datetime'2019-03-13T13%3A02%3A32.8829059Z'\"" ], "x-ms-request-id": [ - "c09d02e3-63e2-4ba3-8b25-440bc6c95999" + "55ce8266-4b1f-488a-ba6d-266de27ff2e1" ], "Server": [ "Microsoft-IIS/10.0" @@ -1350,13 +1350,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11980" ], "x-ms-correlation-request-id": [ - "9c2e8aa1-e4a1-4811-a5c1-3ea8f2716452" + "3dcc5fed-1bc6-44c9-beb6-7cca13131256" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T165742Z:9c2e8aa1-e4a1-4811-a5c1-3ea8f2716452" + "SOUTHEASTASIA:20190313T130301Z:3dcc5fed-1bc6-44c9-beb6-7cca13131256" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1365,7 +1365,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 16:57:41 GMT" + "Wed, 13 Mar 2019 13:03:00 GMT" ], "Content-Length": [ "1398" @@ -1377,17 +1377,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-2/capacityPools/pws-sdk-pool-1/volumes/pws-sdk-vol-1\",\r\n \"name\": \"pws-sdk-acc-2/pws-sdk-pool-1/pws-sdk-vol-1\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2019-02-27T16%3A57%3A02.6727315Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"7cb010d1-ad34-82f8-fd12-bc4a85745e50\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"pws-sdk-vol-1\",\r\n \"ownerId\": \"38ab86f1-9d30-413b-8fc0-d31ad85fa6a1\",\r\n \"usageThreshold\": 107374182400,\r\n \"usedBytes\": 0,\r\n \"snapshotPolicy\": {\r\n \"enabled\": false\r\n },\r\n \"exportPolicy\": {\r\n \"rules\": [\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 \"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_38ab86f19d30413b8fc0d31ad85fa6a1_a93d3210\",\r\n \"subnetId\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet/subnets/default\",\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"Succeeded\",\r\n \"mountTargetId\": \"02ce0e01-5322-726e-1740-e7dde7be834a\",\r\n \"fileSystemId\": \"7cb010d1-ad34-82f8-fd12-bc4a85745e50\",\r\n \"startIp\": \"10.0.1.4\",\r\n \"endIp\": \"10.0.1.4\",\r\n \"gateway\": \"10.0.1.1\",\r\n \"netmask\": \"255.255.255.0\",\r\n \"ipAddress\": \"10.0.1.4\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-2/capacityPools/pws-sdk-pool-1/volumes/pws-sdk-vol-1\",\r\n \"name\": \"pws-sdk-acc-2/pws-sdk-pool-1/pws-sdk-vol-1\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2019-03-13T13%3A02%3A32.8829059Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"7d911a97-b3bf-b2b4-0803-8427481ea1b2\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"pws-sdk-vol-1\",\r\n \"ownerId\": \"38ab86f1-9d30-413b-8fc0-d31ad85fa6a1\",\r\n \"usageThreshold\": 107374182400,\r\n \"usedBytes\": 0,\r\n \"snapshotPolicy\": {\r\n \"enabled\": false\r\n },\r\n \"exportPolicy\": {\r\n \"rules\": [\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 \"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_38ab86f19d30413b8fc0d31ad85fa6a1_ff3e0781\",\r\n \"subnetId\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet/subnets/default\",\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"Succeeded\",\r\n \"mountTargetId\": \"e3505088-372d-442c-974e-0a4fd64e2561\",\r\n \"fileSystemId\": \"7d911a97-b3bf-b2b4-0803-8427481ea1b2\",\r\n \"startIp\": \"10.0.1.4\",\r\n \"endIp\": \"10.0.1.4\",\r\n \"gateway\": \"10.0.1.1\",\r\n \"netmask\": \"255.255.255.0\",\r\n \"ipAddress\": \"10.0.1.4\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-2/capacityPools/pws-sdk-pool-1/volumes/pws-sdk-vol-1/snapshots/pws-sdk-snapshot-1?api-version=2017-08-15", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlR3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wd3Mtc2RrLWFjYy0yL2NhcGFjaXR5UG9vbHMvcHdzLXNkay1wb29sLTEvdm9sdW1lcy9wd3Mtc2RrLXZvbC0xL3NuYXBzaG90cy9wd3Mtc2RrLXNuYXBzaG90LTE/YXBpLXZlcnNpb249MjAxNy0wOC0xNQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"fileSystemId\": \"7cb010d1-ad34-82f8-fd12-bc4a85745e50\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"fileSystemId\": \"7d911a97-b3bf-b2b4-0803-8427481ea1b2\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "40c0a18d-e6b0-411c-b27f-b4c6de9c98ce" + "388ef276-0993-4e2a-bfe3-c32fc8254a08" ], "Accept-Language": [ "en-US" @@ -1413,7 +1413,7 @@ "no-cache" ], "x-ms-request-id": [ - "dd7410c9-f129-4605-bdc5-0796d4a72df3" + "4498c614-acab-4ae4-8f1f-321ee102ac5a" ], "Server": [ "Microsoft-IIS/10.0" @@ -1422,13 +1422,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1194" ], "x-ms-correlation-request-id": [ - "e3e1e098-7df0-4bf7-908e-af473354c11e" + "124e3519-c6cd-4952-8048-da57a4fffdc4" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T165748Z:e3e1e098-7df0-4bf7-908e-af473354c11e" + "SOUTHEASTASIA:20190313T130307Z:124e3519-c6cd-4952-8048-da57a4fffdc4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1437,7 +1437,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 16:57:47 GMT" + "Wed, 13 Mar 2019 13:03:06 GMT" ], "Content-Length": [ "639" @@ -1449,17 +1449,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-2/capacityPools/pws-sdk-pool-1/volumes/pws-sdk-vol-1/snapshots/pws-sdk-snapshot-1\",\r\n \"name\": \"pws-sdk-acc-2/pws-sdk-pool-1/pws-sdk-vol-1/pws-sdk-snapshot-1\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots\",\r\n \"etag\": \"2/27/2019 4:57:35 PM\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"snapshotId\": \"00cec78c-c623-ff59-7211-081513b89b45\",\r\n \"fileSystemId\": \"7cb010d1-ad34-82f8-fd12-bc4a85745e50\",\r\n \"name\": \"pws-sdk-snapshot-1\",\r\n \"created\": \"2019-02-27T16:57:33Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-2/capacityPools/pws-sdk-pool-1/volumes/pws-sdk-vol-1/snapshots/pws-sdk-snapshot-1\",\r\n \"name\": \"pws-sdk-acc-2/pws-sdk-pool-1/pws-sdk-vol-1/pws-sdk-snapshot-1\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots\",\r\n \"etag\": \"3/13/2019 1:03:06 PM\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"snapshotId\": \"2f9e6d35-fab3-843f-30a5-e3217e4f4198\",\r\n \"fileSystemId\": \"7d911a97-b3bf-b2b4-0803-8427481ea1b2\",\r\n \"name\": \"pws-sdk-snapshot-1\",\r\n \"created\": \"2019-03-13T13:03:04Z\"\r\n }\r\n}", "StatusCode": 201 }, { "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-2/capacityPools/pws-sdk-pool-1/volumes/pws-sdk-vol-1/snapshots/pws-sdk-snapshot-2?api-version=2017-08-15", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlR3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wd3Mtc2RrLWFjYy0yL2NhcGFjaXR5UG9vbHMvcHdzLXNkay1wb29sLTEvdm9sdW1lcy9wd3Mtc2RrLXZvbC0xL3NuYXBzaG90cy9wd3Mtc2RrLXNuYXBzaG90LTI/YXBpLXZlcnNpb249MjAxNy0wOC0xNQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"fileSystemId\": \"7cb010d1-ad34-82f8-fd12-bc4a85745e50\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"fileSystemId\": \"7d911a97-b3bf-b2b4-0803-8427481ea1b2\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "250b12a8-2cc3-4682-9b6a-bc0d862e5934" + "d0a00c11-42a2-4877-bf42-f781287fa17b" ], "Accept-Language": [ "en-US" @@ -1485,7 +1485,7 @@ "no-cache" ], "x-ms-request-id": [ - "5daf6e9c-95b3-4a9e-a9e2-4ea9aab29b36" + "139d11fe-fa71-42e4-97f0-acf7385bfff9" ], "Server": [ "Microsoft-IIS/10.0" @@ -1494,13 +1494,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1193" ], "x-ms-correlation-request-id": [ - "0f44469f-4e3a-416d-8b63-a688e4a67225" + "fb9e1c37-b32f-4c77-be86-83074563cca5" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T165753Z:0f44469f-4e3a-416d-8b63-a688e4a67225" + "SOUTHEASTASIA:20190313T130312Z:fb9e1c37-b32f-4c77-be86-83074563cca5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1509,7 +1509,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 16:57:53 GMT" + "Wed, 13 Mar 2019 13:03:11 GMT" ], "Content-Length": [ "639" @@ -1521,7 +1521,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-2/capacityPools/pws-sdk-pool-1/volumes/pws-sdk-vol-1/snapshots/pws-sdk-snapshot-2\",\r\n \"name\": \"pws-sdk-acc-2/pws-sdk-pool-1/pws-sdk-vol-1/pws-sdk-snapshot-2\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots\",\r\n \"etag\": \"2/27/2019 4:57:41 PM\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"snapshotId\": \"7771eee2-743a-3e0e-a940-69b741fb8d24\",\r\n \"fileSystemId\": \"7cb010d1-ad34-82f8-fd12-bc4a85745e50\",\r\n \"name\": \"pws-sdk-snapshot-2\",\r\n \"created\": \"2019-02-27T16:57:38Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-2/capacityPools/pws-sdk-pool-1/volumes/pws-sdk-vol-1/snapshots/pws-sdk-snapshot-2\",\r\n \"name\": \"pws-sdk-acc-2/pws-sdk-pool-1/pws-sdk-vol-1/pws-sdk-snapshot-2\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots\",\r\n \"etag\": \"3/13/2019 1:03:11 PM\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"snapshotId\": \"105999d9-d492-1c75-06b3-990e7d8c3b8e\",\r\n \"fileSystemId\": \"7d911a97-b3bf-b2b4-0803-8427481ea1b2\",\r\n \"name\": \"pws-sdk-snapshot-2\",\r\n \"created\": \"2019-03-13T13:03:09Z\"\r\n }\r\n}", "StatusCode": 201 }, { @@ -1531,7 +1531,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d5ecf7af-67b4-41ec-af51-ffd7929359f7" + "5e26b145-45dd-4f39-ac2d-2363140a94a6" ], "Accept-Language": [ "en-US" @@ -1551,7 +1551,7 @@ "no-cache" ], "x-ms-request-id": [ - "78822c40-2ef5-4193-87f4-5b37b814c3c4" + "d79964e5-0ba4-4754-bdb8-ee8643314122" ], "Server": [ "Microsoft-IIS/10.0" @@ -1560,13 +1560,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11979" ], "x-ms-correlation-request-id": [ - "d66cdd94-19fa-4ae9-8ac8-d7d42336d5a1" + "e1997075-69e9-489d-a31c-c5e79bc00c57" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T165754Z:d66cdd94-19fa-4ae9-8ac8-d7d42336d5a1" + "SOUTHEASTASIA:20190313T130312Z:e1997075-69e9-489d-a31c-c5e79bc00c57" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1575,7 +1575,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 16:57:54 GMT" + "Wed, 13 Mar 2019 13:03:12 GMT" ], "Content-Length": [ "1231" @@ -1587,7 +1587,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-2/capacityPools/pws-sdk-pool-1/volumes/pws-sdk-vol-1/snapshots/pws-sdk-snapshot-1\",\r\n \"name\": \"pws-sdk-acc-2/pws-sdk-pool-1/pws-sdk-vol-1/pws-sdk-snapshot-1\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"snapshotId\": \"00cec78c-c623-ff59-7211-081513b89b45\",\r\n \"fileSystemId\": \"7cb010d1-ad34-82f8-fd12-bc4a85745e50\",\r\n \"name\": \"pws-sdk-snapshot-1\",\r\n \"created\": \"2019-02-27T16:57:33Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-2/capacityPools/pws-sdk-pool-1/volumes/pws-sdk-vol-1/snapshots/pws-sdk-snapshot-2\",\r\n \"name\": \"pws-sdk-acc-2/pws-sdk-pool-1/pws-sdk-vol-1/pws-sdk-snapshot-2\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"snapshotId\": \"7771eee2-743a-3e0e-a940-69b741fb8d24\",\r\n \"fileSystemId\": \"7cb010d1-ad34-82f8-fd12-bc4a85745e50\",\r\n \"name\": \"pws-sdk-snapshot-2\",\r\n \"created\": \"2019-02-27T16:57:38Z\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-2/capacityPools/pws-sdk-pool-1/volumes/pws-sdk-vol-1/snapshots/pws-sdk-snapshot-1\",\r\n \"name\": \"pws-sdk-acc-2/pws-sdk-pool-1/pws-sdk-vol-1/pws-sdk-snapshot-1\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"snapshotId\": \"2f9e6d35-fab3-843f-30a5-e3217e4f4198\",\r\n \"fileSystemId\": \"7d911a97-b3bf-b2b4-0803-8427481ea1b2\",\r\n \"name\": \"pws-sdk-snapshot-1\",\r\n \"created\": \"2019-03-13T13:03:04Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-2/capacityPools/pws-sdk-pool-1/volumes/pws-sdk-vol-1/snapshots/pws-sdk-snapshot-2\",\r\n \"name\": \"pws-sdk-acc-2/pws-sdk-pool-1/pws-sdk-vol-1/pws-sdk-snapshot-2\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"snapshotId\": \"105999d9-d492-1c75-06b3-990e7d8c3b8e\",\r\n \"fileSystemId\": \"7d911a97-b3bf-b2b4-0803-8427481ea1b2\",\r\n \"name\": \"pws-sdk-snapshot-2\",\r\n \"created\": \"2019-03-13T13:03:09Z\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -1597,7 +1597,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "232740cb-80ef-4aef-a203-f9e61aac0c28" + "aa421560-a9eb-4b49-85bd-dcf01e622bcf" ], "Accept-Language": [ "en-US" @@ -1617,7 +1617,7 @@ "no-cache" ], "x-ms-request-id": [ - "d4f2e6ee-2779-498e-ab06-3fb659142c95" + "1c44bc55-5587-4537-860e-bae8aaaf3539" ], "Server": [ "Microsoft-IIS/10.0" @@ -1626,13 +1626,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11976" ], "x-ms-correlation-request-id": [ - "dddda0b4-6258-45b4-b5f3-892349c4bde2" + "781abbc9-1e05-4f5d-8b41-fdc81db1ee5b" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T165806Z:dddda0b4-6258-45b4-b5f3-892349c4bde2" + "SOUTHEASTASIA:20190313T130324Z:781abbc9-1e05-4f5d-8b41-fdc81db1ee5b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1641,7 +1641,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 16:58:05 GMT" + "Wed, 13 Mar 2019 13:03:23 GMT" ], "Content-Length": [ "12" @@ -1663,7 +1663,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "01ba23da-3e8e-40cf-884b-9baef76b0d1b" + "5aa502e3-3128-488d-b1f7-4d0e3b29bea0" ], "Accept-Language": [ "en-US" @@ -1683,7 +1683,7 @@ "no-cache" ], "x-ms-request-id": [ - "ccebb74f-d43c-4326-a9eb-b5f791f9d256" + "de3bc276-7f03-4832-a8b5-407e89784405" ], "Server": [ "Microsoft-IIS/10.0" @@ -1692,13 +1692,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11978" ], "x-ms-correlation-request-id": [ - "62aff2bb-774e-4044-be09-03ae0e988165" + "d19e23d4-5af4-4fa0-a2cc-54ca610ee20b" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T165754Z:62aff2bb-774e-4044-be09-03ae0e988165" + "SOUTHEASTASIA:20190313T130313Z:d19e23d4-5af4-4fa0-a2cc-54ca610ee20b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1707,7 +1707,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 16:57:54 GMT" + "Wed, 13 Mar 2019 13:03:12 GMT" ], "Content-Length": [ "609" @@ -1719,7 +1719,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-2/capacityPools/pws-sdk-pool-1/volumes/pws-sdk-vol-1/snapshots/pws-sdk-snapshot-1\",\r\n \"name\": \"pws-sdk-acc-2/pws-sdk-pool-1/pws-sdk-vol-1/pws-sdk-snapshot-1\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"snapshotId\": \"00cec78c-c623-ff59-7211-081513b89b45\",\r\n \"fileSystemId\": \"7cb010d1-ad34-82f8-fd12-bc4a85745e50\",\r\n \"name\": \"pws-sdk-snapshot-1\",\r\n \"created\": \"2019-02-27T16:57:33Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-2/capacityPools/pws-sdk-pool-1/volumes/pws-sdk-vol-1/snapshots/pws-sdk-snapshot-1\",\r\n \"name\": \"pws-sdk-acc-2/pws-sdk-pool-1/pws-sdk-vol-1/pws-sdk-snapshot-1\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"snapshotId\": \"2f9e6d35-fab3-843f-30a5-e3217e4f4198\",\r\n \"fileSystemId\": \"7d911a97-b3bf-b2b4-0803-8427481ea1b2\",\r\n \"name\": \"pws-sdk-snapshot-1\",\r\n \"created\": \"2019-03-13T13:03:04Z\"\r\n }\r\n}", "StatusCode": 200 }, { @@ -1729,7 +1729,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "70f10a17-b730-4c70-9574-727d904090ba" + "d5263952-2a73-453f-bc7d-f70d57afdbdf" ], "Accept-Language": [ "en-US" @@ -1749,7 +1749,7 @@ "no-cache" ], "x-ms-request-id": [ - "380a9917-0a19-4b1b-af88-cf20d562d7cc" + "3ec36d2a-4ab8-42b6-b015-9f48df826521" ], "Server": [ "Microsoft-IIS/10.0" @@ -1758,13 +1758,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11977" ], "x-ms-correlation-request-id": [ - "fe04e862-3a61-4dd5-85fb-5d844d5294fc" + "e9155652-4a0a-4c63-824d-7c518ec073fe" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T165755Z:fe04e862-3a61-4dd5-85fb-5d844d5294fc" + "SOUTHEASTASIA:20190313T130314Z:e9155652-4a0a-4c63-824d-7c518ec073fe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1773,7 +1773,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 16:57:55 GMT" + "Wed, 13 Mar 2019 13:03:13 GMT" ], "Content-Length": [ "609" @@ -1785,7 +1785,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-2/capacityPools/pws-sdk-pool-1/volumes/pws-sdk-vol-1/snapshots/pws-sdk-snapshot-1\",\r\n \"name\": \"pws-sdk-acc-2/pws-sdk-pool-1/pws-sdk-vol-1/pws-sdk-snapshot-1\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"snapshotId\": \"00cec78c-c623-ff59-7211-081513b89b45\",\r\n \"fileSystemId\": \"7cb010d1-ad34-82f8-fd12-bc4a85745e50\",\r\n \"name\": \"pws-sdk-snapshot-1\",\r\n \"created\": \"2019-02-27T16:57:33Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-2/capacityPools/pws-sdk-pool-1/volumes/pws-sdk-vol-1/snapshots/pws-sdk-snapshot-1\",\r\n \"name\": \"pws-sdk-acc-2/pws-sdk-pool-1/pws-sdk-vol-1/pws-sdk-snapshot-1\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"snapshotId\": \"2f9e6d35-fab3-843f-30a5-e3217e4f4198\",\r\n \"fileSystemId\": \"7d911a97-b3bf-b2b4-0803-8427481ea1b2\",\r\n \"name\": \"pws-sdk-snapshot-1\",\r\n \"created\": \"2019-03-13T13:03:04Z\"\r\n }\r\n}", "StatusCode": 200 }, { @@ -1795,7 +1795,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4976e752-85bb-4e97-a688-619d518b6e43" + "d207a591-2d4d-42e0-891a-e7e606aba69e" ], "Accept-Language": [ "en-US" @@ -1815,7 +1815,7 @@ "no-cache" ], "x-ms-request-id": [ - "b31d1806-d84e-4312-8e86-8e47817c70f4" + "4822da87-38bb-430a-a1f9-1d7c0c3ec258" ], "Server": [ "Microsoft-IIS/10.0" @@ -1824,13 +1824,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14997" ], "x-ms-correlation-request-id": [ - "fbec92f9-53ae-437f-864d-ccb7332581b2" + "5c1e80f4-0cb6-4165-8849-d4905a38cda6" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T165800Z:fbec92f9-53ae-437f-864d-ccb7332581b2" + "SOUTHEASTASIA:20190313T130319Z:5c1e80f4-0cb6-4165-8849-d4905a38cda6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1839,7 +1839,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 16:58:00 GMT" + "Wed, 13 Mar 2019 13:03:18 GMT" ], "Expires": [ "-1" @@ -1858,7 +1858,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a4e30ba6-29f9-41e0-9173-a564cb0c98c6" + "e7ab40c9-9326-4432-a615-3a83e033a7be" ], "Accept-Language": [ "en-US" @@ -1878,7 +1878,7 @@ "no-cache" ], "x-ms-request-id": [ - "6725acaf-b3b3-4c9f-aa65-5b139e8c3c9a" + "824b1ae2-8cbc-40b9-8b82-5044f897210a" ], "Server": [ "Microsoft-IIS/10.0" @@ -1887,13 +1887,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "14996" ], "x-ms-correlation-request-id": [ - "9609dfa5-1927-45e2-b382-e77d713c609d" + "41cbf4db-f806-43a9-9c96-514de19d311c" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T165805Z:9609dfa5-1927-45e2-b382-e77d713c609d" + "SOUTHEASTASIA:20190313T130323Z:41cbf4db-f806-43a9-9c96-514de19d311c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1902,7 +1902,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 16:58:05 GMT" + "Wed, 13 Mar 2019 13:03:23 GMT" ], "Expires": [ "-1" @@ -1921,7 +1921,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "052285e4-5649-4c43-8ba7-9c02410c92b0" + "6e7bb1e4-cdd5-4ff7-8d48-72997d9859fa" ], "Accept-Language": [ "en-US" @@ -1947,16 +1947,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14996" ], "x-ms-request-id": [ - "a86fb36e-8ab5-4136-8285-4d818f1b06a9" + "85d9642e-53d0-4741-8412-8ce5e8759b40" ], "x-ms-correlation-request-id": [ - "a86fb36e-8ab5-4136-8285-4d818f1b06a9" + "85d9642e-53d0-4741-8412-8ce5e8759b40" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T165810Z:a86fb36e-8ab5-4136-8285-4d818f1b06a9" + "SOUTHEASTASIA:20190313T130329Z:85d9642e-53d0-4741-8412-8ce5e8759b40" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1965,7 +1965,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 16:58:10 GMT" + "Wed, 13 Mar 2019 13:03:29 GMT" ], "Expires": [ "-1" @@ -2004,16 +2004,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11986" ], "x-ms-request-id": [ - "94404a72-436e-4012-8875-7ba3e63d0e95" + "726ca053-0272-4b5f-a237-ad73cdb36ba4" ], "x-ms-correlation-request-id": [ - "94404a72-436e-4012-8875-7ba3e63d0e95" + "726ca053-0272-4b5f-a237-ad73cdb36ba4" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T165826Z:94404a72-436e-4012-8875-7ba3e63d0e95" + "SOUTHEASTASIA:20190313T130345Z:726ca053-0272-4b5f-a237-ad73cdb36ba4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2022,7 +2022,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 16:58:25 GMT" + "Wed, 13 Mar 2019 13:03:44 GMT" ], "Expires": [ "-1" @@ -2061,16 +2061,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11985" ], "x-ms-request-id": [ - "b8b43de9-f849-4069-ac29-87922fb20eba" + "02fc822a-8475-47c0-8622-b03c41ab16bc" ], "x-ms-correlation-request-id": [ - "b8b43de9-f849-4069-ac29-87922fb20eba" + "02fc822a-8475-47c0-8622-b03c41ab16bc" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T165841Z:b8b43de9-f849-4069-ac29-87922fb20eba" + "SOUTHEASTASIA:20190313T130400Z:02fc822a-8475-47c0-8622-b03c41ab16bc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2079,7 +2079,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 16:58:41 GMT" + "Wed, 13 Mar 2019 13:04:00 GMT" ], "Expires": [ "-1" @@ -2118,16 +2118,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11984" ], "x-ms-request-id": [ - "f9f91b56-daba-4519-8017-88f62b4d0597" + "8dbf8d1c-14fe-4bef-a16e-8a21069f33ac" ], "x-ms-correlation-request-id": [ - "f9f91b56-daba-4519-8017-88f62b4d0597" + "8dbf8d1c-14fe-4bef-a16e-8a21069f33ac" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T165857Z:f9f91b56-daba-4519-8017-88f62b4d0597" + "SOUTHEASTASIA:20190313T130416Z:8dbf8d1c-14fe-4bef-a16e-8a21069f33ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2136,7 +2136,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 16:58:56 GMT" + "Wed, 13 Mar 2019 13:04:15 GMT" ], "Expires": [ "-1" @@ -2175,16 +2175,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11983" ], "x-ms-request-id": [ - "42839c3d-b313-4e11-ba94-1a338a2257b7" + "f8f254ee-241d-46f6-a40f-8e868d91fb8e" ], "x-ms-correlation-request-id": [ - "42839c3d-b313-4e11-ba94-1a338a2257b7" + "f8f254ee-241d-46f6-a40f-8e868d91fb8e" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T165913Z:42839c3d-b313-4e11-ba94-1a338a2257b7" + "SOUTHEASTASIA:20190313T130432Z:f8f254ee-241d-46f6-a40f-8e868d91fb8e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2193,7 +2193,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 16:59:13 GMT" + "Wed, 13 Mar 2019 13:04:32 GMT" ], "Expires": [ "-1" @@ -2232,16 +2232,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11982" ], "x-ms-request-id": [ - "3dd9cec1-4d83-4078-894b-e155c359fe96" + "129fc3a1-fa4c-4eed-b228-e2c69491a5a8" ], "x-ms-correlation-request-id": [ - "3dd9cec1-4d83-4078-894b-e155c359fe96" + "129fc3a1-fa4c-4eed-b228-e2c69491a5a8" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T165929Z:3dd9cec1-4d83-4078-894b-e155c359fe96" + "SOUTHEASTASIA:20190313T130448Z:129fc3a1-fa4c-4eed-b228-e2c69491a5a8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2250,7 +2250,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 16:59:28 GMT" + "Wed, 13 Mar 2019 13:04:47 GMT" ], "Expires": [ "-1" @@ -2289,16 +2289,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11981" ], "x-ms-request-id": [ - "10a9b273-9fdb-4b7d-900f-9c32deffbf04" + "f0e9f95b-5904-40d2-b0bc-5089c023a9b2" ], "x-ms-correlation-request-id": [ - "10a9b273-9fdb-4b7d-900f-9c32deffbf04" + "f0e9f95b-5904-40d2-b0bc-5089c023a9b2" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T165944Z:10a9b273-9fdb-4b7d-900f-9c32deffbf04" + "SOUTHEASTASIA:20190313T130503Z:f0e9f95b-5904-40d2-b0bc-5089c023a9b2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2307,7 +2307,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 16:59:44 GMT" + "Wed, 13 Mar 2019 13:05:03 GMT" ], "Expires": [ "-1" @@ -2346,16 +2346,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11980" ], "x-ms-request-id": [ - "3987f486-c2c2-4897-ae18-d8f3c984dbc3" + "29a06e05-ef10-481a-af01-36dfa36308ba" ], "x-ms-correlation-request-id": [ - "3987f486-c2c2-4897-ae18-d8f3c984dbc3" + "29a06e05-ef10-481a-af01-36dfa36308ba" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T170000Z:3987f486-c2c2-4897-ae18-d8f3c984dbc3" + "SOUTHEASTASIA:20190313T130519Z:29a06e05-ef10-481a-af01-36dfa36308ba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2364,7 +2364,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:00:00 GMT" + "Wed, 13 Mar 2019 13:05:18 GMT" ], "Expires": [ "-1" @@ -2403,16 +2403,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11979" ], "x-ms-request-id": [ - "ba2d6514-77cb-499b-ad0e-576fbdfbaff6" + "91af0447-8536-4e54-a29d-8a6a701c26ec" ], "x-ms-correlation-request-id": [ - "ba2d6514-77cb-499b-ad0e-576fbdfbaff6" + "91af0447-8536-4e54-a29d-8a6a701c26ec" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T170016Z:ba2d6514-77cb-499b-ad0e-576fbdfbaff6" + "SOUTHEASTASIA:20190313T130535Z:91af0447-8536-4e54-a29d-8a6a701c26ec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2421,7 +2421,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:00:15 GMT" + "Wed, 13 Mar 2019 13:05:35 GMT" ], "Expires": [ "-1" @@ -2460,16 +2460,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11978" ], "x-ms-request-id": [ - "28063a9e-638e-42c2-a550-f5804a2418af" + "3fa4497c-6b54-4ec0-bcd9-cfb2bb3655e2" ], "x-ms-correlation-request-id": [ - "28063a9e-638e-42c2-a550-f5804a2418af" + "3fa4497c-6b54-4ec0-bcd9-cfb2bb3655e2" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T170032Z:28063a9e-638e-42c2-a550-f5804a2418af" + "SOUTHEASTASIA:20190313T130551Z:3fa4497c-6b54-4ec0-bcd9-cfb2bb3655e2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2478,7 +2478,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:00:32 GMT" + "Wed, 13 Mar 2019 13:05:50 GMT" ], "Expires": [ "-1" @@ -2517,16 +2517,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11977" ], "x-ms-request-id": [ - "456efd44-6dd7-4266-b40e-cc0edd109677" + "ed695811-90de-4701-b992-265fc312d293" ], "x-ms-correlation-request-id": [ - "456efd44-6dd7-4266-b40e-cc0edd109677" + "ed695811-90de-4701-b992-265fc312d293" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T170048Z:456efd44-6dd7-4266-b40e-cc0edd109677" + "SOUTHEASTASIA:20190313T130607Z:ed695811-90de-4701-b992-265fc312d293" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2535,7 +2535,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:00:47 GMT" + "Wed, 13 Mar 2019 13:06:06 GMT" ], "Expires": [ "-1" @@ -2574,16 +2574,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11976" ], "x-ms-request-id": [ - "8f453bd3-d278-4465-85a0-d8b7470f829e" + "d86513ea-4fcb-43aa-b2b8-ca026168f07d" ], "x-ms-correlation-request-id": [ - "8f453bd3-d278-4465-85a0-d8b7470f829e" + "d86513ea-4fcb-43aa-b2b8-ca026168f07d" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T170103Z:8f453bd3-d278-4465-85a0-d8b7470f829e" + "SOUTHEASTASIA:20190313T130622Z:d86513ea-4fcb-43aa-b2b8-ca026168f07d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2592,7 +2592,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:01:03 GMT" + "Wed, 13 Mar 2019 13:06:22 GMT" ], "Expires": [ "-1" @@ -2631,16 +2631,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11975" ], "x-ms-request-id": [ - "a8c737a5-7388-4cc9-a8f5-a360a715f0d9" + "cd94b4c9-9b6b-4ef1-a683-a2069a18f8b6" ], "x-ms-correlation-request-id": [ - "a8c737a5-7388-4cc9-a8f5-a360a715f0d9" + "cd94b4c9-9b6b-4ef1-a683-a2069a18f8b6" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T170119Z:a8c737a5-7388-4cc9-a8f5-a360a715f0d9" + "SOUTHEASTASIA:20190313T130638Z:cd94b4c9-9b6b-4ef1-a683-a2069a18f8b6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2649,7 +2649,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:01:18 GMT" + "Wed, 13 Mar 2019 13:06:38 GMT" ], "Expires": [ "-1" @@ -2688,16 +2688,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11974" ], "x-ms-request-id": [ - "15436bf5-c38c-4023-bd11-4e20b7d62598" + "7ec1fb49-da2e-4977-82c2-e4ed8d5b4566" ], "x-ms-correlation-request-id": [ - "15436bf5-c38c-4023-bd11-4e20b7d62598" + "7ec1fb49-da2e-4977-82c2-e4ed8d5b4566" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T170135Z:15436bf5-c38c-4023-bd11-4e20b7d62598" + "SOUTHEASTASIA:20190313T130654Z:7ec1fb49-da2e-4977-82c2-e4ed8d5b4566" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2706,7 +2706,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:01:35 GMT" + "Wed, 13 Mar 2019 13:06:53 GMT" ], "Expires": [ "-1" @@ -2745,16 +2745,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11973" ], "x-ms-request-id": [ - "f62d69a6-a8b6-4b18-9137-6e22950635fa" + "cd97f716-2a45-44e1-8a57-808d37ec717e" ], "x-ms-correlation-request-id": [ - "f62d69a6-a8b6-4b18-9137-6e22950635fa" + "cd97f716-2a45-44e1-8a57-808d37ec717e" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T170151Z:f62d69a6-a8b6-4b18-9137-6e22950635fa" + "SOUTHEASTASIA:20190313T130710Z:cd97f716-2a45-44e1-8a57-808d37ec717e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2763,7 +2763,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:01:50 GMT" + "Wed, 13 Mar 2019 13:07:09 GMT" ], "Expires": [ "-1" @@ -2802,16 +2802,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11972" ], "x-ms-request-id": [ - "48d586df-d8e5-4297-91d7-8a49eca88a92" + "9254226d-0af8-4aa7-90ef-43efd8feadb8" ], "x-ms-correlation-request-id": [ - "48d586df-d8e5-4297-91d7-8a49eca88a92" + "9254226d-0af8-4aa7-90ef-43efd8feadb8" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T170206Z:48d586df-d8e5-4297-91d7-8a49eca88a92" + "SOUTHEASTASIA:20190313T130725Z:9254226d-0af8-4aa7-90ef-43efd8feadb8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2820,7 +2820,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:02:05 GMT" + "Wed, 13 Mar 2019 13:07:25 GMT" ], "Expires": [ "-1" @@ -2859,16 +2859,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11971" ], "x-ms-request-id": [ - "33b7fd9a-b275-40d8-b634-674ae9c14172" + "49cc0a0a-90d5-406b-afb7-e0e5a20dfc21" ], "x-ms-correlation-request-id": [ - "33b7fd9a-b275-40d8-b634-674ae9c14172" + "49cc0a0a-90d5-406b-afb7-e0e5a20dfc21" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T170222Z:33b7fd9a-b275-40d8-b634-674ae9c14172" + "SOUTHEASTASIA:20190313T130741Z:49cc0a0a-90d5-406b-afb7-e0e5a20dfc21" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2877,7 +2877,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:02:22 GMT" + "Wed, 13 Mar 2019 13:07:41 GMT" ], "Expires": [ "-1" @@ -2916,16 +2916,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11970" ], "x-ms-request-id": [ - "bea468e5-42b7-469b-9941-52d5d77b441a" + "d028be10-48c1-4c16-877f-6ae544cda3b5" ], "x-ms-correlation-request-id": [ - "bea468e5-42b7-469b-9941-52d5d77b441a" + "d028be10-48c1-4c16-877f-6ae544cda3b5" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T170238Z:bea468e5-42b7-469b-9941-52d5d77b441a" + "SOUTHEASTASIA:20190313T130757Z:d028be10-48c1-4c16-877f-6ae544cda3b5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2934,7 +2934,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:02:37 GMT" + "Wed, 13 Mar 2019 13:07:56 GMT" ], "Expires": [ "-1" @@ -2973,16 +2973,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11969" ], "x-ms-request-id": [ - "fa691edb-eae1-4976-8717-b4294a8a6ee0" + "215a96ac-6323-48de-87a5-026614ca6777" ], "x-ms-correlation-request-id": [ - "fa691edb-eae1-4976-8717-b4294a8a6ee0" + "215a96ac-6323-48de-87a5-026614ca6777" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T170254Z:fa691edb-eae1-4976-8717-b4294a8a6ee0" + "SOUTHEASTASIA:20190313T130813Z:215a96ac-6323-48de-87a5-026614ca6777" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2991,7 +2991,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:02:53 GMT" + "Wed, 13 Mar 2019 13:08:13 GMT" ], "Expires": [ "-1" @@ -3030,16 +3030,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11968" ], "x-ms-request-id": [ - "cc228985-553d-4885-83c4-c02d49eb5250" + "c079dd05-96b3-4292-852d-cc03a046dfb2" ], "x-ms-correlation-request-id": [ - "cc228985-553d-4885-83c4-c02d49eb5250" + "c079dd05-96b3-4292-852d-cc03a046dfb2" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T170309Z:cc228985-553d-4885-83c4-c02d49eb5250" + "SOUTHEASTASIA:20190313T130829Z:c079dd05-96b3-4292-852d-cc03a046dfb2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3048,7 +3048,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:03:09 GMT" + "Wed, 13 Mar 2019 13:08:28 GMT" ], "Expires": [ "-1" @@ -3087,16 +3087,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11967" ], "x-ms-request-id": [ - "40fbd318-afeb-4fa5-873b-ca744436514d" + "8cec0141-76ec-46cb-825c-3587b0b4788a" ], "x-ms-correlation-request-id": [ - "40fbd318-afeb-4fa5-873b-ca744436514d" + "8cec0141-76ec-46cb-825c-3587b0b4788a" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T170325Z:40fbd318-afeb-4fa5-873b-ca744436514d" + "SOUTHEASTASIA:20190313T130844Z:8cec0141-76ec-46cb-825c-3587b0b4788a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3105,7 +3105,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:03:24 GMT" + "Wed, 13 Mar 2019 13:08:44 GMT" ], "Expires": [ "-1" @@ -3144,16 +3144,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11966" ], "x-ms-request-id": [ - "02e374f4-ec2b-4b4a-8b8f-a956dbcbc6c5" + "ef1ed3ad-4bf2-4271-84e2-20a184f159ed" ], "x-ms-correlation-request-id": [ - "02e374f4-ec2b-4b4a-8b8f-a956dbcbc6c5" + "ef1ed3ad-4bf2-4271-84e2-20a184f159ed" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T170341Z:02e374f4-ec2b-4b4a-8b8f-a956dbcbc6c5" + "SOUTHEASTASIA:20190313T130900Z:ef1ed3ad-4bf2-4271-84e2-20a184f159ed" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3162,7 +3162,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:03:40 GMT" + "Wed, 13 Mar 2019 13:08:59 GMT" ], "Expires": [ "-1" @@ -3195,16 +3195,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11965" ], "x-ms-request-id": [ - "68ac7573-65d3-4220-a7cf-92ead9439fe7" + "969fd9fb-247b-45b6-973e-696f6dd2713f" ], "x-ms-correlation-request-id": [ - "68ac7573-65d3-4220-a7cf-92ead9439fe7" + "969fd9fb-247b-45b6-973e-696f6dd2713f" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T170357Z:68ac7573-65d3-4220-a7cf-92ead9439fe7" + "SOUTHEASTASIA:20190313T130916Z:969fd9fb-247b-45b6-973e-696f6dd2713f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3213,7 +3213,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:03:56 GMT" + "Wed, 13 Mar 2019 13:09:16 GMT" ], "Expires": [ "-1" @@ -3246,16 +3246,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11964" ], "x-ms-request-id": [ - "0bb84265-744f-4e36-8061-39ba877e8224" + "176a173e-0625-47d6-a714-630a2d0b7380" ], "x-ms-correlation-request-id": [ - "0bb84265-744f-4e36-8061-39ba877e8224" + "176a173e-0625-47d6-a714-630a2d0b7380" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T170357Z:0bb84265-744f-4e36-8061-39ba877e8224" + "SOUTHEASTASIA:20190313T130917Z:176a173e-0625-47d6-a714-630a2d0b7380" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3264,7 +3264,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:03:57 GMT" + "Wed, 13 Mar 2019 13:09:17 GMT" ], "Expires": [ "-1" 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 new file mode 100644 index 000000000000..d20e951ed960 --- /dev/null +++ b/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.SnapshotTests/TestSnapshotPipelines.json @@ -0,0 +1,2891 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourcegroups/pws-sdk-tests-rg-1?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlZ3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westus2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4cc8d3ba-2266-4fd3-8d91-bd325831bcbe" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.13" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "5c8d0a5c-603f-412c-b5a5-6eb9329da812" + ], + "x-ms-correlation-request-id": [ + "5c8d0a5c-603f-412c-b5a5-6eb9329da812" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20190313T130921Z:5c8d0a5c-603f-412c-b5a5-6eb9329da812" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 13:09:21 GMT" + ], + "Content-Length": [ + "190" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1\",\r\n \"name\": \"pws-sdk-tests-rg-1\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet?api-version=2018-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlR3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3B3cy1zZGstdGVzdHMtcmctMS12bmV0P2FwaS12ZXJzaW9uPTIwMTgtMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9addc54f-abed-4e8d-b656-34b58f86f614" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.8.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "6ddd3998-60bd-4fbf-9ede-18c9b38be6a5" + ], + "x-ms-correlation-request-id": [ + "6ddd3998-60bd-4fbf-9ede-18c9b38be6a5" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20190313T130922Z:6ddd3998-60bd-4fbf-9ede-18c9b38be6a5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 13:09:22 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "179" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet' under resource group 'pws-sdk-tests-rg-1' was not found.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet?api-version=2018-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlR3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3B3cy1zZGstdGVzdHMtcmctMS12bmV0P2FwaS12ZXJzaW9uPTIwMTgtMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.8.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"2bcb85df-4bfd-4a86-ac4d-3066a7c9e3c3\"" + ], + "x-ms-request-id": [ + "0a2d82d6-a080-4ca8-86e0-10f6188502f1" + ], + "x-ms-correlation-request-id": [ + "b1cd8585-d369-4f0f-b2fa-de06d550255e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20190313T130929Z:b1cd8585-d369-4f0f-b2fa-de06d550255e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 13:09:29 GMT" + ], + "Content-Length": [ + "678" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pws-sdk-tests-rg-1-vnet\",\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet\",\r\n \"etag\": \"W/\\\"2bcb85df-4bfd-4a86-ac4d-3066a7c9e3c3\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"fbc41186-25c1-45de-b409-4328e03153e9\",\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/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet?api-version=2018-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlR3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3B3cy1zZGstdGVzdHMtcmctMS12bmV0P2FwaS12ZXJzaW9uPTIwMTgtMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d3bbde07-7135-4897-b8b3-99fe936273b4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.8.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"2bcb85df-4bfd-4a86-ac4d-3066a7c9e3c3\"" + ], + "x-ms-request-id": [ + "95920c5e-3ba1-454b-a9d1-93b92db6dbc1" + ], + "x-ms-correlation-request-id": [ + "0ece0d71-008f-4168-88dc-3c17a0ef94be" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20190313T130929Z:0ece0d71-008f-4168-88dc-3c17a0ef94be" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 13:09:29 GMT" + ], + "Content-Length": [ + "678" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pws-sdk-tests-rg-1-vnet\",\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet\",\r\n \"etag\": \"W/\\\"2bcb85df-4bfd-4a86-ac4d-3066a7c9e3c3\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"fbc41186-25c1-45de-b409-4328e03153e9\",\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/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet?api-version=2018-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlR3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3B3cy1zZGstdGVzdHMtcmctMS12bmV0P2FwaS12ZXJzaW9uPTIwMTgtMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "350a2fca-7522-4248-9e9b-b6bd3021faad" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.8.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"2bcb85df-4bfd-4a86-ac4d-3066a7c9e3c3\"" + ], + "x-ms-request-id": [ + "048ea481-e5ab-4708-9ddd-46752cc9163b" + ], + "x-ms-correlation-request-id": [ + "25099bbe-da62-4c12-8555-50ec7808bcc7" + ], + "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": [ + "WESTEUROPE:20190313T130930Z:25099bbe-da62-4c12-8555-50ec7808bcc7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 13:09:29 GMT" + ], + "Content-Length": [ + "678" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pws-sdk-tests-rg-1-vnet\",\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet\",\r\n \"etag\": \"W/\\\"2bcb85df-4bfd-4a86-ac4d-3066a7c9e3c3\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"fbc41186-25c1-45de-b409-4328e03153e9\",\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/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet?api-version=2018-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlR3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3B3cy1zZGstdGVzdHMtcmctMS12bmV0P2FwaS12ZXJzaW9uPTIwMTgtMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.8.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"ed50c889-677a-4473-be12-5981901a05b3\"" + ], + "x-ms-request-id": [ + "b8041d42-b1b3-4551-9b79-92ff67674ba7" + ], + "x-ms-correlation-request-id": [ + "3cf4730a-fde4-4849-a669-d4be40033943" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20190313T130933Z:3cf4730a-fde4-4849-a669-d4be40033943" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 13:09:33 GMT" + ], + "Content-Length": [ + "2120" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pws-sdk-tests-rg-1-vnet\",\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet\",\r\n \"etag\": \"W/\\\"ed50c889-677a-4473-be12-5981901a05b3\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"fbc41186-25c1-45de-b409-4328e03153e9\",\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/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"ed50c889-677a-4473-be12-5981901a05b3\\\"\",\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/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"ed50c889-677a-4473-be12-5981901a05b3\\\"\",\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 },\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/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet?api-version=2018-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlR3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3B3cy1zZGstdGVzdHMtcmctMS12bmV0P2FwaS12ZXJzaW9uPTIwMTgtMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c25e55c1-6f5c-47bb-a988-a534950d7b46" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.8.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"ed50c889-677a-4473-be12-5981901a05b3\"" + ], + "x-ms-request-id": [ + "fe228839-a003-42ee-80fb-bf241d343c88" + ], + "x-ms-correlation-request-id": [ + "4a66d078-f660-4fc0-9c64-8e559f7ade2b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20190313T130934Z:4a66d078-f660-4fc0-9c64-8e559f7ade2b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 13:09:33 GMT" + ], + "Content-Length": [ + "2120" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pws-sdk-tests-rg-1-vnet\",\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet\",\r\n \"etag\": \"W/\\\"ed50c889-677a-4473-be12-5981901a05b3\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"fbc41186-25c1-45de-b409-4328e03153e9\",\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/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"ed50c889-677a-4473-be12-5981901a05b3\\\"\",\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/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"ed50c889-677a-4473-be12-5981901a05b3\\\"\",\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 },\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/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet?api-version=2018-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlR3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3B3cy1zZGstdGVzdHMtcmctMS12bmV0P2FwaS12ZXJzaW9uPTIwMTgtMTEtMDE=", + "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 },\r\n \"location\": \"westus2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "41881653-bf6c-4c57-ad27-2d0436fde196" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.8.1.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "235" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "a3014437-192f-4820-9d1b-1ecc3d8a0256" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.Network/locations/westus2/operations/a3014437-192f-4820-9d1b-1ecc3d8a0256?api-version=2018-11-01" + ], + "x-ms-correlation-request-id": [ + "ebbdd9ce-f02c-42b6-8794-c5560592fc99" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20190313T130925Z:ebbdd9ce-f02c-42b6-8794-c5560592fc99" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 13:09:25 GMT" + ], + "Content-Length": [ + "677" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pws-sdk-tests-rg-1-vnet\",\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet\",\r\n \"etag\": \"W/\\\"f3a29983-8a56-45f5-9418-3026a3b3e66a\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"fbc41186-25c1-45de-b409-4328e03153e9\",\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/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet?api-version=2018-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlR3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3B3cy1zZGstdGVzdHMtcmctMS12bmV0P2FwaS12ZXJzaW9uPTIwMTgtMTEtMDE=", + "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 \"resourceNavigationLinks\": [],\r\n \"serviceAssociationLinks\": [],\r\n \"delegations\": [\r\n {\r\n \"properties\": {\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": []\r\n },\r\n \"name\": \"netAppVolumes\"\r\n }\r\n ]\r\n },\r\n \"name\": \"default\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"resourceGuid\": \"fbc41186-25c1-45de-b409-4328e03153e9\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"enableDdosProtection\": false\r\n },\r\n \"etag\": \"W/\\\"2bcb85df-4bfd-4a86-ac4d-3066a7c9e3c3\\\"\",\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet\",\r\n \"location\": \"westus2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2f78effc-691a-4a98-a56a-d8e7ac8d6e07" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.8.1.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1188" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "b7ae208a-5bde-41ef-8f1a-e63a6a5729ad" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.Network/locations/westus2/operations/b7ae208a-5bde-41ef-8f1a-e63a6a5729ad?api-version=2018-11-01" + ], + "x-ms-correlation-request-id": [ + "55cef1fb-6243-4efc-aa36-9d70cc524bec" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20190313T130930Z:55cef1fb-6243-4efc-aa36-9d70cc524bec" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 13:09:30 GMT" + ], + "Content-Length": [ + "2118" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pws-sdk-tests-rg-1-vnet\",\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet\",\r\n \"etag\": \"W/\\\"a25e35dd-0301-4ae2-8325-2eada61323e0\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"fbc41186-25c1-45de-b409-4328e03153e9\",\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/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"a25e35dd-0301-4ae2-8325-2eada61323e0\\\"\",\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/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"a25e35dd-0301-4ae2-8325-2eada61323e0\\\"\",\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 },\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/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.Network/locations/westus2/operations/a3014437-192f-4820-9d1b-1ecc3d8a0256?api-version=2018-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2EzMDE0NDM3LTE5MmYtNDgyMC05ZDFiLTFlY2MzZDhhMDI1Nj9hcGktdmVyc2lvbj0yMDE4LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.8.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b727d9b0-6df3-4852-afe4-5977a66ad1a3" + ], + "x-ms-correlation-request-id": [ + "8e29c264-8e32-4970-8174-113070182cf3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20190313T130929Z:8e29c264-8e32-4970-8174-113070182cf3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 13:09:29 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.Network/locations/westus2/operations/b7ae208a-5bde-41ef-8f1a-e63a6a5729ad?api-version=2018-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2I3YWUyMDhhLTViZGUtNDFlZi04ZjFhLWU2M2E2YTU3MjlhZD9hcGktdmVyc2lvbj0yMDE4LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.8.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d5020d9e-8e39-41ea-b8e9-5ee1a77f138b" + ], + "x-ms-correlation-request-id": [ + "c4b675db-4de9-40aa-9eae-8e0390f3c435" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20190313T130933Z:c4b675db-4de9-40aa-9eae-8e0390f3c435" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 13:09: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/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1?api-version=2017-08-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlR3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wd3Mtc2RrLWFjYy0xP2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westus2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e104261d-36da-41d9-a28e-858c29de7550" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/0.9.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2019-03-13T13%3A09%3A37.3227717Z'\"" + ], + "x-ms-request-id": [ + "f499a19a-2299-48df-bdcc-d70106823671" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/6022d9d5-7db4-4b89-b42c-80376552a236?api-version=2017-08-15" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "5383fa65-0d38-4c68-b663-a2ce682dbf6d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20190313T130937Z:5383fa65-0d38-4c68-b663-a2ce682dbf6d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 13:09:37 GMT" + ], + "Content-Length": [ + "362" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1\",\r\n \"name\": \"pws-sdk-acc-1\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2019-03-13T13%3A09%3A37.3227717Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"name\": \"pws-sdk-acc-1\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/6022d9d5-7db4-4b89-b42c-80376552a236?api-version=2017-08-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvNjAyMmQ5ZDUtN2RiNC00Yjg5LWI0MmMtODAzNzY1NTJhMjM2P2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/0.9.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "93305e9c-cce0-4068-a477-a42ac1cae5c1" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "e3eab79e-f075-42e2-b940-40e127e23d62" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20190313T131008Z:e3eab79e-f075-42e2-b940-40e127e23d62" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 13:10:07 GMT" + ], + "Content-Length": [ + "508" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/6022d9d5-7db4-4b89-b42c-80376552a236\",\r\n \"name\": \"6022d9d5-7db4-4b89-b42c-80376552a236\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-03-13T13:09:37.2234233Z\",\r\n \"endTime\": \"2019-03-13T13:09:37.5515304Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1?api-version=2017-08-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlR3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wd3Mtc2RrLWFjYy0xP2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/0.9.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2019-03-13T13%3A09%3A37.5999715Z'\"" + ], + "x-ms-request-id": [ + "05440c54-cf2f-43d1-9b25-a39960f80c04" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "347652e4-94cd-4b56-8801-3b1a72a30975" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20190313T131008Z:347652e4-94cd-4b56-8801-3b1a72a30975" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 13:10:07 GMT" + ], + "Content-Length": [ + "363" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1\",\r\n \"name\": \"pws-sdk-acc-1\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2019-03-13T13%3A09%3A37.5999715Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"name\": \"pws-sdk-acc-1\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1?api-version=2017-08-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlR3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wd3Mtc2RrLWFjYy0xL2NhcGFjaXR5UG9vbHMvcHdzLXNkay1wb29sLTE/YXBpLXZlcnNpb249MjAxNy0wOC0xNQ==", + "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": [ + "efecf6bb-dc4a-4005-ad9c-e610c864fa0a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/0.9.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "113" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2019-03-13T13%3A10%3A09.6240599Z'\"" + ], + "x-ms-request-id": [ + "d69a48a8-9f80-42f4-aa4e-cdaf804764be" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/0ab28940-120d-4e15-a270-9b1e79410fbb?api-version=2017-08-15" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "3207508c-389d-49c2-98c5-ce60829a9495" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20190313T131010Z:3207508c-389d-49c2-98c5-ce60829a9495" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 13:10:09 GMT" + ], + "Content-Length": [ + "443" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1\",\r\n \"name\": \"pws-sdk-acc-1/pws-sdk-pool-1\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2019-03-13T13%3A10%3A09.6240599Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"size\": 4398046511104,\r\n \"serviceLevel\": \"Premium\",\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/0ab28940-120d-4e15-a270-9b1e79410fbb?api-version=2017-08-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvMGFiMjg5NDAtMTIwZC00ZTE1LWEyNzAtOWIxZTc5NDEwZmJiP2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/0.9.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "9d0c53da-d61d-4b1a-b8d4-950106ebefdc" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "2719541e-2069-4500-9f05-2a60761bc47c" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20190313T131040Z:2719541e-2069-4500-9f05-2a60761bc47c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 13:10:40 GMT" + ], + "Content-Length": [ + "537" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/0ab28940-120d-4e15-a270-9b1e79410fbb\",\r\n \"name\": \"0ab28940-120d-4e15-a270-9b1e79410fbb\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-03-13T13:10:09.5607158Z\",\r\n \"endTime\": \"2019-03-13T13:10:09.9826048Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1?api-version=2017-08-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlR3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wd3Mtc2RrLWFjYy0xL2NhcGFjaXR5UG9vbHMvcHdzLXNkay1wb29sLTE/YXBpLXZlcnNpb249MjAxNy0wOC0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/0.9.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2019-03-13T13%3A10%3A10.0423589Z'\"" + ], + "x-ms-request-id": [ + "34643a96-1217-407f-b088-65633ba0bf2d" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "200aa05b-c96e-4cc6-9a0f-508d7e5ffd1b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20190313T131041Z:200aa05b-c96e-4cc6-9a0f-508d7e5ffd1b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 13:10:41 GMT" + ], + "Content-Length": [ + "530" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1\",\r\n \"name\": \"pws-sdk-acc-1/pws-sdk-pool-1\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2019-03-13T13%3A10%3A10.0423589Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"poolId\": \"558d4d15-15ff-d083-f0eb-01e68a9ae2e8\",\r\n \"name\": \"pws-sdk-acc-1/pws-sdk-pool-1\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1/volumes/pws-sdk-vol-1?api-version=2017-08-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlR3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wd3Mtc2RrLWFjYy0xL2NhcGFjaXR5UG9vbHMvcHdzLXNkay1wb29sLTEvdm9sdW1lcy9wd3Mtc2RrLXZvbC0xP2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"creationToken\": \"pws-sdk-vol-1\",\r\n \"serviceLevel\": \"Premium\",\r\n \"usageThreshold\": 107374182400,\r\n \"subnetId\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet/subnets/default\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "28eb9acb-a27e-4a4e-9199-85f792ae84d3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/0.9.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "351" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2019-03-13T13%3A10%3A42.4747412Z'\"" + ], + "x-ms-request-id": [ + "c599e9b2-f37c-449c-b400-d6b53b185529" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/62da6930-ee57-4a10-8cee-735694b89b34?api-version=2017-08-15" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "4e923d9d-4c34-482c-b17e-2ea437cccc4f" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20190313T131043Z:4e923d9d-4c34-482c-b17e-2ea437cccc4f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 13:10:42 GMT" + ], + "Content-Length": [ + "711" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1/volumes/pws-sdk-vol-1\",\r\n \"name\": \"pws-sdk-acc-1/pws-sdk-pool-1/pws-sdk-vol-1\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2019-03-13T13%3A10%3A42.4747412Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"creationToken\": \"pws-sdk-vol-1\",\r\n \"serviceLevel\": \"Premium\",\r\n \"usageThreshold\": 107374182400,\r\n \"subnetId\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet/subnets/default\",\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/62da6930-ee57-4a10-8cee-735694b89b34?api-version=2017-08-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvNjJkYTY5MzAtZWU1Ny00YTEwLThjZWUtNzM1Njk0Yjg5YjM0P2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/0.9.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e9431163-1b59-440d-b737-76dc4f407d03" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-correlation-request-id": [ + "ee631672-0d63-4f98-937d-e82497f33b30" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20190313T131113Z:ee631672-0d63-4f98-937d-e82497f33b30" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 13:11:12 GMT" + ], + "Content-Length": [ + "548" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/62da6930-ee57-4a10-8cee-735694b89b34\",\r\n \"name\": \"62da6930-ee57-4a10-8cee-735694b89b34\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2019-03-13T13:10:42.4214387Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1/volumes/pws-sdk-vol-1\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/62da6930-ee57-4a10-8cee-735694b89b34?api-version=2017-08-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvNjJkYTY5MzAtZWU1Ny00YTEwLThjZWUtNzM1Njk0Yjg5YjM0P2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/0.9.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "569f1c85-dc9b-42d7-abdc-1825fcb63f9e" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "c4b2fa03-a1cb-4a22-82b7-df148f610126" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20190313T131144Z:c4b2fa03-a1cb-4a22-82b7-df148f610126" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 13:11:43 GMT" + ], + "Content-Length": [ + "558" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/62da6930-ee57-4a10-8cee-735694b89b34\",\r\n \"name\": \"62da6930-ee57-4a10-8cee-735694b89b34\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-03-13T13:10:42.4214387Z\",\r\n \"endTime\": \"2019-03-13T13:11:16.466287Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1/volumes/pws-sdk-vol-1\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1/volumes/pws-sdk-vol-1?api-version=2017-08-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlR3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wd3Mtc2RrLWFjYy0xL2NhcGFjaXR5UG9vbHMvcHdzLXNkay1wb29sLTEvdm9sdW1lcy9wd3Mtc2RrLXZvbC0xP2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/0.9.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2019-03-13T13%3A11%3A16.5032724Z'\"" + ], + "x-ms-request-id": [ + "7242ceb3-55f2-492d-8871-f312a6589ae1" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "c17fd9b7-26bc-4dee-859f-62ebdb74e33d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20190313T131144Z:c17fd9b7-26bc-4dee-859f-62ebdb74e33d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 13:11:44 GMT" + ], + "Content-Length": [ + "1398" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1/volumes/pws-sdk-vol-1\",\r\n \"name\": \"pws-sdk-acc-1/pws-sdk-pool-1/pws-sdk-vol-1\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2019-03-13T13%3A11%3A16.5032724Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"90d97765-b611-8e3e-7744-ad1a1d13fed4\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"pws-sdk-vol-1\",\r\n \"ownerId\": \"38ab86f1-9d30-413b-8fc0-d31ad85fa6a1\",\r\n \"usageThreshold\": 107374182400,\r\n \"usedBytes\": 0,\r\n \"snapshotPolicy\": {\r\n \"enabled\": false\r\n },\r\n \"exportPolicy\": {\r\n \"rules\": [\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 \"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_38ab86f19d30413b8fc0d31ad85fa6a1_25fe994a\",\r\n \"subnetId\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet/subnets/default\",\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"Succeeded\",\r\n \"mountTargetId\": \"6892020b-4556-859c-f849-2b44bfb5ab2b\",\r\n \"fileSystemId\": \"90d97765-b611-8e3e-7744-ad1a1d13fed4\",\r\n \"startIp\": \"10.0.1.4\",\r\n \"endIp\": \"10.0.1.4\",\r\n \"gateway\": \"10.0.1.1\",\r\n \"netmask\": \"255.255.255.0\",\r\n \"ipAddress\": \"10.0.1.4\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1/volumes/pws-sdk-vol-1?api-version=2017-08-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlR3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wd3Mtc2RrLWFjYy0xL2NhcGFjaXR5UG9vbHMvcHdzLXNkay1wb29sLTEvdm9sdW1lcy9wd3Mtc2RrLXZvbC0xP2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e4207f86-2c18-44c5-8660-085cbc4d558d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/0.9.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2019-03-13T13%3A11%3A16.5032724Z'\"" + ], + "x-ms-request-id": [ + "4f3d7220-ac93-4398-8506-985d2cf1a27c" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "35772cee-e23a-4ab2-9f93-2e65d2a331b0" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20190313T131145Z:35772cee-e23a-4ab2-9f93-2e65d2a331b0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 13:11:44 GMT" + ], + "Content-Length": [ + "1398" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1/volumes/pws-sdk-vol-1\",\r\n \"name\": \"pws-sdk-acc-1/pws-sdk-pool-1/pws-sdk-vol-1\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2019-03-13T13%3A11%3A16.5032724Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"90d97765-b611-8e3e-7744-ad1a1d13fed4\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"pws-sdk-vol-1\",\r\n \"ownerId\": \"38ab86f1-9d30-413b-8fc0-d31ad85fa6a1\",\r\n \"usageThreshold\": 107374182400,\r\n \"usedBytes\": 0,\r\n \"snapshotPolicy\": {\r\n \"enabled\": false\r\n },\r\n \"exportPolicy\": {\r\n \"rules\": [\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 \"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_38ab86f19d30413b8fc0d31ad85fa6a1_25fe994a\",\r\n \"subnetId\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet/subnets/default\",\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"Succeeded\",\r\n \"mountTargetId\": \"6892020b-4556-859c-f849-2b44bfb5ab2b\",\r\n \"fileSystemId\": \"90d97765-b611-8e3e-7744-ad1a1d13fed4\",\r\n \"startIp\": \"10.0.1.4\",\r\n \"endIp\": \"10.0.1.4\",\r\n \"gateway\": \"10.0.1.1\",\r\n \"netmask\": \"255.255.255.0\",\r\n \"ipAddress\": \"10.0.1.4\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1/volumes/pws-sdk-vol-1/snapshots/pws-sdk-snapshot-1?api-version=2017-08-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlR3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wd3Mtc2RrLWFjYy0xL2NhcGFjaXR5UG9vbHMvcHdzLXNkay1wb29sLTEvdm9sdW1lcy9wd3Mtc2RrLXZvbC0xL3NuYXBzaG90cy9wd3Mtc2RrLXNuYXBzaG90LTE/YXBpLXZlcnNpb249MjAxNy0wOC0xNQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"fileSystemId\": \"90d97765-b611-8e3e-7744-ad1a1d13fed4\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "330da216-7987-4b0f-9c83-91c9bee3c175" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/0.9.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "114" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c25cc84e-92be-48df-a2a3-351db3f7c8ae" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "a9b2cab7-4547-4ef1-9e92-71e9486760f5" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20190313T131150Z:a9b2cab7-4547-4ef1-9e92-71e9486760f5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 13:11:49 GMT" + ], + "Content-Length": [ + "639" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1/volumes/pws-sdk-vol-1/snapshots/pws-sdk-snapshot-1\",\r\n \"name\": \"pws-sdk-acc-1/pws-sdk-pool-1/pws-sdk-vol-1/pws-sdk-snapshot-1\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots\",\r\n \"etag\": \"3/13/2019 1:11:50 PM\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"snapshotId\": \"c26be663-5acd-739b-e9e9-a69730e75748\",\r\n \"fileSystemId\": \"90d97765-b611-8e3e-7744-ad1a1d13fed4\",\r\n \"name\": \"pws-sdk-snapshot-1\",\r\n \"created\": \"2019-03-13T13:11:47Z\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourcegroups/pws-sdk-tests-rg-1?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlZ3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6dbd945c-f270-46dd-a235-fbf834e708ab" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.13" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "e55914fa-70ee-455a-ac9f-c79203e4a10f" + ], + "x-ms-correlation-request-id": [ + "e55914fa-70ee-455a-ac9f-c79203e4a10f" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20190313T131155Z:e55914fa-70ee-455a-ac9f-c79203e4a10f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 13:11:54 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVjFNNk1rUlRSRXM2TWtSVVJWTlVVem95UkZKSE9qSkVNUzFYUlZOVVZWTXlJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNeUluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.13" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "2c30afa1-f944-4908-ba75-ba89a912fd91" + ], + "x-ms-correlation-request-id": [ + "2c30afa1-f944-4908-ba75-ba89a912fd91" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20190313T131210Z:2c30afa1-f944-4908-ba75-ba89a912fd91" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 13:12:10 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVjFNNk1rUlRSRXM2TWtSVVJWTlVVem95UkZKSE9qSkVNUzFYUlZOVVZWTXlJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNeUluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.13" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "6ff1a11d-2cb1-436d-a93a-c6a308ec988c" + ], + "x-ms-correlation-request-id": [ + "6ff1a11d-2cb1-436d-a93a-c6a308ec988c" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20190313T131226Z:6ff1a11d-2cb1-436d-a93a-c6a308ec988c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 13:12:25 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVjFNNk1rUlRSRXM2TWtSVVJWTlVVem95UkZKSE9qSkVNUzFYUlZOVVZWTXlJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNeUluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.13" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "08ac1fb8-5f99-469c-aec6-1bf4f4d34a11" + ], + "x-ms-correlation-request-id": [ + "08ac1fb8-5f99-469c-aec6-1bf4f4d34a11" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20190313T131242Z:08ac1fb8-5f99-469c-aec6-1bf4f4d34a11" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 13:12:41 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVjFNNk1rUlRSRXM2TWtSVVJWTlVVem95UkZKSE9qSkVNUzFYUlZOVVZWTXlJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNeUluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.13" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "90d30b7b-fb14-4c33-bd59-a2bca20e30f4" + ], + "x-ms-correlation-request-id": [ + "90d30b7b-fb14-4c33-bd59-a2bca20e30f4" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20190313T131257Z:90d30b7b-fb14-4c33-bd59-a2bca20e30f4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 13:12:57 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVjFNNk1rUlRSRXM2TWtSVVJWTlVVem95UkZKSE9qSkVNUzFYUlZOVVZWTXlJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNeUluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.13" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "25393994-e30d-4491-8c56-bfaf8cef17d2" + ], + "x-ms-correlation-request-id": [ + "25393994-e30d-4491-8c56-bfaf8cef17d2" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20190313T131313Z:25393994-e30d-4491-8c56-bfaf8cef17d2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 13:13:12 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVjFNNk1rUlRSRXM2TWtSVVJWTlVVem95UkZKSE9qSkVNUzFYUlZOVVZWTXlJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNeUluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.13" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-request-id": [ + "abe3bd79-d2f6-4a32-ba21-aa6e4447ce63" + ], + "x-ms-correlation-request-id": [ + "abe3bd79-d2f6-4a32-ba21-aa6e4447ce63" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20190313T131328Z:abe3bd79-d2f6-4a32-ba21-aa6e4447ce63" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 13:13:27 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVjFNNk1rUlRSRXM2TWtSVVJWTlVVem95UkZKSE9qSkVNUzFYUlZOVVZWTXlJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNeUluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.13" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-request-id": [ + "9eeacc21-d429-4c81-b075-534add6c7dea" + ], + "x-ms-correlation-request-id": [ + "9eeacc21-d429-4c81-b075-534add6c7dea" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20190313T131344Z:9eeacc21-d429-4c81-b075-534add6c7dea" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 13:13:43 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVjFNNk1rUlRSRXM2TWtSVVJWTlVVem95UkZKSE9qSkVNUzFYUlZOVVZWTXlJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNeUluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.13" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-request-id": [ + "9fa7df5f-f6fc-4929-a485-48ce24c4ffaf" + ], + "x-ms-correlation-request-id": [ + "9fa7df5f-f6fc-4929-a485-48ce24c4ffaf" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20190313T131359Z:9fa7df5f-f6fc-4929-a485-48ce24c4ffaf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 13:13:59 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVjFNNk1rUlRSRXM2TWtSVVJWTlVVem95UkZKSE9qSkVNUzFYUlZOVVZWTXlJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNeUluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.13" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-request-id": [ + "3fb2db24-e1a9-4b3d-b568-d15207faf41a" + ], + "x-ms-correlation-request-id": [ + "3fb2db24-e1a9-4b3d-b568-d15207faf41a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20190313T131415Z:3fb2db24-e1a9-4b3d-b568-d15207faf41a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 13:14:15 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVjFNNk1rUlRSRXM2TWtSVVJWTlVVem95UkZKSE9qSkVNUzFYUlZOVVZWTXlJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNeUluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.13" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-request-id": [ + "dade146e-e880-48db-8bef-9ee1841c860f" + ], + "x-ms-correlation-request-id": [ + "dade146e-e880-48db-8bef-9ee1841c860f" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20190313T131430Z:dade146e-e880-48db-8bef-9ee1841c860f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 13:14:30 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVjFNNk1rUlRSRXM2TWtSVVJWTlVVem95UkZKSE9qSkVNUzFYUlZOVVZWTXlJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNeUluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.13" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-request-id": [ + "0f5176fb-ad59-4600-907d-b77b0ae37f2e" + ], + "x-ms-correlation-request-id": [ + "0f5176fb-ad59-4600-907d-b77b0ae37f2e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20190313T131446Z:0f5176fb-ad59-4600-907d-b77b0ae37f2e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 13:14:45 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVjFNNk1rUlRSRXM2TWtSVVJWTlVVem95UkZKSE9qSkVNUzFYUlZOVVZWTXlJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNeUluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.13" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-request-id": [ + "fd4c8b22-b7a1-4442-ab3c-a44fdfc4458a" + ], + "x-ms-correlation-request-id": [ + "fd4c8b22-b7a1-4442-ab3c-a44fdfc4458a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20190313T131502Z:fd4c8b22-b7a1-4442-ab3c-a44fdfc4458a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 13:15:01 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVjFNNk1rUlRSRXM2TWtSVVJWTlVVem95UkZKSE9qSkVNUzFYUlZOVVZWTXlJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNeUluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.13" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-request-id": [ + "4861af02-14a4-4f69-a4bc-04a2b43fb9d5" + ], + "x-ms-correlation-request-id": [ + "4861af02-14a4-4f69-a4bc-04a2b43fb9d5" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20190313T131517Z:4861af02-14a4-4f69-a4bc-04a2b43fb9d5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 13:15:16 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVjFNNk1rUlRSRXM2TWtSVVJWTlVVem95UkZKSE9qSkVNUzFYUlZOVVZWTXlJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNeUluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.13" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-request-id": [ + "06cd87d3-fa41-4198-aea1-aca62ef6a10d" + ], + "x-ms-correlation-request-id": [ + "06cd87d3-fa41-4198-aea1-aca62ef6a10d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20190313T131533Z:06cd87d3-fa41-4198-aea1-aca62ef6a10d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 13:15:32 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVjFNNk1rUlRSRXM2TWtSVVJWTlVVem95UkZKSE9qSkVNUzFYUlZOVVZWTXlJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNeUluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.13" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-request-id": [ + "a4657eb1-f500-4d4e-8d4c-ad3b9166c379" + ], + "x-ms-correlation-request-id": [ + "a4657eb1-f500-4d4e-8d4c-ad3b9166c379" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20190313T131548Z:a4657eb1-f500-4d4e-8d4c-ad3b9166c379" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 13:15:48 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVjFNNk1rUlRSRXM2TWtSVVJWTlVVem95UkZKSE9qSkVNUzFYUlZOVVZWTXlJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNeUluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.13" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-request-id": [ + "1883042f-712e-4bdb-927f-acbb87052a75" + ], + "x-ms-correlation-request-id": [ + "1883042f-712e-4bdb-927f-acbb87052a75" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20190313T131604Z:1883042f-712e-4bdb-927f-acbb87052a75" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 13:16:03 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVjFNNk1rUlRSRXM2TWtSVVJWTlVVem95UkZKSE9qSkVNUzFYUlZOVVZWTXlJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNeUluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.13" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], + "x-ms-request-id": [ + "fa2b1210-2891-40c6-8ab0-e5462f7823c3" + ], + "x-ms-correlation-request-id": [ + "fa2b1210-2891-40c6-8ab0-e5462f7823c3" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20190313T131619Z:fa2b1210-2891-40c6-8ab0-e5462f7823c3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 13:16:19 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVjFNNk1rUlRSRXM2TWtSVVJWTlVVem95UkZKSE9qSkVNUzFYUlZOVVZWTXlJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNeUluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.13" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" + ], + "x-ms-request-id": [ + "9ceb681c-7c72-4f69-8297-b53802bbcbc9" + ], + "x-ms-correlation-request-id": [ + "9ceb681c-7c72-4f69-8297-b53802bbcbc9" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20190313T131635Z:9ceb681c-7c72-4f69-8297-b53802bbcbc9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 13:16:34 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVjFNNk1rUlRSRXM2TWtSVVJWTlVVem95UkZKSE9qSkVNUzFYUlZOVVZWTXlJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNeUluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.13" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" + ], + "x-ms-request-id": [ + "db00683f-f9ae-46e6-83ae-2824962a227b" + ], + "x-ms-correlation-request-id": [ + "db00683f-f9ae-46e6-83ae-2824962a227b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20190313T131650Z:db00683f-f9ae-46e6-83ae-2824962a227b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 13:16:50 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVjFNNk1rUlRSRXM2TWtSVVJWTlVVem95UkZKSE9qSkVNUzFYUlZOVVZWTXlJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNeUluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.13" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11980" + ], + "x-ms-request-id": [ + "2099e58b-793b-4244-bce3-9c86fcd49ef5" + ], + "x-ms-correlation-request-id": [ + "2099e58b-793b-4244-bce3-9c86fcd49ef5" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20190313T131706Z:2099e58b-793b-4244-bce3-9c86fcd49ef5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 13:17:05 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVjFNNk1rUlRSRXM2TWtSVVJWTlVVem95UkZKSE9qSkVNUzFYUlZOVVZWTXlJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNeUluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.13" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11979" + ], + "x-ms-request-id": [ + "fb53d1a9-f4ef-4b1d-a749-0ab94bfa2141" + ], + "x-ms-correlation-request-id": [ + "fb53d1a9-f4ef-4b1d-a749-0ab94bfa2141" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20190313T131721Z:fb53d1a9-f4ef-4b1d-a749-0ab94bfa2141" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 13:17:21 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVjFNNk1rUlRSRXM2TWtSVVJWTlVVem95UkZKSE9qSkVNUzFYUlZOVVZWTXlJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNeUluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.13" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11978" + ], + "x-ms-request-id": [ + "a3a9bb39-fdab-4439-a062-2d640dbf35ff" + ], + "x-ms-correlation-request-id": [ + "a3a9bb39-fdab-4439-a062-2d640dbf35ff" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20190313T131737Z:a3a9bb39-fdab-4439-a062-2d640dbf35ff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 13:17:37 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVjFNNk1rUlRSRXM2TWtSVVJWTlVVem95UkZKSE9qSkVNUzFYUlZOVVZWTXlJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNeUluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.13" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11977" + ], + "x-ms-request-id": [ + "8ee2971d-0694-4099-ac76-18c81095eab9" + ], + "x-ms-correlation-request-id": [ + "8ee2971d-0694-4099-ac76-18c81095eab9" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20190313T131738Z:8ee2971d-0694-4099-ac76-18c81095eab9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 13:17:37 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "f557b96d-2308-4a18-aae1-b8f7e7e70cc7" + } +} \ No newline at end of file diff --git a/src/Anf/Anf.Test/SessionRecords/Microsoft.Azure.Commands.Anf.Test.ScenarioTests.ScenarioTest.VolumeTests/TestVolumeCrud.json b/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.VolumeTests/TestVolumeCrud.json similarity index 73% rename from src/Anf/Anf.Test/SessionRecords/Microsoft.Azure.Commands.Anf.Test.ScenarioTests.ScenarioTest.VolumeTests/TestVolumeCrud.json rename to src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.VolumeTests/TestVolumeCrud.json index 976918062f96..901307545715 100644 --- a/src/Anf/Anf.Test/SessionRecords/Microsoft.Azure.Commands.Anf.Test.ScenarioTests.ScenarioTest.VolumeTests/TestVolumeCrud.json +++ b/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.VolumeTests/TestVolumeCrud.json @@ -7,7 +7,7 @@ "RequestBody": "{\r\n \"location\": \"westus2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "7b4da2cd-3347-45f6-8009-ac2d746ee230" + "182d9684-f8aa-4af4-91c7-11144fcd583d" ], "Accept-Language": [ "en-US" @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "56ca8681-1e18-4a12-a38a-004c41577bc1" + "4db6ecea-9582-448f-b931-b26d9adff694" ], "x-ms-correlation-request-id": [ - "56ca8681-1e18-4a12-a38a-004c41577bc1" + "4db6ecea-9582-448f-b931-b26d9adff694" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T170409Z:56ca8681-1e18-4a12-a38a-004c41577bc1" + "WESTEUROPE:20190313T132352Z:4db6ecea-9582-448f-b931-b26d9adff694" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:04:09 GMT" + "Wed, 13 Mar 2019 13:23:52 GMT" ], "Content-Length": [ "190" @@ -73,7 +73,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "16c6541e-b778-4a2b-8a1b-23faed92cba7" + "c6d25b93-e710-449d-9636-faea10f05c22" ], "Accept-Language": [ "en-US" @@ -96,13 +96,13 @@ "gateway" ], "x-ms-request-id": [ - "e2dc5cc9-e0e6-426c-b3b9-55f0a9d346c3" + "0d10e9d5-d7be-4635-9074-7f3de6b275ba" ], "x-ms-correlation-request-id": [ - "e2dc5cc9-e0e6-426c-b3b9-55f0a9d346c3" + "0d10e9d5-d7be-4635-9074-7f3de6b275ba" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T170407Z:e2dc5cc9-e0e6-426c-b3b9-55f0a9d346c3" + "WESTEUROPE:20190313T132353Z:0d10e9d5-d7be-4635-9074-7f3de6b275ba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:04:07 GMT" + "Wed, 13 Mar 2019 13:23:53 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -147,13 +147,13 @@ "no-cache" ], "ETag": [ - "W/\"605822cf-9ab8-408f-8a3a-c88f52ae3b7d\"" + "W/\"5180baba-eae3-40fa-b3d2-bde72b4d14ff\"" ], "x-ms-request-id": [ - "355e92cd-3862-4635-b242-306a7ed63de7" + "82105cc5-30b7-4a9e-ab58-56fbe3edffc7" ], "x-ms-correlation-request-id": [ - "21a1d000-2f73-438e-bef6-cf215b0a0a5c" + "c7b74641-e6a0-40a8-af30-2b725f9bdcb0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -166,13 +166,13 @@ "11997" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T170417Z:21a1d000-2f73-438e-bef6-cf215b0a0a5c" + "WESTEUROPE:20190313T132402Z:c7b74641-e6a0-40a8-af30-2b725f9bdcb0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:04:17 GMT" + "Wed, 13 Mar 2019 13:24:02 GMT" ], "Content-Length": [ "678" @@ -184,7 +184,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"pws-sdk-tests-rg-1-vnet\",\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet\",\r\n \"etag\": \"W/\\\"605822cf-9ab8-408f-8a3a-c88f52ae3b7d\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7242a972-8f58-4c87-abdb-937bcc61a52b\",\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\": \"pws-sdk-tests-rg-1-vnet\",\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet\",\r\n \"etag\": \"W/\\\"5180baba-eae3-40fa-b3d2-bde72b4d14ff\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b50ac31a-9a30-4523-bbc0-c69e03e28729\",\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 }, { @@ -194,7 +194,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ffae5eeb-0b99-4bba-87ce-4c2a1d61a4af" + "2757738c-36ed-48cc-82b7-bb0e5a9e877c" ], "Accept-Language": [ "en-US" @@ -214,13 +214,13 @@ "no-cache" ], "ETag": [ - "W/\"605822cf-9ab8-408f-8a3a-c88f52ae3b7d\"" + "W/\"5180baba-eae3-40fa-b3d2-bde72b4d14ff\"" ], "x-ms-request-id": [ - "bb0eaa88-c1d4-47d5-84ac-3af00fe79cd4" + "5a32691a-6d3d-4b2d-acee-715134a4a592" ], "x-ms-correlation-request-id": [ - "ddbfce25-17d4-41f7-9d85-8cc66c34420c" + "175b5482-56de-46df-ae6d-fdd292022903" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -233,13 +233,13 @@ "11996" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T170417Z:ddbfce25-17d4-41f7-9d85-8cc66c34420c" + "WESTEUROPE:20190313T132403Z:175b5482-56de-46df-ae6d-fdd292022903" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:04:17 GMT" + "Wed, 13 Mar 2019 13:24:02 GMT" ], "Content-Length": [ "678" @@ -251,7 +251,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"pws-sdk-tests-rg-1-vnet\",\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet\",\r\n \"etag\": \"W/\\\"605822cf-9ab8-408f-8a3a-c88f52ae3b7d\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7242a972-8f58-4c87-abdb-937bcc61a52b\",\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\": \"pws-sdk-tests-rg-1-vnet\",\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet\",\r\n \"etag\": \"W/\\\"5180baba-eae3-40fa-b3d2-bde72b4d14ff\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b50ac31a-9a30-4523-bbc0-c69e03e28729\",\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 }, { @@ -261,7 +261,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "26500fa3-85ff-4a65-a452-3a248773199b" + "76d1fe79-64bd-4c8b-bf63-a9c23796cecf" ], "Accept-Language": [ "en-US" @@ -281,13 +281,13 @@ "no-cache" ], "ETag": [ - "W/\"605822cf-9ab8-408f-8a3a-c88f52ae3b7d\"" + "W/\"5180baba-eae3-40fa-b3d2-bde72b4d14ff\"" ], "x-ms-request-id": [ - "77cd354e-ccc9-4f9e-aad4-3be664cf8f01" + "0a2cb159-9dac-4ea4-9151-f89b0fda6f89" ], "x-ms-correlation-request-id": [ - "9b3cfe07-1ceb-4cba-99d0-71a7cc8f10a1" + "8f632029-0ea3-4bb2-a194-5699c45c254d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -300,13 +300,13 @@ "11995" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T170418Z:9b3cfe07-1ceb-4cba-99d0-71a7cc8f10a1" + "WESTEUROPE:20190313T132403Z:8f632029-0ea3-4bb2-a194-5699c45c254d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:04:17 GMT" + "Wed, 13 Mar 2019 13:24:03 GMT" ], "Content-Length": [ "678" @@ -318,7 +318,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"pws-sdk-tests-rg-1-vnet\",\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet\",\r\n \"etag\": \"W/\\\"605822cf-9ab8-408f-8a3a-c88f52ae3b7d\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7242a972-8f58-4c87-abdb-937bcc61a52b\",\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\": \"pws-sdk-tests-rg-1-vnet\",\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet\",\r\n \"etag\": \"W/\\\"5180baba-eae3-40fa-b3d2-bde72b4d14ff\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b50ac31a-9a30-4523-bbc0-c69e03e28729\",\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 }, { @@ -342,13 +342,13 @@ "no-cache" ], "ETag": [ - "W/\"b4c78962-fe71-4dee-a013-256122b77fe7\"" + "W/\"4ffb1f63-7a6f-49b2-9cf1-dfb9e8f5718f\"" ], "x-ms-request-id": [ - "e94aec39-7775-4992-8661-f28caea27483" + "2d75bd31-b323-406f-9c9c-6eb1a4e1e131" ], "x-ms-correlation-request-id": [ - "cd3c0517-3a1c-4041-80cd-79c576e6eaa6" + "be6c5535-ecc5-4302-b284-adc1858a77ab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -361,13 +361,13 @@ "11993" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T170422Z:cd3c0517-3a1c-4041-80cd-79c576e6eaa6" + "WESTEUROPE:20190313T132407Z:be6c5535-ecc5-4302-b284-adc1858a77ab" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:04:22 GMT" + "Wed, 13 Mar 2019 13:24:06 GMT" ], "Content-Length": [ "2120" @@ -379,7 +379,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"pws-sdk-tests-rg-1-vnet\",\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet\",\r\n \"etag\": \"W/\\\"b4c78962-fe71-4dee-a013-256122b77fe7\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7242a972-8f58-4c87-abdb-937bcc61a52b\",\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/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"b4c78962-fe71-4dee-a013-256122b77fe7\\\"\",\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/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"b4c78962-fe71-4dee-a013-256122b77fe7\\\"\",\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 },\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\": \"pws-sdk-tests-rg-1-vnet\",\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet\",\r\n \"etag\": \"W/\\\"4ffb1f63-7a6f-49b2-9cf1-dfb9e8f5718f\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b50ac31a-9a30-4523-bbc0-c69e03e28729\",\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/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"4ffb1f63-7a6f-49b2-9cf1-dfb9e8f5718f\\\"\",\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/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"4ffb1f63-7a6f-49b2-9cf1-dfb9e8f5718f\\\"\",\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 },\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 }, { @@ -389,7 +389,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dafd05e4-51ef-4719-8220-2c53389d995c" + "1a0de5a4-6027-4e50-aa31-9b3b2fba6b2c" ], "Accept-Language": [ "en-US" @@ -409,13 +409,13 @@ "no-cache" ], "ETag": [ - "W/\"b4c78962-fe71-4dee-a013-256122b77fe7\"" + "W/\"4ffb1f63-7a6f-49b2-9cf1-dfb9e8f5718f\"" ], "x-ms-request-id": [ - "006e649d-4d79-4188-98a3-d38e2dd2492a" + "12cdb863-509c-42c9-9485-2af507650a5a" ], "x-ms-correlation-request-id": [ - "9bba6da6-5d7f-49f7-acaf-6659b7f46e22" + "425c8e4f-5c87-4a86-bc2f-06868bfa260c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -428,13 +428,13 @@ "11992" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T170423Z:9bba6da6-5d7f-49f7-acaf-6659b7f46e22" + "WESTEUROPE:20190313T132407Z:425c8e4f-5c87-4a86-bc2f-06868bfa260c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:04:22 GMT" + "Wed, 13 Mar 2019 13:24:07 GMT" ], "Content-Length": [ "2120" @@ -446,7 +446,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"pws-sdk-tests-rg-1-vnet\",\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet\",\r\n \"etag\": \"W/\\\"b4c78962-fe71-4dee-a013-256122b77fe7\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7242a972-8f58-4c87-abdb-937bcc61a52b\",\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/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"b4c78962-fe71-4dee-a013-256122b77fe7\\\"\",\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/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"b4c78962-fe71-4dee-a013-256122b77fe7\\\"\",\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 },\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\": \"pws-sdk-tests-rg-1-vnet\",\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet\",\r\n \"etag\": \"W/\\\"4ffb1f63-7a6f-49b2-9cf1-dfb9e8f5718f\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b50ac31a-9a30-4523-bbc0-c69e03e28729\",\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/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"4ffb1f63-7a6f-49b2-9cf1-dfb9e8f5718f\\\"\",\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/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"4ffb1f63-7a6f-49b2-9cf1-dfb9e8f5718f\\\"\",\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 },\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 }, { @@ -456,7 +456,7 @@ "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 },\r\n \"location\": \"westus2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "a45f381f-2a32-4f6f-8443-ab3d5963709b" + "c5091f8a-aba0-4b47-8180-a0dbac54afd7" ], "Accept-Language": [ "en-US" @@ -485,32 +485,32 @@ "3" ], "x-ms-request-id": [ - "15db797e-e130-4c31-9222-c055876fcc04" + "8d72ce45-5019-4b92-8999-6412de95a7d1" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.Network/locations/westus2/operations/15db797e-e130-4c31-9222-c055876fcc04?api-version=2018-11-01" + "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.Network/locations/westus2/operations/8d72ce45-5019-4b92-8999-6412de95a7d1?api-version=2018-11-01" ], "x-ms-correlation-request-id": [ - "c951e05d-b16b-47aa-8def-696425abea11" + "87ac5061-b980-400e-8b04-c251c4586566" ], "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": [ - "SOUTHEASTASIA:20190227T170412Z:c951e05d-b16b-47aa-8def-696425abea11" + "WESTEUROPE:20190313T132358Z:87ac5061-b980-400e-8b04-c251c4586566" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:04:12 GMT" + "Wed, 13 Mar 2019 13:23:58 GMT" ], "Content-Length": [ "677" @@ -522,17 +522,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"pws-sdk-tests-rg-1-vnet\",\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet\",\r\n \"etag\": \"W/\\\"0130aeed-d298-4971-9d9d-a18519d03259\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"7242a972-8f58-4c87-abdb-937bcc61a52b\",\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\": \"pws-sdk-tests-rg-1-vnet\",\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet\",\r\n \"etag\": \"W/\\\"9f5a9739-dfeb-43df-b4d5-a44a40a872bb\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"b50ac31a-9a30-4523-bbc0-c69e03e28729\",\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/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet?api-version=2018-11-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlR3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3B3cy1zZGstdGVzdHMtcmctMS12bmV0P2FwaS12ZXJzaW9uPTIwMTgtMTEtMDE=", "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 \"resourceNavigationLinks\": [],\r\n \"serviceAssociationLinks\": [],\r\n \"delegations\": [\r\n {\r\n \"properties\": {\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": []\r\n },\r\n \"name\": \"netAppVolumes\"\r\n }\r\n ]\r\n },\r\n \"name\": \"default\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"resourceGuid\": \"7242a972-8f58-4c87-abdb-937bcc61a52b\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"enableDdosProtection\": false\r\n },\r\n \"etag\": \"W/\\\"605822cf-9ab8-408f-8a3a-c88f52ae3b7d\\\"\",\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-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 \"resourceNavigationLinks\": [],\r\n \"serviceAssociationLinks\": [],\r\n \"delegations\": [\r\n {\r\n \"properties\": {\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": []\r\n },\r\n \"name\": \"netAppVolumes\"\r\n }\r\n ]\r\n },\r\n \"name\": \"default\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"resourceGuid\": \"b50ac31a-9a30-4523-bbc0-c69e03e28729\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"enableDdosProtection\": false\r\n },\r\n \"etag\": \"W/\\\"5180baba-eae3-40fa-b3d2-bde72b4d14ff\\\"\",\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet\",\r\n \"location\": \"westus2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "ca2d24c7-e0a4-4488-beb5-410e2558ccf5" + "05b8c20b-c970-4175-80af-00d35cd0ea5c" ], "Accept-Language": [ "en-US" @@ -561,13 +561,13 @@ "3" ], "x-ms-request-id": [ - "a39f709b-d6b8-4073-a058-425fcd20a537" + "6ad86e4e-a05d-4879-b060-06d67b5f2cd2" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.Network/locations/westus2/operations/a39f709b-d6b8-4073-a058-425fcd20a537?api-version=2018-11-01" + "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.Network/locations/westus2/operations/6ad86e4e-a05d-4879-b060-06d67b5f2cd2?api-version=2018-11-01" ], "x-ms-correlation-request-id": [ - "e7397830-8413-4e59-9916-069550ba3b91" + "d9241b5c-72b9-4be8-b4f7-312c568c9430" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -580,13 +580,13 @@ "1198" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T170418Z:e7397830-8413-4e59-9916-069550ba3b91" + "WESTEUROPE:20190313T132403Z:d9241b5c-72b9-4be8-b4f7-312c568c9430" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:04:18 GMT" + "Wed, 13 Mar 2019 13:24:03 GMT" ], "Content-Length": [ "2118" @@ -598,12 +598,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"pws-sdk-tests-rg-1-vnet\",\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet\",\r\n \"etag\": \"W/\\\"357cbf5c-0890-4559-8754-2e75163b5393\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"7242a972-8f58-4c87-abdb-937bcc61a52b\",\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/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"357cbf5c-0890-4559-8754-2e75163b5393\\\"\",\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/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"357cbf5c-0890-4559-8754-2e75163b5393\\\"\",\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 },\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\": \"pws-sdk-tests-rg-1-vnet\",\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet\",\r\n \"etag\": \"W/\\\"638611ab-d5e8-488e-8a3d-0c76e710f064\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"b50ac31a-9a30-4523-bbc0-c69e03e28729\",\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/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"638611ab-d5e8-488e-8a3d-0c76e710f064\\\"\",\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/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"638611ab-d5e8-488e-8a3d-0c76e710f064\\\"\",\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 },\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/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.Network/locations/westus2/operations/15db797e-e130-4c31-9222-c055876fcc04?api-version=2018-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzE1ZGI3OTdlLWUxMzAtNGMzMS05MjIyLWMwNTU4NzZmY2MwND9hcGktdmVyc2lvbj0yMDE4LTExLTAx", + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.Network/locations/westus2/operations/8d72ce45-5019-4b92-8999-6412de95a7d1?api-version=2018-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzhkNzJjZTQ1LTUwMTktNGI5Mi04OTk5LTY0MTJkZTk1YTdkMT9hcGktdmVyc2lvbj0yMDE4LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -622,10 +622,10 @@ "no-cache" ], "x-ms-request-id": [ - "b44908c1-0b4e-4e12-8cd9-058861717b17" + "8bd4738d-207a-440e-ad8c-b28881e807ab" ], "x-ms-correlation-request-id": [ - "d5131860-dcfe-4ccd-a29e-7648f329cbab" + "dfa9b9e6-440e-4221-afe0-da87f8d4e19f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -638,13 +638,13 @@ "11998" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T170416Z:d5131860-dcfe-4ccd-a29e-7648f329cbab" + "WESTEUROPE:20190313T132402Z:dfa9b9e6-440e-4221-afe0-da87f8d4e19f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:04:16 GMT" + "Wed, 13 Mar 2019 13:24:01 GMT" ], "Content-Length": [ "29" @@ -660,8 +660,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.Network/locations/westus2/operations/a39f709b-d6b8-4073-a058-425fcd20a537?api-version=2018-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2EzOWY3MDliLWQ2YjgtNDA3My1hMDU4LTQyNWZjZDIwYTUzNz9hcGktdmVyc2lvbj0yMDE4LTExLTAx", + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.Network/locations/westus2/operations/6ad86e4e-a05d-4879-b060-06d67b5f2cd2?api-version=2018-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzZhZDg2ZTRlLWEwNWQtNDg3OS1iMDYwLTA2ZDY3YjVmMmNkMj9hcGktdmVyc2lvbj0yMDE4LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -680,10 +680,10 @@ "no-cache" ], "x-ms-request-id": [ - "29aa509a-c232-4f52-834d-b5cb49ed8517" + "99f44990-f6ce-4f36-9e5a-ffb5f3159c15" ], "x-ms-correlation-request-id": [ - "32430276-a1d1-4c47-80f1-08f403628d7e" + "c25499c6-b9fc-45dd-ab16-a16a27035e97" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -696,13 +696,13 @@ "11994" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T170422Z:32430276-a1d1-4c47-80f1-08f403628d7e" + "WESTEUROPE:20190313T132407Z:c25499c6-b9fc-45dd-ab16-a16a27035e97" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:04:21 GMT" + "Wed, 13 Mar 2019 13:24:06 GMT" ], "Content-Length": [ "29" @@ -718,13 +718,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-2?api-version=2017-08-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlR3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wd3Mtc2RrLWFjYy0yP2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1?api-version=2017-08-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlR3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wd3Mtc2RrLWFjYy0xP2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "ab16fb48-d624-4eda-b2f9-62f542f28c8d" + "87b235c0-71c7-4626-8065-32477e9bfb17" ], "Accept-Language": [ "en-US" @@ -750,13 +750,13 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2019-02-27T17%3A04%3A27.5271311Z'\"" + "W/\"datetime'2019-03-13T13%3A24%3A11.020654Z'\"" ], "x-ms-request-id": [ - "e133bd5a-c0e3-41ee-a180-11af781d38e0" + "fbd1ee6f-56d4-44d5-8f93-29654e6d04c0" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/2c5fdb1a-b19a-41d7-9672-7005f22bd28a?api-version=2017-08-15" + "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/17b506f5-1a2e-4b3d-b988-6154fffa02e7?api-version=2017-08-15" ], "Server": [ "Microsoft-IIS/10.0" @@ -768,10 +768,10 @@ "1199" ], "x-ms-correlation-request-id": [ - "a3df6b73-cb4b-4712-a7c2-05d8ee7fa785" + "cc801ee5-dc40-432a-a76c-f02810f15800" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T170430Z:a3df6b73-cb4b-4712-a7c2-05d8ee7fa785" + "WESTEUROPE:20190313T132411Z:cc801ee5-dc40-432a-a76c-f02810f15800" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -780,10 +780,10 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:04:30 GMT" + "Wed, 13 Mar 2019 13:24:11 GMT" ], "Content-Length": [ - "362" + "361" ], "Content-Type": [ "application/json; charset=utf-8" @@ -792,12 +792,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-2\",\r\n \"name\": \"pws-sdk-acc-2\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2019-02-27T17%3A04%3A27.5271311Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"name\": \"pws-sdk-acc-2\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1\",\r\n \"name\": \"pws-sdk-acc-1\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2019-03-13T13%3A24%3A11.020654Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"name\": \"pws-sdk-acc-1\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/2c5fdb1a-b19a-41d7-9672-7005f22bd28a?api-version=2017-08-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvMmM1ZmRiMWEtYjE5YS00MWQ3LTk2NzItNzAwNWYyMmJkMjhhP2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/17b506f5-1a2e-4b3d-b988-6154fffa02e7?api-version=2017-08-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvMTdiNTA2ZjUtMWEyZS00YjNkLWI5ODgtNjE1NGZmZmEwMmU3P2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -816,7 +816,7 @@ "no-cache" ], "x-ms-request-id": [ - "1553cf3e-f1a6-4dd2-9ba0-7429ac87ffeb" + "07ee1006-492e-4a5f-b28f-c410b5522082" ], "Server": [ "Microsoft-IIS/10.0" @@ -828,10 +828,10 @@ "11999" ], "x-ms-correlation-request-id": [ - "1cb7a242-c6a1-496e-afce-f12f339747c8" + "4095de43-d17c-463c-963f-822afad33e54" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T170501Z:1cb7a242-c6a1-496e-afce-f12f339747c8" + "WESTEUROPE:20190313T132442Z:4095de43-d17c-463c-963f-822afad33e54" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -840,7 +840,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:05:01 GMT" + "Wed, 13 Mar 2019 13:24:41 GMT" ], "Content-Length": [ "508" @@ -852,12 +852,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/2c5fdb1a-b19a-41d7-9672-7005f22bd28a\",\r\n \"name\": \"2c5fdb1a-b19a-41d7-9672-7005f22bd28a\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-02-27T17:04:27.4335162Z\",\r\n \"endTime\": \"2019-02-27T17:04:27.7951518Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-2\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/17b506f5-1a2e-4b3d-b988-6154fffa02e7\",\r\n \"name\": \"17b506f5-1a2e-4b3d-b988-6154fffa02e7\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-03-13T13:24:10.9333888Z\",\r\n \"endTime\": \"2019-03-13T13:24:11.2927407Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-2?api-version=2017-08-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlR3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wd3Mtc2RrLWFjYy0yP2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1?api-version=2017-08-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlR3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wd3Mtc2RrLWFjYy0xP2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -876,10 +876,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2019-02-27T17%3A04%3A27.8153364Z'\"" + "W/\"datetime'2019-03-13T13%3A24%3A11.3498909Z'\"" ], "x-ms-request-id": [ - "5784cbd2-e617-418e-a49c-88a55197bcaa" + "8d4c1402-e1fd-4b14-a25f-5a5335a1a556" ], "Server": [ "Microsoft-IIS/10.0" @@ -891,10 +891,10 @@ "11998" ], "x-ms-correlation-request-id": [ - "30222769-d76c-4615-be71-97f5d3008582" + "43b29530-cd98-4c12-a844-c7e9d3920d41" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T170501Z:30222769-d76c-4615-be71-97f5d3008582" + "WESTEUROPE:20190313T132442Z:43b29530-cd98-4c12-a844-c7e9d3920d41" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -903,7 +903,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:05:01 GMT" + "Wed, 13 Mar 2019 13:24:41 GMT" ], "Content-Length": [ "363" @@ -915,17 +915,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-2\",\r\n \"name\": \"pws-sdk-acc-2\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2019-02-27T17%3A04%3A27.8153364Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"name\": \"pws-sdk-acc-2\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1\",\r\n \"name\": \"pws-sdk-acc-1\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2019-03-13T13%3A24%3A11.3498909Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"name\": \"pws-sdk-acc-1\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-2/capacityPools/pws-sdk-pool-1?api-version=2017-08-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlR3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wd3Mtc2RrLWFjYy0yL2NhcGFjaXR5UG9vbHMvcHdzLXNkay1wb29sLTE/YXBpLXZlcnNpb249MjAxNy0wOC0xNQ==", + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1?api-version=2017-08-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlR3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wd3Mtc2RrLWFjYy0xL2NhcGFjaXR5UG9vbHMvcHdzLXNkay1wb29sLTE/YXBpLXZlcnNpb249MjAxNy0wOC0xNQ==", "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": [ - "ee2cb45a-f4ee-4d73-9a4c-e2135a7844e4" + "e6f457e0-b8d2-4a51-89f4-f941baa3aa95" ], "Accept-Language": [ "en-US" @@ -951,13 +951,13 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2019-02-27T17%3A05%3A01.0839282Z'\"" + "W/\"datetime'2019-03-13T13%3A24%3A43.5010791Z'\"" ], "x-ms-request-id": [ - "89411523-83d1-4395-a991-009f2712d557" + "520f5c60-5bc3-4568-9390-8931b721eafd" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/33e52aa4-33ef-4a1d-8e9c-f2fe843e4e2a?api-version=2017-08-15" + "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/63448e7f-62aa-424e-99d1-e83701937215?api-version=2017-08-15" ], "Server": [ "Microsoft-IIS/10.0" @@ -969,10 +969,10 @@ "1198" ], "x-ms-correlation-request-id": [ - "1f1f9adc-6eaf-4c77-96eb-a95f1251e3bd" + "32bc8508-6eed-42e3-afd4-7732b493bcd3" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T170504Z:1f1f9adc-6eaf-4c77-96eb-a95f1251e3bd" + "WESTEUROPE:20190313T132444Z:32bc8508-6eed-42e3-afd4-7732b493bcd3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -981,7 +981,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:05:04 GMT" + "Wed, 13 Mar 2019 13:24:43 GMT" ], "Content-Length": [ "443" @@ -993,12 +993,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-2/capacityPools/pws-sdk-pool-1\",\r\n \"name\": \"pws-sdk-acc-2/pws-sdk-pool-1\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2019-02-27T17%3A05%3A01.0839282Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"size\": 4398046511104,\r\n \"serviceLevel\": \"Premium\",\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1\",\r\n \"name\": \"pws-sdk-acc-1/pws-sdk-pool-1\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2019-03-13T13%3A24%3A43.5010791Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"size\": 4398046511104,\r\n \"serviceLevel\": \"Premium\",\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/33e52aa4-33ef-4a1d-8e9c-f2fe843e4e2a?api-version=2017-08-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvMzNlNTJhYTQtMzNlZi00YTFkLThlOWMtZjJmZTg0M2U0ZTJhP2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/63448e7f-62aa-424e-99d1-e83701937215?api-version=2017-08-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvNjM0NDhlN2YtNjJhYS00MjRlLTk5ZDEtZTgzNzAxOTM3MjE1P2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1017,7 +1017,7 @@ "no-cache" ], "x-ms-request-id": [ - "d39020bd-aaf1-4b32-a946-1f3cf83038bb" + "77d56692-111a-4cf0-a8d0-82b1cacb1db7" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11997" @@ -1029,10 +1029,10 @@ "ASP.NET" ], "x-ms-correlation-request-id": [ - "a0e7db48-6134-4faf-a0e1-e57b4980b7ca" + "027b3f0a-1d83-4a16-a3dd-1afb35f46bb9" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T170534Z:a0e7db48-6134-4faf-a0e1-e57b4980b7ca" + "WESTEUROPE:20190313T132514Z:027b3f0a-1d83-4a16-a3dd-1afb35f46bb9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1041,7 +1041,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:05:33 GMT" + "Wed, 13 Mar 2019 13:25:13 GMT" ], "Content-Length": [ "537" @@ -1053,12 +1053,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/33e52aa4-33ef-4a1d-8e9c-f2fe843e4e2a\",\r\n \"name\": \"33e52aa4-33ef-4a1d-8e9c-f2fe843e4e2a\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-02-27T17:05:01.0434422Z\",\r\n \"endTime\": \"2019-02-27T17:05:01.4788739Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-2/capacityPools/pws-sdk-pool-1\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/63448e7f-62aa-424e-99d1-e83701937215\",\r\n \"name\": \"63448e7f-62aa-424e-99d1-e83701937215\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-03-13T13:24:43.3356039Z\",\r\n \"endTime\": \"2019-03-13T13:24:43.8824856Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-2/capacityPools/pws-sdk-pool-1?api-version=2017-08-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlR3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wd3Mtc2RrLWFjYy0yL2NhcGFjaXR5UG9vbHMvcHdzLXNkay1wb29sLTE/YXBpLXZlcnNpb249MjAxNy0wOC0xNQ==", + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1?api-version=2017-08-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlR3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wd3Mtc2RrLWFjYy0xL2NhcGFjaXR5UG9vbHMvcHdzLXNkay1wb29sLTE/YXBpLXZlcnNpb249MjAxNy0wOC0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1077,10 +1077,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2019-02-27T17%3A05%3A01.5122324Z'\"" + "W/\"datetime'2019-03-13T13%3A24%3A43.9333914Z'\"" ], "x-ms-request-id": [ - "e5a0e07c-0845-4393-94cf-c29f376940e6" + "c06e232a-e70c-4554-9944-ac02a8a61f2f" ], "Server": [ "Microsoft-IIS/10.0" @@ -1092,10 +1092,10 @@ "11996" ], "x-ms-correlation-request-id": [ - "56f03d64-36e3-4775-9633-e93c95292c18" + "325c2180-4da9-4f06-b45f-2b18fd5addfd" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T170536Z:56f03d64-36e3-4775-9633-e93c95292c18" + "WESTEUROPE:20190313T132515Z:325c2180-4da9-4f06-b45f-2b18fd5addfd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1104,7 +1104,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:05:35 GMT" + "Wed, 13 Mar 2019 13:25:14 GMT" ], "Content-Length": [ "530" @@ -1116,17 +1116,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-2/capacityPools/pws-sdk-pool-1\",\r\n \"name\": \"pws-sdk-acc-2/pws-sdk-pool-1\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2019-02-27T17%3A05%3A01.5122324Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"poolId\": \"0a919512-48fc-ceae-99b6-fad285b63598\",\r\n \"name\": \"pws-sdk-acc-2/pws-sdk-pool-1\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1\",\r\n \"name\": \"pws-sdk-acc-1/pws-sdk-pool-1\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2019-03-13T13%3A24%3A43.9333914Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"poolId\": \"a550d2d9-9aa3-4400-cedb-81e7a38acb84\",\r\n \"name\": \"pws-sdk-acc-1/pws-sdk-pool-1\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-2/capacityPools/pws-sdk-pool-1/volumes/pws-sdk-vol-1?api-version=2017-08-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlR3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wd3Mtc2RrLWFjYy0yL2NhcGFjaXR5UG9vbHMvcHdzLXNkay1wb29sLTEvdm9sdW1lcy9wd3Mtc2RrLXZvbC0xP2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1/volumes/pws-sdk-vol-1?api-version=2017-08-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlR3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wd3Mtc2RrLWFjYy0xL2NhcGFjaXR5UG9vbHMvcHdzLXNkay1wb29sLTEvdm9sdW1lcy9wd3Mtc2RrLXZvbC0xP2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"creationToken\": \"pws-sdk-vol-1\",\r\n \"serviceLevel\": \"Premium\",\r\n \"usageThreshold\": 107374182400,\r\n \"subnetId\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet/subnets/default\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"creationToken\": \"pws-sdk-vol-1\",\r\n \"serviceLevel\": \"Premium\",\r\n \"usageThreshold\": 107374182400,\r\n \"subnetId\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet/subnets/default\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "00c6e68f-209f-410a-85e7-aa4924abd5a3" + "8e81bca6-d96e-4c1f-a870-2aa5f4c32527" ], "Accept-Language": [ "en-US" @@ -1141,7 +1141,7 @@ "application/json; charset=utf-8" ], "Content-Length": [ - "351" + "395" ] }, "ResponseHeaders": { @@ -1152,13 +1152,13 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2019-02-27T17%3A05%3A35.6084131Z'\"" + "W/\"datetime'2019-03-13T13%3A25%3A17.0492759Z'\"" ], "x-ms-request-id": [ - "1adfecac-f707-46f1-9741-f1dd8636025f" + "d898fa2f-065e-4c69-b362-3363bd1a6e52" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/44b222f3-ea32-45e0-bd7e-b6860af627d6?api-version=2017-08-15" + "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/6747b79f-e2f9-4f5d-93bb-d5588cab4d62?api-version=2017-08-15" ], "Server": [ "Microsoft-IIS/10.0" @@ -1170,10 +1170,10 @@ "1197" ], "x-ms-correlation-request-id": [ - "ebaed633-76b7-495b-be3a-5d6669bbdeb7" + "f51693bb-7ae1-4fa5-a407-eaa8406c47d3" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T170538Z:ebaed633-76b7-495b-be3a-5d6669bbdeb7" + "WESTEUROPE:20190313T132517Z:f51693bb-7ae1-4fa5-a407-eaa8406c47d3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1182,10 +1182,10 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:05:37 GMT" + "Wed, 13 Mar 2019 13:25:16 GMT" ], "Content-Length": [ - "711" + "739" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1194,32 +1194,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-2/capacityPools/pws-sdk-pool-1/volumes/pws-sdk-vol-1\",\r\n \"name\": \"pws-sdk-acc-2/pws-sdk-pool-1/pws-sdk-vol-1\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2019-02-27T17%3A05%3A35.6084131Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"creationToken\": \"pws-sdk-vol-1\",\r\n \"serviceLevel\": \"Premium\",\r\n \"usageThreshold\": 107374182400,\r\n \"subnetId\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet/subnets/default\",\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1/volumes/pws-sdk-vol-1\",\r\n \"name\": \"pws-sdk-acc-1/pws-sdk-pool-1/pws-sdk-vol-1\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2019-03-13T13%3A25%3A17.0492759Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"creationToken\": \"pws-sdk-vol-1\",\r\n \"serviceLevel\": \"Premium\",\r\n \"usageThreshold\": 107374182400,\r\n \"subnetId\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet/subnets/default\",\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-2/capacityPools/pws-sdk-pool-1/volumes/pws-sdk-vol-1?api-version=2017-08-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlR3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wd3Mtc2RrLWFjYy0yL2NhcGFjaXR5UG9vbHMvcHdzLXNkay1wb29sLTEvdm9sdW1lcy9wd3Mtc2RrLXZvbC0xP2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"creationToken\": \"pws-sdk-vol-1\",\r\n \"serviceLevel\": \"Standard\",\r\n \"usageThreshold\": 107374182400,\r\n \"subnetId\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet/subnets/default\"\r\n }\r\n}", + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/6747b79f-e2f9-4f5d-93bb-d5588cab4d62?api-version=2017-08-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvNjc0N2I3OWYtZTJmOS00ZjVkLTkzYmItZDU1ODhjYWI0ZDYyP2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "8cb51eb7-2570-4c77-9a7a-6292c6f03b70" - ], - "Accept-Language": [ - "en-US" - ], "User-Agent": [ "FxVersion/4.6.27019.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17134.", "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/0.9.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "352" ] }, "ResponseHeaders": { @@ -1229,11 +1217,8 @@ "Pragma": [ "no-cache" ], - "ETag": [ - "W/\"datetime'2019-02-27T17%3A07%3A25.2561693Z'\"" - ], "x-ms-request-id": [ - "8f99f0ce-4848-4817-a314-d3da4a61e440" + "9e21d392-650d-45f5-9a66-fe9823bc2c3e" ], "Server": [ "Microsoft-IIS/10.0" @@ -1241,14 +1226,14 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" ], "x-ms-correlation-request-id": [ - "65e26c11-097e-4478-bd57-fe607b773a78" + "64a2f2de-5f41-4744-bd4d-c659ed5ddf9a" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T170727Z:65e26c11-097e-4478-bd57-fe607b773a78" + "WESTEUROPE:20190313T132548Z:64a2f2de-5f41-4744-bd4d-c659ed5ddf9a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1257,10 +1242,10 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:07:26 GMT" + "Wed, 13 Mar 2019 13:25:47 GMT" ], "Content-Length": [ - "1385" + "548" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1269,12 +1254,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-2/capacityPools/pws-sdk-pool-1/volumes/pws-sdk-vol-1\",\r\n \"name\": \"pws-sdk-acc-2/pws-sdk-pool-1/pws-sdk-vol-1\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2019-02-27T17%3A07%3A25.2561693Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"fileSystemId\": \"b359e44e-d004-504d-696a-52e129ab6087\",\r\n \"serviceLevel\": \"Standard\",\r\n \"creationToken\": \"pws-sdk-vol-1\",\r\n \"ownerId\": \"38ab86f1-9d30-413b-8fc0-d31ad85fa6a1\",\r\n \"usageThreshold\": 107374182400,\r\n \"snapshotPolicy\": {\r\n \"enabled\": false\r\n },\r\n \"exportPolicy\": {\r\n \"rules\": [\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 \"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_38ab86f19d30413b8fc0d31ad85fa6a1_d3b6a5cb\",\r\n \"subnetId\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet/subnets/default\",\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"Succeeded\",\r\n \"mountTargetId\": \"8ef6e466-b6f6-2c08-389a-6f531790fcbe\",\r\n \"fileSystemId\": \"b359e44e-d004-504d-696a-52e129ab6087\",\r\n \"startIp\": \"10.0.1.4\",\r\n \"endIp\": \"10.0.1.4\",\r\n \"gateway\": \"10.0.1.1\",\r\n \"netmask\": \"255.255.255.0\",\r\n \"ipAddress\": \"10.0.1.4\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/6747b79f-e2f9-4f5d-93bb-d5588cab4d62\",\r\n \"name\": \"6747b79f-e2f9-4f5d-93bb-d5588cab4d62\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2019-03-13T13:25:16.9904222Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1/volumes/pws-sdk-vol-1\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/44b222f3-ea32-45e0-bd7e-b6860af627d6?api-version=2017-08-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvNDRiMjIyZjMtZWEzMi00NWUwLWJkN2UtYjY4NjBhZjYyN2Q2P2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/6747b79f-e2f9-4f5d-93bb-d5588cab4d62?api-version=2017-08-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvNjc0N2I3OWYtZTJmOS00ZjVkLTkzYmItZDU1ODhjYWI0ZDYyP2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1293,7 +1278,10 @@ "no-cache" ], "x-ms-request-id": [ - "ee63d41e-7c1c-4c10-970d-24093146c96e" + "4b94e37b-fa10-4bd0-a9b9-f1463bb8b5c5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" ], "Server": [ "Microsoft-IIS/10.0" @@ -1301,14 +1289,11 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" - ], "x-ms-correlation-request-id": [ - "53fd0c73-184c-4b60-b423-6322948cc83b" + "a88af119-e3d8-4203-a13f-27fab9e952ce" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T170609Z:53fd0c73-184c-4b60-b423-6322948cc83b" + "WESTEUROPE:20190313T132618Z:a88af119-e3d8-4203-a13f-27fab9e952ce" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1317,10 +1302,10 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:06:08 GMT" + "Wed, 13 Mar 2019 13:26:17 GMT" ], "Content-Length": [ - "548" + "559" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1329,12 +1314,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/44b222f3-ea32-45e0-bd7e-b6860af627d6\",\r\n \"name\": \"44b222f3-ea32-45e0-bd7e-b6860af627d6\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2019-02-27T17:05:35.5681312Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-2/capacityPools/pws-sdk-pool-1/volumes/pws-sdk-vol-1\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/6747b79f-e2f9-4f5d-93bb-d5588cab4d62\",\r\n \"name\": \"6747b79f-e2f9-4f5d-93bb-d5588cab4d62\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-03-13T13:25:16.9904222Z\",\r\n \"endTime\": \"2019-03-13T13:25:58.9280669Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1/volumes/pws-sdk-vol-1\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/44b222f3-ea32-45e0-bd7e-b6860af627d6?api-version=2017-08-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvNDRiMjIyZjMtZWEzMi00NWUwLWJkN2UtYjY4NjBhZjYyN2Q2P2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1/volumes/pws-sdk-vol-1?api-version=2017-08-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlR3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wd3Mtc2RrLWFjYy0xL2NhcGFjaXR5UG9vbHMvcHdzLXNkay1wb29sLTEvdm9sdW1lcy9wd3Mtc2RrLXZvbC0xP2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1352,11 +1337,11 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "fa220bab-4f85-4f31-be93-c9dee68c6f1c" + "ETag": [ + "W/\"datetime'2019-03-13T13%3A25%3A58.9534956Z'\"" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "x-ms-request-id": [ + "12d9cb6b-e6d3-4840-bff7-bc7999f3bfaf" ], "Server": [ "Microsoft-IIS/10.0" @@ -1364,11 +1349,14 @@ "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], "x-ms-correlation-request-id": [ - "5354987c-b8e1-4467-a8e4-772327762466" + "09cfd3ae-861a-4412-9eef-f7eafd0e628f" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T170639Z:5354987c-b8e1-4467-a8e4-772327762466" + "WESTEUROPE:20190313T132619Z:09cfd3ae-861a-4412-9eef-f7eafd0e628f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1377,10 +1365,10 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:06:39 GMT" + "Wed, 13 Mar 2019 13:26:18 GMT" ], "Content-Length": [ - "559" + "1426" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1389,15 +1377,21 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/44b222f3-ea32-45e0-bd7e-b6860af627d6\",\r\n \"name\": \"44b222f3-ea32-45e0-bd7e-b6860af627d6\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-02-27T17:05:35.5681312Z\",\r\n \"endTime\": \"2019-02-27T17:06:26.2070868Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-2/capacityPools/pws-sdk-pool-1/volumes/pws-sdk-vol-1\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1/volumes/pws-sdk-vol-1\",\r\n \"name\": \"pws-sdk-acc-1/pws-sdk-pool-1/pws-sdk-vol-1\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2019-03-13T13%3A25%3A58.9534956Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"495cb442-8b5a-58ea-5f57-f9c14d57da8d\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"pws-sdk-vol-1\",\r\n \"ownerId\": \"38ab86f1-9d30-413b-8fc0-d31ad85fa6a1\",\r\n \"usageThreshold\": 107374182400,\r\n \"usedBytes\": 0,\r\n \"snapshotPolicy\": {\r\n \"enabled\": false\r\n },\r\n \"exportPolicy\": {\r\n \"rules\": [\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 \"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_38ab86f19d30413b8fc0d31ad85fa6a1_9b627091\",\r\n \"subnetId\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet/subnets/default\",\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"Succeeded\",\r\n \"mountTargetId\": \"81448aa7-a71d-df5c-5a65-f5f48049fd78\",\r\n \"fileSystemId\": \"495cb442-8b5a-58ea-5f57-f9c14d57da8d\",\r\n \"startIp\": \"10.0.1.4\",\r\n \"endIp\": \"10.0.1.4\",\r\n \"gateway\": \"10.0.1.1\",\r\n \"netmask\": \"255.255.255.0\",\r\n \"ipAddress\": \"10.0.1.4\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-2/capacityPools/pws-sdk-pool-1/volumes/pws-sdk-vol-1?api-version=2017-08-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlR3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wd3Mtc2RrLWFjYy0yL2NhcGFjaXR5UG9vbHMvcHdzLXNkay1wb29sLTEvdm9sdW1lcy9wd3Mtc2RrLXZvbC0xP2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1/volumes/pws-sdk-vol-1?api-version=2017-08-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlR3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wd3Mtc2RrLWFjYy0xL2NhcGFjaXR5UG9vbHMvcHdzLXNkay1wb29sLTEvdm9sdW1lcy9wd3Mtc2RrLXZvbC0xP2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "52d1a742-922f-482a-b371-312b4bd593d7" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.27019.06", "OSName/Windows", @@ -1413,10 +1407,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2019-02-27T17%3A06%3A26.2183002Z'\"" + "W/\"datetime'2019-03-13T13%3A25%3A58.9534956Z'\"" ], "x-ms-request-id": [ - "11df704a-912d-49a3-988d-38e75ba15f49" + "f9194add-2d7c-402e-a8b4-7d7911925e20" ], "Server": [ "Microsoft-IIS/10.0" @@ -1425,13 +1419,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11989" ], "x-ms-correlation-request-id": [ - "65429364-d515-4346-833b-d9ea0087de14" + "0d0a8550-7a18-45b9-a5fb-bd0849c0f963" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T170640Z:65429364-d515-4346-833b-d9ea0087de14" + "WESTEUROPE:20190313T132653Z:0d0a8550-7a18-45b9-a5fb-bd0849c0f963" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1440,10 +1434,10 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:06:40 GMT" + "Wed, 13 Mar 2019 13:26:52 GMT" ], "Content-Length": [ - "1398" + "1426" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1452,17 +1446,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-2/capacityPools/pws-sdk-pool-1/volumes/pws-sdk-vol-1\",\r\n \"name\": \"pws-sdk-acc-2/pws-sdk-pool-1/pws-sdk-vol-1\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2019-02-27T17%3A06%3A26.2183002Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"b359e44e-d004-504d-696a-52e129ab6087\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"pws-sdk-vol-1\",\r\n \"ownerId\": \"38ab86f1-9d30-413b-8fc0-d31ad85fa6a1\",\r\n \"usageThreshold\": 107374182400,\r\n \"usedBytes\": 0,\r\n \"snapshotPolicy\": {\r\n \"enabled\": false\r\n },\r\n \"exportPolicy\": {\r\n \"rules\": [\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 \"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_38ab86f19d30413b8fc0d31ad85fa6a1_d3b6a5cb\",\r\n \"subnetId\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet/subnets/default\",\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"Succeeded\",\r\n \"mountTargetId\": \"8ef6e466-b6f6-2c08-389a-6f531790fcbe\",\r\n \"fileSystemId\": \"b359e44e-d004-504d-696a-52e129ab6087\",\r\n \"startIp\": \"10.0.1.4\",\r\n \"endIp\": \"10.0.1.4\",\r\n \"gateway\": \"10.0.1.1\",\r\n \"netmask\": \"255.255.255.0\",\r\n \"ipAddress\": \"10.0.1.4\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1/volumes/pws-sdk-vol-1\",\r\n \"name\": \"pws-sdk-acc-1/pws-sdk-pool-1/pws-sdk-vol-1\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2019-03-13T13%3A25%3A58.9534956Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"495cb442-8b5a-58ea-5f57-f9c14d57da8d\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"pws-sdk-vol-1\",\r\n \"ownerId\": \"38ab86f1-9d30-413b-8fc0-d31ad85fa6a1\",\r\n \"usageThreshold\": 107374182400,\r\n \"usedBytes\": 0,\r\n \"snapshotPolicy\": {\r\n \"enabled\": false\r\n },\r\n \"exportPolicy\": {\r\n \"rules\": [\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 \"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_38ab86f19d30413b8fc0d31ad85fa6a1_9b627091\",\r\n \"subnetId\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet/subnets/default\",\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"Succeeded\",\r\n \"mountTargetId\": \"81448aa7-a71d-df5c-5a65-f5f48049fd78\",\r\n \"fileSystemId\": \"495cb442-8b5a-58ea-5f57-f9c14d57da8d\",\r\n \"startIp\": \"10.0.1.4\",\r\n \"endIp\": \"10.0.1.4\",\r\n \"gateway\": \"10.0.1.1\",\r\n \"netmask\": \"255.255.255.0\",\r\n \"ipAddress\": \"10.0.1.4\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-2/capacityPools/pws-sdk-pool-1/volumes/pws-sdk-vol-1?api-version=2017-08-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlR3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wd3Mtc2RrLWFjYy0yL2NhcGFjaXR5UG9vbHMvcHdzLXNkay1wb29sLTEvdm9sdW1lcy9wd3Mtc2RrLXZvbC0xP2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1/volumes/pws-sdk-vol-1?api-version=2017-08-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlR3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wd3Mtc2RrLWFjYy0xL2NhcGFjaXR5UG9vbHMvcHdzLXNkay1wb29sLTEvdm9sdW1lcy9wd3Mtc2RrLXZvbC0xP2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c5bad287-4ceb-43e4-a356-ac64007865c4" + "9ca20129-4282-4d63-b7e3-782a3d247664" ], "Accept-Language": [ "en-US" @@ -1482,10 +1476,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2019-02-27T17%3A06%3A26.2183002Z'\"" + "W/\"datetime'2019-03-13T13%3A25%3A58.9534956Z'\"" ], "x-ms-request-id": [ - "d978088f-285e-4365-8202-17bd6bbb9c61" + "6ba3874f-0801-476f-8ceb-258325a7f04e" ], "Server": [ "Microsoft-IIS/10.0" @@ -1494,13 +1488,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11988" ], "x-ms-correlation-request-id": [ - "835bfe97-df21-4472-a6ca-39a85f89a59d" + "7f4fda12-35ac-4841-bf30-ac887e174bae" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T170717Z:835bfe97-df21-4472-a6ca-39a85f89a59d" + "WESTEUROPE:20190313T132653Z:7f4fda12-35ac-4841-bf30-ac887e174bae" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1509,10 +1503,10 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:07:16 GMT" + "Wed, 13 Mar 2019 13:26:52 GMT" ], "Content-Length": [ - "1398" + "1426" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1521,17 +1515,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-2/capacityPools/pws-sdk-pool-1/volumes/pws-sdk-vol-1\",\r\n \"name\": \"pws-sdk-acc-2/pws-sdk-pool-1/pws-sdk-vol-1\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2019-02-27T17%3A06%3A26.2183002Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"b359e44e-d004-504d-696a-52e129ab6087\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"pws-sdk-vol-1\",\r\n \"ownerId\": \"38ab86f1-9d30-413b-8fc0-d31ad85fa6a1\",\r\n \"usageThreshold\": 107374182400,\r\n \"usedBytes\": 0,\r\n \"snapshotPolicy\": {\r\n \"enabled\": false\r\n },\r\n \"exportPolicy\": {\r\n \"rules\": [\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 \"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_38ab86f19d30413b8fc0d31ad85fa6a1_d3b6a5cb\",\r\n \"subnetId\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet/subnets/default\",\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"Succeeded\",\r\n \"mountTargetId\": \"8ef6e466-b6f6-2c08-389a-6f531790fcbe\",\r\n \"fileSystemId\": \"b359e44e-d004-504d-696a-52e129ab6087\",\r\n \"startIp\": \"10.0.1.4\",\r\n \"endIp\": \"10.0.1.4\",\r\n \"gateway\": \"10.0.1.1\",\r\n \"netmask\": \"255.255.255.0\",\r\n \"ipAddress\": \"10.0.1.4\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1/volumes/pws-sdk-vol-1\",\r\n \"name\": \"pws-sdk-acc-1/pws-sdk-pool-1/pws-sdk-vol-1\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2019-03-13T13%3A25%3A58.9534956Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"495cb442-8b5a-58ea-5f57-f9c14d57da8d\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"pws-sdk-vol-1\",\r\n \"ownerId\": \"38ab86f1-9d30-413b-8fc0-d31ad85fa6a1\",\r\n \"usageThreshold\": 107374182400,\r\n \"usedBytes\": 0,\r\n \"snapshotPolicy\": {\r\n \"enabled\": false\r\n },\r\n \"exportPolicy\": {\r\n \"rules\": [\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 \"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_38ab86f19d30413b8fc0d31ad85fa6a1_9b627091\",\r\n \"subnetId\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet/subnets/default\",\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"Succeeded\",\r\n \"mountTargetId\": \"81448aa7-a71d-df5c-5a65-f5f48049fd78\",\r\n \"fileSystemId\": \"495cb442-8b5a-58ea-5f57-f9c14d57da8d\",\r\n \"startIp\": \"10.0.1.4\",\r\n \"endIp\": \"10.0.1.4\",\r\n \"gateway\": \"10.0.1.1\",\r\n \"netmask\": \"255.255.255.0\",\r\n \"ipAddress\": \"10.0.1.4\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-2/capacityPools/pws-sdk-pool-1/volumes/pws-sdk-vol-1?api-version=2017-08-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlR3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wd3Mtc2RrLWFjYy0yL2NhcGFjaXR5UG9vbHMvcHdzLXNkay1wb29sLTEvdm9sdW1lcy9wd3Mtc2RrLXZvbC0xP2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1/volumes/pws-sdk-vol-2?api-version=2017-08-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlR3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wd3Mtc2RrLWFjYy0xL2NhcGFjaXR5UG9vbHMvcHdzLXNkay1wb29sLTEvdm9sdW1lcy9wd3Mtc2RrLXZvbC0yP2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"creationToken\": \"pws-sdk-vol-2\",\r\n \"serviceLevel\": \"Premium\",\r\n \"usageThreshold\": 107374182400,\r\n \"subnetId\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet/subnets/default\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "2fb1dde3-4198-4f77-8b33-eb0a6cab85f8" + "f79f96d8-349f-4d7b-b27a-903b78592778" ], "Accept-Language": [ "en-US" @@ -1541,6 +1535,12 @@ "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17134.", "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/0.9.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "351" ] }, "ResponseHeaders": { @@ -1551,10 +1551,13 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2019-02-27T17%3A06%3A26.2183002Z'\"" + "W/\"datetime'2019-03-13T13%3A26%3A21.8229928Z'\"" ], "x-ms-request-id": [ - "9eb49a26-c578-41ab-931b-e29dad482a5a" + "6bd3a07f-bcf7-42ac-877b-99dc4d40aa6c" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/064e7cc8-4f4c-4486-a2dd-93144a0e024c?api-version=2017-08-15" ], "Server": [ "Microsoft-IIS/10.0" @@ -1562,14 +1565,14 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" ], "x-ms-correlation-request-id": [ - "d85ca626-dd09-4317-9ca6-df2fce4e297b" + "147c2218-2881-4bc7-aa6b-c794a6bb1010" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T170717Z:d85ca626-dd09-4317-9ca6-df2fce4e297b" + "WESTEUROPE:20190313T132622Z:147c2218-2881-4bc7-aa6b-c794a6bb1010" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1578,10 +1581,10 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:07:16 GMT" + "Wed, 13 Mar 2019 13:26:21 GMT" ], "Content-Length": [ - "1398" + "711" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1590,32 +1593,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-2/capacityPools/pws-sdk-pool-1/volumes/pws-sdk-vol-1\",\r\n \"name\": \"pws-sdk-acc-2/pws-sdk-pool-1/pws-sdk-vol-1\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2019-02-27T17%3A06%3A26.2183002Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"b359e44e-d004-504d-696a-52e129ab6087\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"pws-sdk-vol-1\",\r\n \"ownerId\": \"38ab86f1-9d30-413b-8fc0-d31ad85fa6a1\",\r\n \"usageThreshold\": 107374182400,\r\n \"usedBytes\": 0,\r\n \"snapshotPolicy\": {\r\n \"enabled\": false\r\n },\r\n \"exportPolicy\": {\r\n \"rules\": [\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 \"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_38ab86f19d30413b8fc0d31ad85fa6a1_d3b6a5cb\",\r\n \"subnetId\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet/subnets/default\",\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"Succeeded\",\r\n \"mountTargetId\": \"8ef6e466-b6f6-2c08-389a-6f531790fcbe\",\r\n \"fileSystemId\": \"b359e44e-d004-504d-696a-52e129ab6087\",\r\n \"startIp\": \"10.0.1.4\",\r\n \"endIp\": \"10.0.1.4\",\r\n \"gateway\": \"10.0.1.1\",\r\n \"netmask\": \"255.255.255.0\",\r\n \"ipAddress\": \"10.0.1.4\"\r\n }\r\n ]\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1/volumes/pws-sdk-vol-2\",\r\n \"name\": \"pws-sdk-acc-1/pws-sdk-pool-1/pws-sdk-vol-2\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2019-03-13T13%3A26%3A21.8229928Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"creationToken\": \"pws-sdk-vol-2\",\r\n \"serviceLevel\": \"Premium\",\r\n \"usageThreshold\": 107374182400,\r\n \"subnetId\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet/subnets/default\",\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-2/capacityPools/pws-sdk-pool-1/volumes/pws-sdk-vol-2?api-version=2017-08-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlR3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wd3Mtc2RrLWFjYy0yL2NhcGFjaXR5UG9vbHMvcHdzLXNkay1wb29sLTEvdm9sdW1lcy9wd3Mtc2RrLXZvbC0yP2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"creationToken\": \"pws-sdk-vol-2\",\r\n \"serviceLevel\": \"Premium\",\r\n \"usageThreshold\": 107374182400,\r\n \"subnetId\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet/subnets/default\"\r\n }\r\n}", + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/064e7cc8-4f4c-4486-a2dd-93144a0e024c?api-version=2017-08-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvMDY0ZTdjYzgtNGY0Yy00NDg2LWEyZGQtOTMxNDRhMGUwMjRjP2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "2bc63e02-77c4-40d1-b292-e8e6782dfd7c" - ], - "Accept-Language": [ - "en-US" - ], "User-Agent": [ "FxVersion/4.6.27019.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17134.", "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/0.9.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "351" ] }, "ResponseHeaders": { @@ -1625,14 +1616,8 @@ "Pragma": [ "no-cache" ], - "ETag": [ - "W/\"datetime'2019-02-27T17%3A06%3A41.8393786Z'\"" - ], "x-ms-request-id": [ - "43cb6410-f10d-436b-aacc-110a002bc9fc" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/d4408ba2-d2e6-4838-91b2-4329defdcd78?api-version=2017-08-15" + "dd7d10b5-e550-418a-819c-5ff62b092a98" ], "Server": [ "Microsoft-IIS/10.0" @@ -1640,14 +1625,14 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" ], "x-ms-correlation-request-id": [ - "c62844db-deda-49bd-abd8-111c9576da21" + "4a6e25b7-d817-42df-bdd9-eb82956dc0b2" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T170645Z:c62844db-deda-49bd-abd8-111c9576da21" + "WESTEUROPE:20190313T132652Z:4a6e25b7-d817-42df-bdd9-eb82956dc0b2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1656,10 +1641,10 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:06:44 GMT" + "Wed, 13 Mar 2019 13:26:51 GMT" ], "Content-Length": [ - "711" + "559" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1668,12 +1653,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-2/capacityPools/pws-sdk-pool-1/volumes/pws-sdk-vol-2\",\r\n \"name\": \"pws-sdk-acc-2/pws-sdk-pool-1/pws-sdk-vol-2\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2019-02-27T17%3A06%3A41.8393786Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"creationToken\": \"pws-sdk-vol-2\",\r\n \"serviceLevel\": \"Premium\",\r\n \"usageThreshold\": 107374182400,\r\n \"subnetId\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet/subnets/default\",\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "StatusCode": 201 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/064e7cc8-4f4c-4486-a2dd-93144a0e024c\",\r\n \"name\": \"064e7cc8-4f4c-4486-a2dd-93144a0e024c\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-03-13T13:26:21.6819872Z\",\r\n \"endTime\": \"2019-03-13T13:26:34.3665816Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1/volumes/pws-sdk-vol-2\"\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/d4408ba2-d2e6-4838-91b2-4329defdcd78?api-version=2017-08-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvZDQ0MDhiYTItZDJlNi00ODM4LTkxYjItNDMyOWRlZmRjZDc4P2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1/volumes/pws-sdk-vol-2?api-version=2017-08-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlR3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wd3Mtc2RrLWFjYy0xL2NhcGFjaXR5UG9vbHMvcHdzLXNkay1wb29sLTEvdm9sdW1lcy9wd3Mtc2RrLXZvbC0yP2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1691,8 +1676,11 @@ "Pragma": [ "no-cache" ], + "ETag": [ + "W/\"datetime'2019-03-13T13%3A26%3A34.3950598Z'\"" + ], "x-ms-request-id": [ - "1b0e470e-0fe3-4819-8a0f-dd87484a65e3" + "c4208eb5-d572-4f98-90f4-21848fa281e3" ], "Server": [ "Microsoft-IIS/10.0" @@ -1701,13 +1689,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11991" ], "x-ms-correlation-request-id": [ - "b555d6d1-db1a-4693-8268-f196efdb1b52" + "f282b85b-0994-4366-952c-675648ebe951" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T170715Z:b555d6d1-db1a-4693-8268-f196efdb1b52" + "WESTEUROPE:20190313T132653Z:f282b85b-0994-4366-952c-675648ebe951" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1716,10 +1704,10 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:07:14 GMT" + "Wed, 13 Mar 2019 13:26:52 GMT" ], "Content-Length": [ - "559" + "1406" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1728,15 +1716,21 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/d4408ba2-d2e6-4838-91b2-4329defdcd78\",\r\n \"name\": \"d4408ba2-d2e6-4838-91b2-4329defdcd78\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-02-27T17:06:41.7276479Z\",\r\n \"endTime\": \"2019-02-27T17:06:54.1115877Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-2/capacityPools/pws-sdk-pool-1/volumes/pws-sdk-vol-2\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1/volumes/pws-sdk-vol-2\",\r\n \"name\": \"pws-sdk-acc-1/pws-sdk-pool-1/pws-sdk-vol-2\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2019-03-13T13%3A26%3A34.3950598Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"ab24fd38-d545-ee0c-ba65-8d6404a04931\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"pws-sdk-vol-2\",\r\n \"ownerId\": \"38ab86f1-9d30-413b-8fc0-d31ad85fa6a1\",\r\n \"usageThreshold\": 107374182400,\r\n \"usedBytes\": 0,\r\n \"snapshotPolicy\": {\r\n \"enabled\": false\r\n },\r\n \"exportPolicy\": {\r\n \"rules\": [\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 \"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_38ab86f19d30413b8fc0d31ad85fa6a1_9b627091\",\r\n \"subnetId\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet/subnets/default\",\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"Succeeded\",\r\n \"mountTargetId\": \"e5c342c2-1557-a15a-817b-c6078af22e8a\",\r\n \"fileSystemId\": \"ab24fd38-d545-ee0c-ba65-8d6404a04931\",\r\n \"startIp\": \"10.4.0.128\",\r\n \"endIp\": \"10.4.0.191\",\r\n \"gateway\": \"10.4.0.129\",\r\n \"netmask\": \"255.255.255.192\",\r\n \"ipAddress\": \"10.0.1.4\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-2/capacityPools/pws-sdk-pool-1/volumes/pws-sdk-vol-2?api-version=2017-08-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlR3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wd3Mtc2RrLWFjYy0yL2NhcGFjaXR5UG9vbHMvcHdzLXNkay1wb29sLTEvdm9sdW1lcy9wd3Mtc2RrLXZvbC0yP2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1/volumes?api-version=2017-08-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlR3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wd3Mtc2RrLWFjYy0xL2NhcGFjaXR5UG9vbHMvcHdzLXNkay1wb29sLTEvdm9sdW1lcz9hcGktdmVyc2lvbj0yMDE3LTA4LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "981fd976-085a-431f-b43e-16531c631d30" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.27019.06", "OSName/Windows", @@ -1751,11 +1745,8 @@ "Pragma": [ "no-cache" ], - "ETag": [ - "W/\"datetime'2019-02-27T17%3A06%3A54.1350982Z'\"" - ], "x-ms-request-id": [ - "1051e44a-445c-4e8e-9ad6-22edba77ea66" + "5661d884-3818-4a13-929c-236d3dbaf973" ], "Server": [ "Microsoft-IIS/10.0" @@ -1764,13 +1755,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11990" ], "x-ms-correlation-request-id": [ - "821b994e-1eeb-4b3d-bcee-ee37ddc65176" + "98585bc6-8deb-4cd8-961e-bc9e07792135" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T170716Z:821b994e-1eeb-4b3d-bcee-ee37ddc65176" + "WESTEUROPE:20190313T132653Z:98585bc6-8deb-4cd8-961e-bc9e07792135" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1779,10 +1770,10 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:07:15 GMT" + "Wed, 13 Mar 2019 13:26:52 GMT" ], "Content-Length": [ - "1404" + "2845" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1791,17 +1782,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-2/capacityPools/pws-sdk-pool-1/volumes/pws-sdk-vol-2\",\r\n \"name\": \"pws-sdk-acc-2/pws-sdk-pool-1/pws-sdk-vol-2\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2019-02-27T17%3A06%3A54.1350982Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"0c0c5e66-91fb-876d-aca8-10dfa135c1e8\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"pws-sdk-vol-2\",\r\n \"ownerId\": \"38ab86f1-9d30-413b-8fc0-d31ad85fa6a1\",\r\n \"usageThreshold\": 107374182400,\r\n \"usedBytes\": 0,\r\n \"snapshotPolicy\": {\r\n \"enabled\": false\r\n },\r\n \"exportPolicy\": {\r\n \"rules\": [\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 \"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_38ab86f19d30413b8fc0d31ad85fa6a1_d3b6a5cb\",\r\n \"subnetId\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet/subnets/default\",\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"Succeeded\",\r\n \"mountTargetId\": \"9ca5d727-dd63-6914-f803-e208f8ace57f\",\r\n \"fileSystemId\": \"0c0c5e66-91fb-876d-aca8-10dfa135c1e8\",\r\n \"startIp\": \"10.4.0.64\",\r\n \"endIp\": \"10.4.0.127\",\r\n \"gateway\": \"10.4.0.65\",\r\n \"netmask\": \"255.255.255.192\",\r\n \"ipAddress\": \"10.0.1.4\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1/volumes/pws-sdk-vol-1\",\r\n \"name\": \"pws-sdk-acc-1/pws-sdk-pool-1/pws-sdk-vol-1\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2019-03-13T13%3A25%3A58.9534956Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"495cb442-8b5a-58ea-5f57-f9c14d57da8d\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"pws-sdk-vol-1\",\r\n \"ownerId\": \"38ab86f1-9d30-413b-8fc0-d31ad85fa6a1\",\r\n \"usageThreshold\": 107374182400,\r\n \"usedBytes\": 0,\r\n \"snapshotPolicy\": {\r\n \"enabled\": false\r\n },\r\n \"exportPolicy\": {\r\n \"rules\": [\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 \"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_38ab86f19d30413b8fc0d31ad85fa6a1_9b627091\",\r\n \"subnetId\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet/subnets/default\",\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"Succeeded\",\r\n \"mountTargetId\": \"81448aa7-a71d-df5c-5a65-f5f48049fd78\",\r\n \"fileSystemId\": \"495cb442-8b5a-58ea-5f57-f9c14d57da8d\",\r\n \"startIp\": \"10.0.1.4\",\r\n \"endIp\": \"10.0.1.4\",\r\n \"gateway\": \"10.0.1.1\",\r\n \"netmask\": \"255.255.255.0\",\r\n \"ipAddress\": \"10.0.1.4\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1/volumes/pws-sdk-vol-2\",\r\n \"name\": \"pws-sdk-acc-1/pws-sdk-pool-1/pws-sdk-vol-2\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2019-03-13T13%3A26%3A34.3950598Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"ab24fd38-d545-ee0c-ba65-8d6404a04931\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"pws-sdk-vol-2\",\r\n \"ownerId\": \"38ab86f1-9d30-413b-8fc0-d31ad85fa6a1\",\r\n \"usageThreshold\": 107374182400,\r\n \"usedBytes\": 0,\r\n \"snapshotPolicy\": {\r\n \"enabled\": false\r\n },\r\n \"exportPolicy\": {\r\n \"rules\": [\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 \"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_38ab86f19d30413b8fc0d31ad85fa6a1_9b627091\",\r\n \"subnetId\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet/subnets/default\",\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"Succeeded\",\r\n \"mountTargetId\": \"e5c342c2-1557-a15a-817b-c6078af22e8a\",\r\n \"fileSystemId\": \"ab24fd38-d545-ee0c-ba65-8d6404a04931\",\r\n \"startIp\": \"10.4.0.128\",\r\n \"endIp\": \"10.4.0.191\",\r\n \"gateway\": \"10.4.0.129\",\r\n \"netmask\": \"255.255.255.192\",\r\n \"ipAddress\": \"10.0.1.4\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-2/capacityPools/pws-sdk-pool-1/volumes?api-version=2017-08-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlR3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wd3Mtc2RrLWFjYy0yL2NhcGFjaXR5UG9vbHMvcHdzLXNkay1wb29sLTEvdm9sdW1lcz9hcGktdmVyc2lvbj0yMDE3LTA4LTE1", + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1/volumes?api-version=2017-08-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlR3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wd3Mtc2RrLWFjYy0xL2NhcGFjaXR5UG9vbHMvcHdzLXNkay1wb29sLTEvdm9sdW1lcz9hcGktdmVyc2lvbj0yMDE3LTA4LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "05bb90cb-1190-4d20-b605-256aa168ce2a" + "27b29a60-e5e6-49a0-95b0-8249b438585c" ], "Accept-Language": [ "en-US" @@ -1821,7 +1812,7 @@ "no-cache" ], "x-ms-request-id": [ - "fe817ad9-22f8-4859-bdc6-fa0f79e8ea5c" + "3c60d0ec-4b61-49c0-9257-bd9e27fae382" ], "Server": [ "Microsoft-IIS/10.0" @@ -1830,13 +1821,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11985" ], "x-ms-correlation-request-id": [ - "938fa360-547f-4d50-9f8c-ffca6a82e2e6" + "e76ff9bb-d158-40c0-97a6-bfaa4df8f146" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T170716Z:938fa360-547f-4d50-9f8c-ffca6a82e2e6" + "WESTEUROPE:20190313T132731Z:e76ff9bb-d158-40c0-97a6-bfaa4df8f146" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1845,10 +1836,10 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:07:15 GMT" + "Wed, 13 Mar 2019 13:27:31 GMT" ], "Content-Length": [ - "2815" + "1418" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1857,17 +1848,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-2/capacityPools/pws-sdk-pool-1/volumes/pws-sdk-vol-1\",\r\n \"name\": \"pws-sdk-acc-2/pws-sdk-pool-1/pws-sdk-vol-1\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2019-02-27T17%3A06%3A26.2183002Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"b359e44e-d004-504d-696a-52e129ab6087\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"pws-sdk-vol-1\",\r\n \"ownerId\": \"38ab86f1-9d30-413b-8fc0-d31ad85fa6a1\",\r\n \"usageThreshold\": 107374182400,\r\n \"usedBytes\": 0,\r\n \"snapshotPolicy\": {\r\n \"enabled\": false\r\n },\r\n \"exportPolicy\": {\r\n \"rules\": [\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 \"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_38ab86f19d30413b8fc0d31ad85fa6a1_d3b6a5cb\",\r\n \"subnetId\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet/subnets/default\",\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"Succeeded\",\r\n \"mountTargetId\": \"8ef6e466-b6f6-2c08-389a-6f531790fcbe\",\r\n \"fileSystemId\": \"b359e44e-d004-504d-696a-52e129ab6087\",\r\n \"startIp\": \"10.0.1.4\",\r\n \"endIp\": \"10.0.1.4\",\r\n \"gateway\": \"10.0.1.1\",\r\n \"netmask\": \"255.255.255.0\",\r\n \"ipAddress\": \"10.0.1.4\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-2/capacityPools/pws-sdk-pool-1/volumes/pws-sdk-vol-2\",\r\n \"name\": \"pws-sdk-acc-2/pws-sdk-pool-1/pws-sdk-vol-2\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2019-02-27T17%3A06%3A54.1350982Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"0c0c5e66-91fb-876d-aca8-10dfa135c1e8\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"pws-sdk-vol-2\",\r\n \"ownerId\": \"38ab86f1-9d30-413b-8fc0-d31ad85fa6a1\",\r\n \"usageThreshold\": 107374182400,\r\n \"usedBytes\": 0,\r\n \"snapshotPolicy\": {\r\n \"enabled\": false\r\n },\r\n \"exportPolicy\": {\r\n \"rules\": [\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 \"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_38ab86f19d30413b8fc0d31ad85fa6a1_d3b6a5cb\",\r\n \"subnetId\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet/subnets/default\",\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"Succeeded\",\r\n \"mountTargetId\": \"9ca5d727-dd63-6914-f803-e208f8ace57f\",\r\n \"fileSystemId\": \"0c0c5e66-91fb-876d-aca8-10dfa135c1e8\",\r\n \"startIp\": \"10.4.0.64\",\r\n \"endIp\": \"10.4.0.127\",\r\n \"gateway\": \"10.4.0.65\",\r\n \"netmask\": \"255.255.255.192\",\r\n \"ipAddress\": \"10.0.1.4\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1/volumes/pws-sdk-vol-2\",\r\n \"name\": \"pws-sdk-acc-1/pws-sdk-pool-1/pws-sdk-vol-2\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2019-03-13T13%3A26%3A34.3950598Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"ab24fd38-d545-ee0c-ba65-8d6404a04931\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"pws-sdk-vol-2\",\r\n \"ownerId\": \"38ab86f1-9d30-413b-8fc0-d31ad85fa6a1\",\r\n \"usageThreshold\": 107374182400,\r\n \"usedBytes\": 0,\r\n \"snapshotPolicy\": {\r\n \"enabled\": false\r\n },\r\n \"exportPolicy\": {\r\n \"rules\": [\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 \"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_38ab86f19d30413b8fc0d31ad85fa6a1_9b627091\",\r\n \"subnetId\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet/subnets/default\",\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"Succeeded\",\r\n \"mountTargetId\": \"e5c342c2-1557-a15a-817b-c6078af22e8a\",\r\n \"fileSystemId\": \"ab24fd38-d545-ee0c-ba65-8d6404a04931\",\r\n \"startIp\": \"10.4.0.128\",\r\n \"endIp\": \"10.4.0.191\",\r\n \"gateway\": \"10.4.0.129\",\r\n \"netmask\": \"255.255.255.192\",\r\n \"ipAddress\": \"10.0.1.4\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-2/capacityPools/pws-sdk-pool-1/volumes?api-version=2017-08-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlR3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wd3Mtc2RrLWFjYy0yL2NhcGFjaXR5UG9vbHMvcHdzLXNkay1wb29sLTEvdm9sdW1lcz9hcGktdmVyc2lvbj0yMDE3LTA4LTE1", + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1/volumes?api-version=2017-08-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlR3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wd3Mtc2RrLWFjYy0xL2NhcGFjaXR5UG9vbHMvcHdzLXNkay1wb29sLTEvdm9sdW1lcz9hcGktdmVyc2lvbj0yMDE3LTA4LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "beaf2b87-20b3-4b66-b7f4-9cc281c93baa" + "64982996-1dc9-45d2-a90a-0e4083b2bd4d" ], "Accept-Language": [ "en-US" @@ -1887,7 +1878,7 @@ "no-cache" ], "x-ms-request-id": [ - "527a1a5e-b90e-4bdf-937b-0afc5cd713b1" + "9174eb01-1e5e-4464-aab0-c56736c293d1" ], "Server": [ "Microsoft-IIS/10.0" @@ -1896,13 +1887,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11981" ], "x-ms-correlation-request-id": [ - "6820bb8e-b564-4e8f-8fd9-79eb3203de44" + "60702822-8c33-4115-aff1-42828dae9c80" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T170903Z:6820bb8e-b564-4e8f-8fd9-79eb3203de44" + "WESTEUROPE:20190313T132834Z:60702822-8c33-4115-aff1-42828dae9c80" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1911,7 +1902,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:09:03 GMT" + "Wed, 13 Mar 2019 13:28:33 GMT" ], "Content-Length": [ "12" @@ -1927,13 +1918,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-2/capacityPools/pws-sdk-pool-1/volumes/pws-sdk-vol-1?api-version=2017-08-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlR3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wd3Mtc2RrLWFjYy0yL2NhcGFjaXR5UG9vbHMvcHdzLXNkay1wb29sLTEvdm9sdW1lcy9wd3Mtc2RrLXZvbC0xP2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1/volumes/pws-sdk-vol-1?api-version=2017-08-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlR3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wd3Mtc2RrLWFjYy0xL2NhcGFjaXR5UG9vbHMvcHdzLXNkay1wb29sLTEvdm9sdW1lcy9wd3Mtc2RrLXZvbC0xP2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"properties\": {\r\n \"usageThreshold\": 214748364800\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "5cdc803a-49c5-4fc0-8305-224452bff1fc" + "8029ffc1-7634-4dfe-be59-44a5e1c0a30e" ], "Accept-Language": [ "en-US" @@ -1959,10 +1950,10 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2019-02-27T17%3A07%3A20.1495471Z'\"" + "W/\"datetime'2019-03-13T13%3A26%3A59.1819362Z'\"" ], "x-ms-request-id": [ - "34c8cbe4-1b33-4902-a7d3-11dafa79d208" + "6b92d08a-cf71-494e-8b11-505de19cd4fd" ], "Server": [ "Microsoft-IIS/10.0" @@ -1974,10 +1965,10 @@ "1195" ], "x-ms-correlation-request-id": [ - "d82760a9-f6ae-4d37-90b4-bb3a1b7559cf" + "9f9ad6e7-777a-4979-8f09-bf9dd3407d19" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T170722Z:d82760a9-f6ae-4d37-90b4-bb3a1b7559cf" + "WESTEUROPE:20190313T132659Z:9f9ad6e7-777a-4979-8f09-bf9dd3407d19" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1986,10 +1977,10 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:07:21 GMT" + "Wed, 13 Mar 2019 13:26:58 GMT" ], "Content-Length": [ - "1398" + "1426" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1998,17 +1989,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-2/capacityPools/pws-sdk-pool-1/volumes/pws-sdk-vol-1\",\r\n \"name\": \"pws-sdk-acc-2/pws-sdk-pool-1/pws-sdk-vol-1\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2019-02-27T17%3A07%3A20.1495471Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"b359e44e-d004-504d-696a-52e129ab6087\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"pws-sdk-vol-1\",\r\n \"ownerId\": \"38ab86f1-9d30-413b-8fc0-d31ad85fa6a1\",\r\n \"usageThreshold\": 214748364800,\r\n \"usedBytes\": 0,\r\n \"snapshotPolicy\": {\r\n \"enabled\": false\r\n },\r\n \"exportPolicy\": {\r\n \"rules\": [\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 \"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_38ab86f19d30413b8fc0d31ad85fa6a1_d3b6a5cb\",\r\n \"subnetId\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet/subnets/default\",\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"Succeeded\",\r\n \"mountTargetId\": \"8ef6e466-b6f6-2c08-389a-6f531790fcbe\",\r\n \"fileSystemId\": \"b359e44e-d004-504d-696a-52e129ab6087\",\r\n \"startIp\": \"10.0.1.4\",\r\n \"endIp\": \"10.0.1.4\",\r\n \"gateway\": \"10.0.1.1\",\r\n \"netmask\": \"255.255.255.0\",\r\n \"ipAddress\": \"10.0.1.4\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1/volumes/pws-sdk-vol-1\",\r\n \"name\": \"pws-sdk-acc-1/pws-sdk-pool-1/pws-sdk-vol-1\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2019-03-13T13%3A26%3A59.1819362Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"495cb442-8b5a-58ea-5f57-f9c14d57da8d\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"pws-sdk-vol-1\",\r\n \"ownerId\": \"38ab86f1-9d30-413b-8fc0-d31ad85fa6a1\",\r\n \"usageThreshold\": 214748364800,\r\n \"usedBytes\": 0,\r\n \"snapshotPolicy\": {\r\n \"enabled\": false\r\n },\r\n \"exportPolicy\": {\r\n \"rules\": [\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 \"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_38ab86f19d30413b8fc0d31ad85fa6a1_9b627091\",\r\n \"subnetId\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet/subnets/default\",\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"Succeeded\",\r\n \"mountTargetId\": \"81448aa7-a71d-df5c-5a65-f5f48049fd78\",\r\n \"fileSystemId\": \"495cb442-8b5a-58ea-5f57-f9c14d57da8d\",\r\n \"startIp\": \"10.0.1.4\",\r\n \"endIp\": \"10.0.1.4\",\r\n \"gateway\": \"10.0.1.1\",\r\n \"netmask\": \"255.255.255.0\",\r\n \"ipAddress\": \"10.0.1.4\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-2/capacityPools/pws-sdk-pool-1/volumes/pws-sdk-vol-1?api-version=2017-08-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlR3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wd3Mtc2RrLWFjYy0yL2NhcGFjaXR5UG9vbHMvcHdzLXNkay1wb29sLTEvdm9sdW1lcy9wd3Mtc2RrLXZvbC0xP2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1/volumes/pws-sdk-vol-1?api-version=2017-08-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlR3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wd3Mtc2RrLWFjYy0xL2NhcGFjaXR5UG9vbHMvcHdzLXNkay1wb29sLTEvdm9sdW1lcy9wd3Mtc2RrLXZvbC0xP2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e402f861-a7bb-4147-b86f-d47a79f697a9" + "c27f03b2-af11-4477-bb0a-7365801c2699" ], "Accept-Language": [ "en-US" @@ -2028,10 +2019,10 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/60d4479e-dad4-4582-88fd-b79b918fb175?api-version=2017-08-15&operationResultResponseType=Location" + "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/4f04aa5c-04f4-475e-8f01-ed772ec98178?api-version=2017-08-15&operationResultResponseType=Location" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/60d4479e-dad4-4582-88fd-b79b918fb175?api-version=2017-08-15" + "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/4f04aa5c-04f4-475e-8f01-ed772ec98178?api-version=2017-08-15" ], "Server": [ "Microsoft-IIS/10.0" @@ -2043,13 +2034,13 @@ "14999" ], "x-ms-request-id": [ - "71d52afa-ed52-428e-a329-9b24d225f1a9" + "916ec086-a2f5-481d-9e7b-6a4e31052de1" ], "x-ms-correlation-request-id": [ - "71d52afa-ed52-428e-a329-9b24d225f1a9" + "916ec086-a2f5-481d-9e7b-6a4e31052de1" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T170728Z:71d52afa-ed52-428e-a329-9b24d225f1a9" + "WESTEUROPE:20190313T132700Z:916ec086-a2f5-481d-9e7b-6a4e31052de1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2058,7 +2049,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:07:27 GMT" + "Wed, 13 Mar 2019 13:26:59 GMT" ], "Expires": [ "-1" @@ -2071,8 +2062,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/60d4479e-dad4-4582-88fd-b79b918fb175?api-version=2017-08-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvNjBkNDQ3OWUtZGFkNC00NTgyLTg4ZmQtYjc5YjkxOGZiMTc1P2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/4f04aa5c-04f4-475e-8f01-ed772ec98178?api-version=2017-08-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvNGYwNGFhNWMtMDRmNC00NzVlLThmMDEtZWQ3NzJlYzk4MTc4P2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2091,7 +2082,7 @@ "no-cache" ], "x-ms-request-id": [ - "1355188c-f155-458e-a97c-1a0e616a7929" + "828923f8-79f3-4c16-819f-e111d798fab1" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11987" @@ -2103,10 +2094,10 @@ "ASP.NET" ], "x-ms-correlation-request-id": [ - "9035de16-00f2-46b2-9bff-28bd1088aca1" + "5407440e-e2e1-4d8c-bbbb-faa3b92bb44d" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T170759Z:9035de16-00f2-46b2-9bff-28bd1088aca1" + "WESTEUROPE:20190313T132730Z:5407440e-e2e1-4d8c-bbbb-faa3b92bb44d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2115,7 +2106,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:07:58 GMT" + "Wed, 13 Mar 2019 13:27:30 GMT" ], "Content-Length": [ "559" @@ -2127,12 +2118,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/60d4479e-dad4-4582-88fd-b79b918fb175\",\r\n \"name\": \"60d4479e-dad4-4582-88fd-b79b918fb175\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-02-27T17:07:26.1761723Z\",\r\n \"endTime\": \"2019-02-27T17:07:29.7037891Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-2/capacityPools/pws-sdk-pool-1/volumes/pws-sdk-vol-1\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/4f04aa5c-04f4-475e-8f01-ed772ec98178\",\r\n \"name\": \"4f04aa5c-04f4-475e-8f01-ed772ec98178\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-03-13T13:26:59.8658169Z\",\r\n \"endTime\": \"2019-03-13T13:27:03.3989437Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1/volumes/pws-sdk-vol-1\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/60d4479e-dad4-4582-88fd-b79b918fb175?api-version=2017-08-15&operationResultResponseType=Location", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvNjBkNDQ3OWUtZGFkNC00NTgyLTg4ZmQtYjc5YjkxOGZiMTc1P2FwaS12ZXJzaW9uPTIwMTctMDgtMTUmb3BlcmF0aW9uUmVzdWx0UmVzcG9uc2VUeXBlPUxvY2F0aW9u", + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/4f04aa5c-04f4-475e-8f01-ed772ec98178?api-version=2017-08-15&operationResultResponseType=Location", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvNGYwNGFhNWMtMDRmNC00NzVlLThmMDEtZWQ3NzJlYzk4MTc4P2FwaS12ZXJzaW9uPTIwMTctMDgtMTUmb3BlcmF0aW9uUmVzdWx0UmVzcG9uc2VUeXBlPUxvY2F0aW9u", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2151,7 +2142,7 @@ "no-cache" ], "x-ms-request-id": [ - "a29f89a3-addc-4440-9c7e-37a4647d7720" + "23874a34-cd2c-4a8f-b09e-e7a6bf1849fd" ], "Server": [ "Microsoft-IIS/10.0" @@ -2163,10 +2154,10 @@ "11986" ], "x-ms-correlation-request-id": [ - "aa5b9a84-1263-4594-ba94-a3f1468a7d5e" + "ed75afe6-8917-4c57-bd3b-55940db841d5" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T170800Z:aa5b9a84-1263-4594-ba94-a3f1468a7d5e" + "WESTEUROPE:20190313T132731Z:ed75afe6-8917-4c57-bd3b-55940db841d5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2175,10 +2166,10 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:07:59 GMT" + "Wed, 13 Mar 2019 13:27:31 GMT" ], "Content-Length": [ - "1384" + "1425" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2187,17 +2178,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-2/capacityPools/pws-sdk-pool-1/volumes/pws-sdk-vol-1\",\r\n \"name\": \"pws-sdk-acc-2/pws-sdk-pool-1/pws-sdk-vol-1\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2019-02-27T17%3A07%3A26.2108446Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"fileSystemId\": \"b359e44e-d004-504d-696a-52e129ab6087\",\r\n \"serviceLevel\": \"Standard\",\r\n \"creationToken\": \"pws-sdk-vol-1\",\r\n \"ownerId\": \"38ab86f1-9d30-413b-8fc0-d31ad85fa6a1\",\r\n \"usageThreshold\": 107374182400,\r\n \"snapshotPolicy\": {\r\n \"enabled\": false\r\n },\r\n \"exportPolicy\": {\r\n \"rules\": [\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 \"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_38ab86f19d30413b8fc0d31ad85fa6a1_d3b6a5cb\",\r\n \"subnetId\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet/subnets/default\",\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"Succeeded\",\r\n \"mountTargetId\": \"8ef6e466-b6f6-2c08-389a-6f531790fcbe\",\r\n \"fileSystemId\": \"b359e44e-d004-504d-696a-52e129ab6087\",\r\n \"startIp\": \"10.0.1.4\",\r\n \"endIp\": \"10.0.1.4\",\r\n \"gateway\": \"10.0.1.1\",\r\n \"netmask\": \"255.255.255.0\",\r\n \"ipAddress\": \"10.0.1.4\"\r\n }\r\n ],\r\n \"provisioningState\": \"Deleting\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1/volumes/pws-sdk-vol-1\",\r\n \"name\": \"pws-sdk-acc-1/pws-sdk-pool-1/pws-sdk-vol-1\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2019-03-13T13%3A26%3A59.9084613Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Deleting\",\r\n \"fileSystemId\": \"495cb442-8b5a-58ea-5f57-f9c14d57da8d\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"pws-sdk-vol-1\",\r\n \"ownerId\": \"38ab86f1-9d30-413b-8fc0-d31ad85fa6a1\",\r\n \"usageThreshold\": 214748364800,\r\n \"usedBytes\": 0,\r\n \"snapshotPolicy\": {\r\n \"enabled\": false\r\n },\r\n \"exportPolicy\": {\r\n \"rules\": [\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 \"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_38ab86f19d30413b8fc0d31ad85fa6a1_9b627091\",\r\n \"subnetId\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet/subnets/default\",\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"Succeeded\",\r\n \"mountTargetId\": \"81448aa7-a71d-df5c-5a65-f5f48049fd78\",\r\n \"fileSystemId\": \"495cb442-8b5a-58ea-5f57-f9c14d57da8d\",\r\n \"startIp\": \"10.0.1.4\",\r\n \"endIp\": \"10.0.1.4\",\r\n \"gateway\": \"10.0.1.1\",\r\n \"netmask\": \"255.255.255.0\",\r\n \"ipAddress\": \"10.0.1.4\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-2/capacityPools/pws-sdk-pool-1/volumes/pws-sdk-vol-2?api-version=2017-08-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlR3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wd3Mtc2RrLWFjYy0yL2NhcGFjaXR5UG9vbHMvcHdzLXNkay1wb29sLTEvdm9sdW1lcy9wd3Mtc2RrLXZvbC0yP2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1/volumes/pws-sdk-vol-2?api-version=2017-08-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlR3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wd3Mtc2RrLWFjYy0xL2NhcGFjaXR5UG9vbHMvcHdzLXNkay1wb29sLTEvdm9sdW1lcy9wd3Mtc2RrLXZvbC0yP2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "320abcf7-3847-4327-990b-5281c0189cc5" + "7557e24e-9788-4a2d-8c45-698b078b38d2" ], "Accept-Language": [ "en-US" @@ -2217,10 +2208,10 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/e7fb7574-050f-413d-8287-99323a064a59?api-version=2017-08-15&operationResultResponseType=Location" + "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/774f098c-7463-4443-aa63-180b88b9a950?api-version=2017-08-15&operationResultResponseType=Location" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/e7fb7574-050f-413d-8287-99323a064a59?api-version=2017-08-15" + "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/774f098c-7463-4443-aa63-180b88b9a950?api-version=2017-08-15" ], "Server": [ "Microsoft-IIS/10.0" @@ -2232,13 +2223,13 @@ "14998" ], "x-ms-request-id": [ - "112a0b2e-d269-44c3-8ac0-7d3f14188db5" + "0e8d7c7f-ac1d-49ac-a097-d438a2d402d7" ], "x-ms-correlation-request-id": [ - "112a0b2e-d269-44c3-8ac0-7d3f14188db5" + "0e8d7c7f-ac1d-49ac-a097-d438a2d402d7" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T170801Z:112a0b2e-d269-44c3-8ac0-7d3f14188db5" + "WESTEUROPE:20190313T132732Z:0e8d7c7f-ac1d-49ac-a097-d438a2d402d7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2247,7 +2238,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:08:00 GMT" + "Wed, 13 Mar 2019 13:27:32 GMT" ], "Expires": [ "-1" @@ -2260,8 +2251,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/e7fb7574-050f-413d-8287-99323a064a59?api-version=2017-08-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvZTdmYjc1NzQtMDUwZi00MTNkLTgyODctOTkzMjNhMDY0YTU5P2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/774f098c-7463-4443-aa63-180b88b9a950?api-version=2017-08-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvNzc0ZjA5OGMtNzQ2My00NDQzLWFhNjMtMTgwYjg4YjlhOTUwP2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2280,7 +2271,7 @@ "no-cache" ], "x-ms-request-id": [ - "a979448d-df42-4108-af54-3b8cecfefc9a" + "39913527-535b-4f18-ac02-cdfc62d82c0f" ], "Server": [ "Microsoft-IIS/10.0" @@ -2289,13 +2280,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11984" ], "x-ms-correlation-request-id": [ - "a8426e9e-157a-4a1e-903c-5915539688b5" + "52432be1-e14d-4e05-b9b2-289974e0b347" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T170831Z:a8426e9e-157a-4a1e-903c-5915539688b5" + "WESTEUROPE:20190313T132802Z:52432be1-e14d-4e05-b9b2-289974e0b347" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2304,7 +2295,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:08:31 GMT" + "Wed, 13 Mar 2019 13:28:02 GMT" ], "Content-Length": [ "548" @@ -2316,12 +2307,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/e7fb7574-050f-413d-8287-99323a064a59\",\r\n \"name\": \"e7fb7574-050f-413d-8287-99323a064a59\",\r\n \"status\": \"Deleting\",\r\n \"startTime\": \"2019-02-27T17:07:58.8112274Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-2/capacityPools/pws-sdk-pool-1/volumes/pws-sdk-vol-2\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/774f098c-7463-4443-aa63-180b88b9a950\",\r\n \"name\": \"774f098c-7463-4443-aa63-180b88b9a950\",\r\n \"status\": \"Deleting\",\r\n \"startTime\": \"2019-03-13T13:27:32.1532251Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1/volumes/pws-sdk-vol-2\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/e7fb7574-050f-413d-8287-99323a064a59?api-version=2017-08-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvZTdmYjc1NzQtMDUwZi00MTNkLTgyODctOTkzMjNhMDY0YTU5P2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/774f098c-7463-4443-aa63-180b88b9a950?api-version=2017-08-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvNzc0ZjA5OGMtNzQ2My00NDQzLWFhNjMtMTgwYjg4YjlhOTUwP2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2340,10 +2331,10 @@ "no-cache" ], "x-ms-request-id": [ - "226c4fef-6376-4637-b9c5-891597772df6" + "486af53c-155f-4692-9158-0ed0e08c74b4" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11983" ], "Server": [ "Microsoft-IIS/10.0" @@ -2352,10 +2343,10 @@ "ASP.NET" ], "x-ms-correlation-request-id": [ - "998497d4-e3bc-4195-85e8-746140ebe4d6" + "0cd37311-a74c-47be-bcd2-e4337ead46b7" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T170902Z:998497d4-e3bc-4195-85e8-746140ebe4d6" + "WESTEUROPE:20190313T132832Z:0cd37311-a74c-47be-bcd2-e4337ead46b7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2364,7 +2355,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:09:01 GMT" + "Wed, 13 Mar 2019 13:28:32 GMT" ], "Content-Length": [ "559" @@ -2376,12 +2367,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/e7fb7574-050f-413d-8287-99323a064a59\",\r\n \"name\": \"e7fb7574-050f-413d-8287-99323a064a59\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-02-27T17:07:58.8112274Z\",\r\n \"endTime\": \"2019-02-27T17:08:53.9266048Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-2/capacityPools/pws-sdk-pool-1/volumes/pws-sdk-vol-2\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/774f098c-7463-4443-aa63-180b88b9a950\",\r\n \"name\": \"774f098c-7463-4443-aa63-180b88b9a950\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-03-13T13:27:32.1532251Z\",\r\n \"endTime\": \"2019-03-13T13:28:22.2263064Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1/volumes/pws-sdk-vol-2\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/e7fb7574-050f-413d-8287-99323a064a59?api-version=2017-08-15&operationResultResponseType=Location", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvZTdmYjc1NzQtMDUwZi00MTNkLTgyODctOTkzMjNhMDY0YTU5P2FwaS12ZXJzaW9uPTIwMTctMDgtMTUmb3BlcmF0aW9uUmVzdWx0UmVzcG9uc2VUeXBlPUxvY2F0aW9u", + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/774f098c-7463-4443-aa63-180b88b9a950?api-version=2017-08-15&operationResultResponseType=Location", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvNzc0ZjA5OGMtNzQ2My00NDQzLWFhNjMtMTgwYjg4YjlhOTUwP2FwaS12ZXJzaW9uPTIwMTctMDgtMTUmb3BlcmF0aW9uUmVzdWx0UmVzcG9uc2VUeXBlPUxvY2F0aW9u", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2400,7 +2391,7 @@ "no-cache" ], "x-ms-request-id": [ - "0bb389b0-de27-4cc0-8674-b0628cc3b82b" + "82078fb0-fc83-4660-80a5-215e60fa138b" ], "Server": [ "Microsoft-IIS/10.0" @@ -2409,13 +2400,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11982" ], "x-ms-correlation-request-id": [ - "18a72364-984b-48b2-a375-b5ecfe06c596" + "0693ca21-dcf2-470f-91df-7b932f709027" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T170903Z:18a72364-984b-48b2-a375-b5ecfe06c596" + "WESTEUROPE:20190313T132833Z:0693ca21-dcf2-470f-91df-7b932f709027" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2424,10 +2415,10 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:09:02 GMT" + "Wed, 13 Mar 2019 13:28:33 GMT" ], "Content-Length": [ - "1403" + "1405" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2436,7 +2427,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-2/capacityPools/pws-sdk-pool-1/volumes/pws-sdk-vol-2\",\r\n \"name\": \"pws-sdk-acc-2/pws-sdk-pool-1/pws-sdk-vol-2\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2019-02-27T17%3A07%3A58.8579967Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Deleting\",\r\n \"fileSystemId\": \"0c0c5e66-91fb-876d-aca8-10dfa135c1e8\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"pws-sdk-vol-2\",\r\n \"ownerId\": \"38ab86f1-9d30-413b-8fc0-d31ad85fa6a1\",\r\n \"usageThreshold\": 107374182400,\r\n \"usedBytes\": 0,\r\n \"snapshotPolicy\": {\r\n \"enabled\": false\r\n },\r\n \"exportPolicy\": {\r\n \"rules\": [\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 \"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_38ab86f19d30413b8fc0d31ad85fa6a1_d3b6a5cb\",\r\n \"subnetId\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet/subnets/default\",\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"Succeeded\",\r\n \"mountTargetId\": \"9ca5d727-dd63-6914-f803-e208f8ace57f\",\r\n \"fileSystemId\": \"0c0c5e66-91fb-876d-aca8-10dfa135c1e8\",\r\n \"startIp\": \"10.4.0.64\",\r\n \"endIp\": \"10.4.0.127\",\r\n \"gateway\": \"10.4.0.65\",\r\n \"netmask\": \"255.255.255.192\",\r\n \"ipAddress\": \"10.0.1.4\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1/volumes/pws-sdk-vol-2\",\r\n \"name\": \"pws-sdk-acc-1/pws-sdk-pool-1/pws-sdk-vol-2\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2019-03-13T13%3A27%3A32.2748045Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Deleting\",\r\n \"fileSystemId\": \"ab24fd38-d545-ee0c-ba65-8d6404a04931\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"pws-sdk-vol-2\",\r\n \"ownerId\": \"38ab86f1-9d30-413b-8fc0-d31ad85fa6a1\",\r\n \"usageThreshold\": 107374182400,\r\n \"usedBytes\": 0,\r\n \"snapshotPolicy\": {\r\n \"enabled\": false\r\n },\r\n \"exportPolicy\": {\r\n \"rules\": [\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 \"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_38ab86f19d30413b8fc0d31ad85fa6a1_9b627091\",\r\n \"subnetId\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet/subnets/default\",\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"Succeeded\",\r\n \"mountTargetId\": \"e5c342c2-1557-a15a-817b-c6078af22e8a\",\r\n \"fileSystemId\": \"ab24fd38-d545-ee0c-ba65-8d6404a04931\",\r\n \"startIp\": \"10.4.0.128\",\r\n \"endIp\": \"10.4.0.191\",\r\n \"gateway\": \"10.4.0.129\",\r\n \"netmask\": \"255.255.255.192\",\r\n \"ipAddress\": \"10.0.1.4\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { @@ -2446,7 +2437,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "68058968-9604-4c58-bbd0-ce6ad8a1d9a8" + "ecf840e7-f380-4690-b172-eaa0533c80e6" ], "Accept-Language": [ "en-US" @@ -2475,13 +2466,13 @@ "14999" ], "x-ms-request-id": [ - "f10ff374-1d1b-48e7-815d-d9d9e6ab19de" + "16ca8bda-05a0-4baa-b9b5-3394e164fc95" ], "x-ms-correlation-request-id": [ - "f10ff374-1d1b-48e7-815d-d9d9e6ab19de" + "16ca8bda-05a0-4baa-b9b5-3394e164fc95" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T170904Z:f10ff374-1d1b-48e7-815d-d9d9e6ab19de" + "SOUTHEASTASIA:20190313T132839Z:16ca8bda-05a0-4baa-b9b5-3394e164fc95" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2490,7 +2481,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:09:03 GMT" + "Wed, 13 Mar 2019 13:28:39 GMT" ], "Expires": [ "-1" @@ -2532,13 +2523,13 @@ "11999" ], "x-ms-request-id": [ - "e1d8320e-bd9c-4a65-8946-0fff9d48d0c7" + "e935efd0-0e71-4130-b106-d84303c25536" ], "x-ms-correlation-request-id": [ - "e1d8320e-bd9c-4a65-8946-0fff9d48d0c7" + "e935efd0-0e71-4130-b106-d84303c25536" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T170920Z:e1d8320e-bd9c-4a65-8946-0fff9d48d0c7" + "SOUTHEASTASIA:20190313T132855Z:e935efd0-0e71-4130-b106-d84303c25536" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2547,7 +2538,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:09:20 GMT" + "Wed, 13 Mar 2019 13:28:54 GMT" ], "Expires": [ "-1" @@ -2589,13 +2580,13 @@ "11998" ], "x-ms-request-id": [ - "fc1cd820-b6c9-4f5a-af42-f913d50914c4" + "b1c3cc97-2915-41e0-88fb-0943a856b323" ], "x-ms-correlation-request-id": [ - "fc1cd820-b6c9-4f5a-af42-f913d50914c4" + "b1c3cc97-2915-41e0-88fb-0943a856b323" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T170936Z:fc1cd820-b6c9-4f5a-af42-f913d50914c4" + "SOUTHEASTASIA:20190313T132911Z:b1c3cc97-2915-41e0-88fb-0943a856b323" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2604,7 +2595,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:09:35 GMT" + "Wed, 13 Mar 2019 13:29:10 GMT" ], "Expires": [ "-1" @@ -2646,13 +2637,13 @@ "11997" ], "x-ms-request-id": [ - "ca811898-a066-44f9-8d75-a6d9e0a8832d" + "f2c5fd55-5f3f-4716-a0c6-f1a4c0027923" ], "x-ms-correlation-request-id": [ - "ca811898-a066-44f9-8d75-a6d9e0a8832d" + "f2c5fd55-5f3f-4716-a0c6-f1a4c0027923" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T170952Z:ca811898-a066-44f9-8d75-a6d9e0a8832d" + "SOUTHEASTASIA:20190313T132926Z:f2c5fd55-5f3f-4716-a0c6-f1a4c0027923" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2661,7 +2652,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:09:51 GMT" + "Wed, 13 Mar 2019 13:29:26 GMT" ], "Expires": [ "-1" @@ -2703,13 +2694,13 @@ "11996" ], "x-ms-request-id": [ - "7a1ec3a5-520e-4583-8aae-fedee23e4dcc" + "50e86f17-dc80-4085-90fa-001352c9eeef" ], "x-ms-correlation-request-id": [ - "7a1ec3a5-520e-4583-8aae-fedee23e4dcc" + "50e86f17-dc80-4085-90fa-001352c9eeef" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T171007Z:7a1ec3a5-520e-4583-8aae-fedee23e4dcc" + "SOUTHEASTASIA:20190313T132942Z:50e86f17-dc80-4085-90fa-001352c9eeef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2718,7 +2709,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:10:07 GMT" + "Wed, 13 Mar 2019 13:29:42 GMT" ], "Expires": [ "-1" @@ -2760,13 +2751,13 @@ "11995" ], "x-ms-request-id": [ - "24b17b5e-48e3-43b8-ba70-cc68c1192d1f" + "5a707c84-a661-4ff8-a089-36d9c5297b51" ], "x-ms-correlation-request-id": [ - "24b17b5e-48e3-43b8-ba70-cc68c1192d1f" + "5a707c84-a661-4ff8-a089-36d9c5297b51" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T171023Z:24b17b5e-48e3-43b8-ba70-cc68c1192d1f" + "SOUTHEASTASIA:20190313T132958Z:5a707c84-a661-4ff8-a089-36d9c5297b51" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2775,7 +2766,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:10:23 GMT" + "Wed, 13 Mar 2019 13:29:58 GMT" ], "Expires": [ "-1" @@ -2817,13 +2808,13 @@ "11994" ], "x-ms-request-id": [ - "10f9a515-6328-4039-9d91-234809f1c776" + "dc5e9a47-2c7d-4e0e-9eec-962a8bf21f1e" ], "x-ms-correlation-request-id": [ - "10f9a515-6328-4039-9d91-234809f1c776" + "dc5e9a47-2c7d-4e0e-9eec-962a8bf21f1e" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T171039Z:10f9a515-6328-4039-9d91-234809f1c776" + "SOUTHEASTASIA:20190313T133014Z:dc5e9a47-2c7d-4e0e-9eec-962a8bf21f1e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2832,7 +2823,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:10:38 GMT" + "Wed, 13 Mar 2019 13:30:13 GMT" ], "Expires": [ "-1" @@ -2874,13 +2865,13 @@ "11993" ], "x-ms-request-id": [ - "30ab552d-c3da-4acc-94ac-24a07c336ec5" + "5a3c20bb-189b-4934-bb20-d6631171e455" ], "x-ms-correlation-request-id": [ - "30ab552d-c3da-4acc-94ac-24a07c336ec5" + "5a3c20bb-189b-4934-bb20-d6631171e455" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T171055Z:30ab552d-c3da-4acc-94ac-24a07c336ec5" + "SOUTHEASTASIA:20190313T133030Z:5a3c20bb-189b-4934-bb20-d6631171e455" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2889,7 +2880,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:10:54 GMT" + "Wed, 13 Mar 2019 13:30:29 GMT" ], "Expires": [ "-1" @@ -2931,13 +2922,13 @@ "11992" ], "x-ms-request-id": [ - "1d835ff0-44ff-4de4-a2f5-f1aa1c490c7d" + "c982a14b-3ec7-46b7-82c5-4cabee056a31" ], "x-ms-correlation-request-id": [ - "1d835ff0-44ff-4de4-a2f5-f1aa1c490c7d" + "c982a14b-3ec7-46b7-82c5-4cabee056a31" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T171111Z:1d835ff0-44ff-4de4-a2f5-f1aa1c490c7d" + "SOUTHEASTASIA:20190313T133045Z:c982a14b-3ec7-46b7-82c5-4cabee056a31" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2946,7 +2937,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:11:11 GMT" + "Wed, 13 Mar 2019 13:30:44 GMT" ], "Expires": [ "-1" @@ -2988,13 +2979,13 @@ "11991" ], "x-ms-request-id": [ - "5d34a57c-38d7-4e61-8946-df00a3375b05" + "379c855e-a907-4bb6-aa90-ef4a1f0c0c5d" ], "x-ms-correlation-request-id": [ - "5d34a57c-38d7-4e61-8946-df00a3375b05" + "379c855e-a907-4bb6-aa90-ef4a1f0c0c5d" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T171126Z:5d34a57c-38d7-4e61-8946-df00a3375b05" + "SOUTHEASTASIA:20190313T133101Z:379c855e-a907-4bb6-aa90-ef4a1f0c0c5d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3003,7 +2994,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:11:26 GMT" + "Wed, 13 Mar 2019 13:31:01 GMT" ], "Expires": [ "-1" @@ -3045,13 +3036,13 @@ "11990" ], "x-ms-request-id": [ - "2bf46cbe-43df-4473-9682-9bc3e3aeddad" + "7c208e1a-2b2f-44a2-9149-6807ee163f4b" ], "x-ms-correlation-request-id": [ - "2bf46cbe-43df-4473-9682-9bc3e3aeddad" + "7c208e1a-2b2f-44a2-9149-6807ee163f4b" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T171142Z:2bf46cbe-43df-4473-9682-9bc3e3aeddad" + "SOUTHEASTASIA:20190313T133117Z:7c208e1a-2b2f-44a2-9149-6807ee163f4b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3060,7 +3051,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:11:41 GMT" + "Wed, 13 Mar 2019 13:31:16 GMT" ], "Expires": [ "-1" @@ -3102,13 +3093,13 @@ "11989" ], "x-ms-request-id": [ - "17d8a226-eda2-4942-ae4a-cbbfa34c1f08" + "eeac6ed3-a814-4761-ad97-45b032cc766a" ], "x-ms-correlation-request-id": [ - "17d8a226-eda2-4942-ae4a-cbbfa34c1f08" + "eeac6ed3-a814-4761-ad97-45b032cc766a" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T171158Z:17d8a226-eda2-4942-ae4a-cbbfa34c1f08" + "SOUTHEASTASIA:20190313T133133Z:eeac6ed3-a814-4761-ad97-45b032cc766a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3117,7 +3108,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:11:57 GMT" + "Wed, 13 Mar 2019 13:31:33 GMT" ], "Expires": [ "-1" @@ -3159,13 +3150,13 @@ "11988" ], "x-ms-request-id": [ - "987fff3e-ae60-442a-be8c-2b3c9837a499" + "bf2aa779-674d-4332-b74d-4691598a6138" ], "x-ms-correlation-request-id": [ - "987fff3e-ae60-442a-be8c-2b3c9837a499" + "bf2aa779-674d-4332-b74d-4691598a6138" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T171214Z:987fff3e-ae60-442a-be8c-2b3c9837a499" + "SOUTHEASTASIA:20190313T133148Z:bf2aa779-674d-4332-b74d-4691598a6138" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3174,7 +3165,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:12:14 GMT" + "Wed, 13 Mar 2019 13:31:48 GMT" ], "Expires": [ "-1" @@ -3216,13 +3207,13 @@ "11987" ], "x-ms-request-id": [ - "0192bce4-38b7-4576-85af-267cac101430" + "d10aa7fe-1548-4d1c-9ff7-f4d2a0183392" ], "x-ms-correlation-request-id": [ - "0192bce4-38b7-4576-85af-267cac101430" + "d10aa7fe-1548-4d1c-9ff7-f4d2a0183392" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T171230Z:0192bce4-38b7-4576-85af-267cac101430" + "SOUTHEASTASIA:20190313T133204Z:d10aa7fe-1548-4d1c-9ff7-f4d2a0183392" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3231,7 +3222,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:12:29 GMT" + "Wed, 13 Mar 2019 13:32:04 GMT" ], "Expires": [ "-1" @@ -3267,13 +3258,13 @@ "11986" ], "x-ms-request-id": [ - "56f3cfdc-43f7-41f9-9924-8da33f2c4c8f" + "9f7932dc-ce7c-4567-817a-670d39798d70" ], "x-ms-correlation-request-id": [ - "56f3cfdc-43f7-41f9-9924-8da33f2c4c8f" + "9f7932dc-ce7c-4567-817a-670d39798d70" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T171246Z:56f3cfdc-43f7-41f9-9924-8da33f2c4c8f" + "SOUTHEASTASIA:20190313T133220Z:9f7932dc-ce7c-4567-817a-670d39798d70" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3282,7 +3273,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:12:45 GMT" + "Wed, 13 Mar 2019 13:32:20 GMT" ], "Expires": [ "-1" @@ -3318,13 +3309,13 @@ "11985" ], "x-ms-request-id": [ - "95d4e2a6-0632-4c48-9e59-9191e2ec0ebe" + "994ea3cb-d6b2-4e75-91a4-9bb4be7d6059" ], "x-ms-correlation-request-id": [ - "95d4e2a6-0632-4c48-9e59-9191e2ec0ebe" + "994ea3cb-d6b2-4e75-91a4-9bb4be7d6059" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20190227T171246Z:95d4e2a6-0632-4c48-9e59-9191e2ec0ebe" + "SOUTHEASTASIA:20190313T133221Z:994ea3cb-d6b2-4e75-91a4-9bb4be7d6059" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3333,7 +3324,7 @@ "nosniff" ], "Date": [ - "Wed, 27 Feb 2019 17:12:45 GMT" + "Wed, 13 Mar 2019 13:32:21 GMT" ], "Expires": [ "-1" 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 new file mode 100644 index 000000000000..339ace5d20ac --- /dev/null +++ b/src/NetAppFiles/NetAppFiles.Test/SessionRecords/Microsoft.Azure.Commands.NetAppFiles.Test.ScenarioTests.ScenarioTest.VolumeTests/TestVolumePipelines.json @@ -0,0 +1,3020 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourcegroups/pws-sdk-tests-rg-1?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlZ3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westus2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "00878fad-0fe4-4849-9520-cdd56c5a3eca" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.13" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "14523749-0296-43f3-9d5f-dcf5f64f5144" + ], + "x-ms-correlation-request-id": [ + "14523749-0296-43f3-9d5f-dcf5f64f5144" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190313T133230Z:14523749-0296-43f3-9d5f-dcf5f64f5144" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 13:32:30 GMT" + ], + "Content-Length": [ + "190" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1\",\r\n \"name\": \"pws-sdk-tests-rg-1\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet?api-version=2018-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlR3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3B3cy1zZGstdGVzdHMtcmctMS12bmV0P2FwaS12ZXJzaW9uPTIwMTgtMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "83dddb8a-4f8e-4358-9e73-5bce42a8edf7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.8.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "5d3fbc09-9812-488c-a598-31fc780bf211" + ], + "x-ms-correlation-request-id": [ + "5d3fbc09-9812-488c-a598-31fc780bf211" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190313T133232Z:5d3fbc09-9812-488c-a598-31fc780bf211" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 13:32:31 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "179" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet' under resource group 'pws-sdk-tests-rg-1' was not found.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet?api-version=2018-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlR3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3B3cy1zZGstdGVzdHMtcmctMS12bmV0P2FwaS12ZXJzaW9uPTIwMTgtMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.8.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"dc926a96-392f-4234-9d66-cfed2cd89d55\"" + ], + "x-ms-request-id": [ + "79ddfdd2-13de-4352-9e05-8a31192a9171" + ], + "x-ms-correlation-request-id": [ + "b9d4dd30-3989-4761-a464-3d3750ee8609" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190313T133241Z:b9d4dd30-3989-4761-a464-3d3750ee8609" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 13:32:40 GMT" + ], + "Content-Length": [ + "678" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pws-sdk-tests-rg-1-vnet\",\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet\",\r\n \"etag\": \"W/\\\"dc926a96-392f-4234-9d66-cfed2cd89d55\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"3f1bfa86-d8d1-4f9e-862c-38594ecb47c4\",\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/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet?api-version=2018-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlR3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3B3cy1zZGstdGVzdHMtcmctMS12bmV0P2FwaS12ZXJzaW9uPTIwMTgtMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "199cf8b9-c39e-45d4-bc28-725896f49e57" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.8.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"dc926a96-392f-4234-9d66-cfed2cd89d55\"" + ], + "x-ms-request-id": [ + "04f97ab7-2080-4425-8322-59b5fdb2afea" + ], + "x-ms-correlation-request-id": [ + "8edd7a0c-1d83-4ecd-a4eb-92c14c754dbb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190313T133241Z:8edd7a0c-1d83-4ecd-a4eb-92c14c754dbb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 13:32:41 GMT" + ], + "Content-Length": [ + "678" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pws-sdk-tests-rg-1-vnet\",\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet\",\r\n \"etag\": \"W/\\\"dc926a96-392f-4234-9d66-cfed2cd89d55\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"3f1bfa86-d8d1-4f9e-862c-38594ecb47c4\",\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/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet?api-version=2018-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlR3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3B3cy1zZGstdGVzdHMtcmctMS12bmV0P2FwaS12ZXJzaW9uPTIwMTgtMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f911ff51-84b3-46b2-a8e1-20762ea24851" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.8.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"dc926a96-392f-4234-9d66-cfed2cd89d55\"" + ], + "x-ms-request-id": [ + "b0ce70c8-e3a0-4211-ab3d-a377092750c2" + ], + "x-ms-correlation-request-id": [ + "504c4c2f-5e67-402f-891d-60ce3b3c53bc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11980" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190313T133242Z:504c4c2f-5e67-402f-891d-60ce3b3c53bc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 13:32:41 GMT" + ], + "Content-Length": [ + "678" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pws-sdk-tests-rg-1-vnet\",\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet\",\r\n \"etag\": \"W/\\\"dc926a96-392f-4234-9d66-cfed2cd89d55\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"3f1bfa86-d8d1-4f9e-862c-38594ecb47c4\",\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/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet?api-version=2018-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlR3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3B3cy1zZGstdGVzdHMtcmctMS12bmV0P2FwaS12ZXJzaW9uPTIwMTgtMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.8.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"1464d6ee-3f70-4839-834f-0010f5337cce\"" + ], + "x-ms-request-id": [ + "ccb3c1b0-0806-4d17-a05e-15458f3dba96" + ], + "x-ms-correlation-request-id": [ + "2072a917-e5c6-4982-a26d-98a3eb012bbe" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11978" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190313T133246Z:2072a917-e5c6-4982-a26d-98a3eb012bbe" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 13:32:45 GMT" + ], + "Content-Length": [ + "2120" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pws-sdk-tests-rg-1-vnet\",\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet\",\r\n \"etag\": \"W/\\\"1464d6ee-3f70-4839-834f-0010f5337cce\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"3f1bfa86-d8d1-4f9e-862c-38594ecb47c4\",\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/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"1464d6ee-3f70-4839-834f-0010f5337cce\\\"\",\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/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"1464d6ee-3f70-4839-834f-0010f5337cce\\\"\",\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 },\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/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet?api-version=2018-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlR3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3B3cy1zZGstdGVzdHMtcmctMS12bmV0P2FwaS12ZXJzaW9uPTIwMTgtMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "58672f3a-fae1-4659-95f3-0b4fb7c98563" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.8.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"1464d6ee-3f70-4839-834f-0010f5337cce\"" + ], + "x-ms-request-id": [ + "bfb0bdaa-661a-4bf4-8946-ef9ffde40363" + ], + "x-ms-correlation-request-id": [ + "a0583872-a233-4474-b679-2750607dbe13" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11977" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190313T133247Z:a0583872-a233-4474-b679-2750607dbe13" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 13:32:46 GMT" + ], + "Content-Length": [ + "2120" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pws-sdk-tests-rg-1-vnet\",\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet\",\r\n \"etag\": \"W/\\\"1464d6ee-3f70-4839-834f-0010f5337cce\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"3f1bfa86-d8d1-4f9e-862c-38594ecb47c4\",\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/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"1464d6ee-3f70-4839-834f-0010f5337cce\\\"\",\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/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"1464d6ee-3f70-4839-834f-0010f5337cce\\\"\",\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 },\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/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet?api-version=2018-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlR3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3B3cy1zZGstdGVzdHMtcmctMS12bmV0P2FwaS12ZXJzaW9uPTIwMTgtMTEtMDE=", + "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 },\r\n \"location\": \"westus2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a8c8060a-acaf-4b42-bdac-f9468df6f2b5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.8.1.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "235" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "bdb11c36-1620-46d7-b3fd-d5f77ea2ff9d" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.Network/locations/westus2/operations/bdb11c36-1620-46d7-b3fd-d5f77ea2ff9d?api-version=2018-11-01" + ], + "x-ms-correlation-request-id": [ + "cd070494-dc66-46ec-b63f-72642e3da680" + ], + "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": [ + "SOUTHEASTASIA:20190313T133236Z:cd070494-dc66-46ec-b63f-72642e3da680" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 13:32:36 GMT" + ], + "Content-Length": [ + "677" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pws-sdk-tests-rg-1-vnet\",\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet\",\r\n \"etag\": \"W/\\\"a6d4221e-fdd7-4973-9a5e-050774039a4a\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"3f1bfa86-d8d1-4f9e-862c-38594ecb47c4\",\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/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet?api-version=2018-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlR3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3B3cy1zZGstdGVzdHMtcmctMS12bmV0P2FwaS12ZXJzaW9uPTIwMTgtMTEtMDE=", + "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 \"resourceNavigationLinks\": [],\r\n \"serviceAssociationLinks\": [],\r\n \"delegations\": [\r\n {\r\n \"properties\": {\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": []\r\n },\r\n \"name\": \"netAppVolumes\"\r\n }\r\n ]\r\n },\r\n \"name\": \"default\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"resourceGuid\": \"3f1bfa86-d8d1-4f9e-862c-38594ecb47c4\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"enableDdosProtection\": false\r\n },\r\n \"etag\": \"W/\\\"dc926a96-392f-4234-9d66-cfed2cd89d55\\\"\",\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet\",\r\n \"location\": \"westus2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b5b7dcec-7ddd-4a1a-b8ad-1dbca0a75109" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.8.1.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1188" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "91345ec8-b911-4b7c-9f42-59141d0b3201" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.Network/locations/westus2/operations/91345ec8-b911-4b7c-9f42-59141d0b3201?api-version=2018-11-01" + ], + "x-ms-correlation-request-id": [ + "9fceab36-1dc1-47d0-8a40-7e798e4dd637" + ], + "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": [ + "SOUTHEASTASIA:20190313T133242Z:9fceab36-1dc1-47d0-8a40-7e798e4dd637" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 13:32:42 GMT" + ], + "Content-Length": [ + "2118" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pws-sdk-tests-rg-1-vnet\",\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet\",\r\n \"etag\": \"W/\\\"02b21f0d-2fee-4b56-bfae-9dd2953952b2\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"3f1bfa86-d8d1-4f9e-862c-38594ecb47c4\",\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/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet/subnets/default\",\r\n \"etag\": \"W/\\\"02b21f0d-2fee-4b56-bfae-9dd2953952b2\\\"\",\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/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet/subnets/default/delegations/netAppVolumes\",\r\n \"etag\": \"W/\\\"02b21f0d-2fee-4b56-bfae-9dd2953952b2\\\"\",\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 },\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/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.Network/locations/westus2/operations/bdb11c36-1620-46d7-b3fd-d5f77ea2ff9d?api-version=2018-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2JkYjExYzM2LTE2MjAtNDZkNy1iM2ZkLWQ1Zjc3ZWEyZmY5ZD9hcGktdmVyc2lvbj0yMDE4LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.8.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c7a246c3-895e-4d0e-bc14-25211262a740" + ], + "x-ms-correlation-request-id": [ + "05681ea4-20fd-457e-8fb5-942152b432e3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190313T133240Z:05681ea4-20fd-457e-8fb5-942152b432e3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 13:32:40 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.Network/locations/westus2/operations/91345ec8-b911-4b7c-9f42-59141d0b3201?api-version=2018-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzkxMzQ1ZWM4LWI5MTEtNGI3Yy05ZjQyLTU5MTQxZDBiMzIwMT9hcGktdmVyc2lvbj0yMDE4LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.8.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "89effa70-ac79-47eb-ae07-f43bf783c388" + ], + "x-ms-correlation-request-id": [ + "21663007-ee56-4aa3-8a8a-92242efdb821" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11979" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190313T133246Z:21663007-ee56-4aa3-8a8a-92242efdb821" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 13:32:45 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1?api-version=2017-08-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlR3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wd3Mtc2RrLWFjYy0xP2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westus2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "03771f20-7f5f-4361-b896-3a1ef2b33627" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/0.9.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2019-03-13T13%3A32%3A52.1004625Z'\"" + ], + "x-ms-request-id": [ + "baaff9ea-0a60-41cf-99b6-3ecc5e42d12e" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/2db0c7d1-87fc-44f1-b877-447c652c54c5?api-version=2017-08-15" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "d4130b84-3205-497d-83a3-06a090f27f1b" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190313T133253Z:d4130b84-3205-497d-83a3-06a090f27f1b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 13:32:52 GMT" + ], + "Content-Length": [ + "362" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1\",\r\n \"name\": \"pws-sdk-acc-1\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2019-03-13T13%3A32%3A52.1004625Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"name\": \"pws-sdk-acc-1\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/2db0c7d1-87fc-44f1-b877-447c652c54c5?api-version=2017-08-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvMmRiMGM3ZDEtODdmYy00NGYxLWI4NzctNDQ3YzY1MmM1NGM1P2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/0.9.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d4c5bdfa-19cb-464c-bedb-379f042c09a1" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "5a52fa68-9f1f-4c47-980f-87036733d913" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190313T133323Z:5a52fa68-9f1f-4c47-980f-87036733d913" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 13:33:22 GMT" + ], + "Content-Length": [ + "507" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/2db0c7d1-87fc-44f1-b877-447c652c54c5\",\r\n \"name\": \"2db0c7d1-87fc-44f1-b877-447c652c54c5\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-03-13T13:32:51.985634Z\",\r\n \"endTime\": \"2019-03-13T13:32:52.3207123Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1?api-version=2017-08-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlR3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wd3Mtc2RrLWFjYy0xP2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/0.9.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2019-03-13T13%3A32%3A52.3696569Z'\"" + ], + "x-ms-request-id": [ + "ee5c2eb1-4132-41fc-870d-b84c8f716870" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "76595916-60a0-4336-97f6-53d0c171a28d" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190313T133323Z:76595916-60a0-4336-97f6-53d0c171a28d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 13:33:23 GMT" + ], + "Content-Length": [ + "363" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1\",\r\n \"name\": \"pws-sdk-acc-1\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts\",\r\n \"etag\": \"W/\\\"datetime'2019-03-13T13%3A32%3A52.3696569Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"name\": \"pws-sdk-acc-1\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1?api-version=2017-08-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlR3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wd3Mtc2RrLWFjYy0xL2NhcGFjaXR5UG9vbHMvcHdzLXNkay1wb29sLTE/YXBpLXZlcnNpb249MjAxNy0wOC0xNQ==", + "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": [ + "161bd351-5ddf-46ff-b224-777b6daf4c7a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/0.9.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "113" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2019-03-13T13%3A33%3A25.3834629Z'\"" + ], + "x-ms-request-id": [ + "49ee27f4-7bb2-42d5-a798-4acbfa08e260" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/854f98dc-f594-4c5d-bafc-1835c2aefa56?api-version=2017-08-15" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "09252fa7-c05e-4b39-9f7d-60bef8520562" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190313T133326Z:09252fa7-c05e-4b39-9f7d-60bef8520562" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 13:33:26 GMT" + ], + "Content-Length": [ + "443" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1\",\r\n \"name\": \"pws-sdk-acc-1/pws-sdk-pool-1\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2019-03-13T13%3A33%3A25.3834629Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"size\": 4398046511104,\r\n \"serviceLevel\": \"Premium\",\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/854f98dc-f594-4c5d-bafc-1835c2aefa56?api-version=2017-08-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvODU0Zjk4ZGMtZjU5NC00YzVkLWJhZmMtMTgzNWMyYWVmYTU2P2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/0.9.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "6d334e37-7261-4ed2-a87d-9d86c68f1640" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "f118b253-67df-4b69-9a56-fc4878a2293d" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190313T133356Z:f118b253-67df-4b69-9a56-fc4878a2293d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 13:33:56 GMT" + ], + "Content-Length": [ + "534" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/854f98dc-f594-4c5d-bafc-1835c2aefa56\",\r\n \"name\": \"854f98dc-f594-4c5d-bafc-1835c2aefa56\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-03-13T13:33:25.32122Z\",\r\n \"endTime\": \"2019-03-13T13:33:25.774411Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1?api-version=2017-08-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlR3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wd3Mtc2RrLWFjYy0xL2NhcGFjaXR5UG9vbHMvcHdzLXNkay1wb29sLTE/YXBpLXZlcnNpb249MjAxNy0wOC0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/0.9.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2019-03-13T13%3A33%3A25.8297841Z'\"" + ], + "x-ms-request-id": [ + "4f369e31-b255-4856-a1ce-7edd10f66dec" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "27c935c6-6bdf-4663-ad83-28c983ff47fb" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190313T133357Z:27c935c6-6bdf-4663-ad83-28c983ff47fb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 13:33:56 GMT" + ], + "Content-Length": [ + "530" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1\",\r\n \"name\": \"pws-sdk-acc-1/pws-sdk-pool-1\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2019-03-13T13%3A33%3A25.8297841Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"poolId\": \"d01988c3-726d-9332-3407-de4a59e477bb\",\r\n \"name\": \"pws-sdk-acc-1/pws-sdk-pool-1\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1?api-version=2017-08-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlR3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wd3Mtc2RrLWFjYy0xL2NhcGFjaXR5UG9vbHMvcHdzLXNkay1wb29sLTE/YXBpLXZlcnNpb249MjAxNy0wOC0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3f798d96-9a16-412d-92eb-651ea5f9c08a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/0.9.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2019-03-13T13%3A33%3A25.8297841Z'\"" + ], + "x-ms-request-id": [ + "3d1f5392-2afd-4268-a341-78304d457695" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-correlation-request-id": [ + "2d6beb21-f566-495d-9e1b-0c9d7af79fc7" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190313T133358Z:2d6beb21-f566-495d-9e1b-0c9d7af79fc7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 13:33:57 GMT" + ], + "Content-Length": [ + "530" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1\",\r\n \"name\": \"pws-sdk-acc-1/pws-sdk-pool-1\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2019-03-13T13%3A33%3A25.8297841Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"poolId\": \"d01988c3-726d-9332-3407-de4a59e477bb\",\r\n \"name\": \"pws-sdk-acc-1/pws-sdk-pool-1\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1?api-version=2017-08-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlR3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wd3Mtc2RrLWFjYy0xL2NhcGFjaXR5UG9vbHMvcHdzLXNkay1wb29sLTE/YXBpLXZlcnNpb249MjAxNy0wOC0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5ee7a08a-fb41-438a-a03e-639988bc997c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/0.9.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2019-03-13T13%3A33%3A25.8297841Z'\"" + ], + "x-ms-request-id": [ + "6f847079-8aae-46bc-8b07-90b36d1c663b" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-correlation-request-id": [ + "b89abcc3-8582-4ade-80f1-3bc14690cf95" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190313T133644Z:b89abcc3-8582-4ade-80f1-3bc14690cf95" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 13:36:44 GMT" + ], + "Content-Length": [ + "530" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1\",\r\n \"name\": \"pws-sdk-acc-1/pws-sdk-pool-1\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"etag\": \"W/\\\"datetime'2019-03-13T13%3A33%3A25.8297841Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"poolId\": \"d01988c3-726d-9332-3407-de4a59e477bb\",\r\n \"name\": \"pws-sdk-acc-1/pws-sdk-pool-1\",\r\n \"serviceLevel\": \"Premium\",\r\n \"size\": 4398046511104,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1/volumes/pws-sdk-vol-1?api-version=2017-08-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlR3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wd3Mtc2RrLWFjYy0xL2NhcGFjaXR5UG9vbHMvcHdzLXNkay1wb29sLTEvdm9sdW1lcy9wd3Mtc2RrLXZvbC0xP2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"creationToken\": \"pws-sdk-vol-1\",\r\n \"serviceLevel\": \"Premium\",\r\n \"usageThreshold\": 107374182400,\r\n \"subnetId\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet/subnets/default\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "57b939da-bd59-4c72-9fdf-b3b59432dddb" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/0.9.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "351" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2019-03-13T13%3A34%3A00.0704814Z'\"" + ], + "x-ms-request-id": [ + "fb05fdfe-86e9-4fb9-8aad-b3111405c7d2" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/47403b3a-c8de-4056-a851-1c35b6afac43?api-version=2017-08-15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-correlation-request-id": [ + "a18cb31e-ffea-48b9-b20c-6240a32bf7be" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190313T133400Z:a18cb31e-ffea-48b9-b20c-6240a32bf7be" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 13:34:00 GMT" + ], + "Content-Length": [ + "711" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1/volumes/pws-sdk-vol-1\",\r\n \"name\": \"pws-sdk-acc-1/pws-sdk-pool-1/pws-sdk-vol-1\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2019-03-13T13%3A34%3A00.0704814Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"creationToken\": \"pws-sdk-vol-1\",\r\n \"serviceLevel\": \"Premium\",\r\n \"usageThreshold\": 107374182400,\r\n \"subnetId\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet/subnets/default\",\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/47403b3a-c8de-4056-a851-1c35b6afac43?api-version=2017-08-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvNDc0MDNiM2EtYzhkZS00MDU2LWE4NTEtMWMzNWI2YWZhYzQzP2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/0.9.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "292ce0a2-c017-48b7-947d-ab3203f77e97" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-correlation-request-id": [ + "44523fba-4130-4c65-a8b4-f9d22851af35" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190313T133432Z:44523fba-4130-4c65-a8b4-f9d22851af35" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 13:34:31 GMT" + ], + "Content-Length": [ + "548" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/47403b3a-c8de-4056-a851-1c35b6afac43\",\r\n \"name\": \"47403b3a-c8de-4056-a851-1c35b6afac43\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2019-03-13T13:34:00.0224658Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1/volumes/pws-sdk-vol-1\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/47403b3a-c8de-4056-a851-1c35b6afac43?api-version=2017-08-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvNDc0MDNiM2EtYzhkZS00MDU2LWE4NTEtMWMzNWI2YWZhYzQzP2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/0.9.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "fb5bf07e-d478-4d55-8180-fb00d4cec4fc" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "1e075caf-eac0-46f7-90ec-3229029d6035" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190313T133502Z:1e075caf-eac0-46f7-90ec-3229029d6035" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 13:35:02 GMT" + ], + "Content-Length": [ + "559" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/47403b3a-c8de-4056-a851-1c35b6afac43\",\r\n \"name\": \"47403b3a-c8de-4056-a851-1c35b6afac43\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-03-13T13:34:00.0224658Z\",\r\n \"endTime\": \"2019-03-13T13:34:45.3542805Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1/volumes/pws-sdk-vol-1\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1/volumes/pws-sdk-vol-1?api-version=2017-08-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlR3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wd3Mtc2RrLWFjYy0xL2NhcGFjaXR5UG9vbHMvcHdzLXNkay1wb29sLTEvdm9sdW1lcy9wd3Mtc2RrLXZvbC0xP2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/0.9.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2019-03-13T13%3A34%3A45.3901678Z'\"" + ], + "x-ms-request-id": [ + "a8f66ad1-a644-4582-8209-ed8f25a03a68" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "e642b733-3642-4bf8-8dad-4681953131bf" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190313T133503Z:e642b733-3642-4bf8-8dad-4681953131bf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 13:35:03 GMT" + ], + "Content-Length": [ + "1398" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1/volumes/pws-sdk-vol-1\",\r\n \"name\": \"pws-sdk-acc-1/pws-sdk-pool-1/pws-sdk-vol-1\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2019-03-13T13%3A34%3A45.3901678Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"9af3d80c-5c7d-ba4f-48ed-bc526f40413e\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"pws-sdk-vol-1\",\r\n \"ownerId\": \"38ab86f1-9d30-413b-8fc0-d31ad85fa6a1\",\r\n \"usageThreshold\": 107374182400,\r\n \"usedBytes\": 0,\r\n \"snapshotPolicy\": {\r\n \"enabled\": false\r\n },\r\n \"exportPolicy\": {\r\n \"rules\": [\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 \"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_38ab86f19d30413b8fc0d31ad85fa6a1_cfaa9659\",\r\n \"subnetId\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet/subnets/default\",\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"Succeeded\",\r\n \"mountTargetId\": \"85c78877-d710-7f47-da82-2e241a78ff72\",\r\n \"fileSystemId\": \"9af3d80c-5c7d-ba4f-48ed-bc526f40413e\",\r\n \"startIp\": \"10.0.1.4\",\r\n \"endIp\": \"10.0.1.4\",\r\n \"gateway\": \"10.0.1.1\",\r\n \"netmask\": \"255.255.255.0\",\r\n \"ipAddress\": \"10.0.1.4\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1/volumes/pws-sdk-vol-1?api-version=2017-08-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlR3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wd3Mtc2RrLWFjYy0xL2NhcGFjaXR5UG9vbHMvcHdzLXNkay1wb29sLTEvdm9sdW1lcy9wd3Mtc2RrLXZvbC0xP2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ae792bfe-c010-4a03-9f87-b2ad74e4fe48" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/0.9.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2019-03-13T13%3A34%3A45.3901678Z'\"" + ], + "x-ms-request-id": [ + "84a1f375-c4f9-4ac0-917a-3708fd6423ab" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-correlation-request-id": [ + "b6efa7bc-9ddd-4e6e-bbfe-d7868da01c5d" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190313T133503Z:b6efa7bc-9ddd-4e6e-bbfe-d7868da01c5d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 13:35:03 GMT" + ], + "Content-Length": [ + "1398" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1/volumes/pws-sdk-vol-1\",\r\n \"name\": \"pws-sdk-acc-1/pws-sdk-pool-1/pws-sdk-vol-1\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2019-03-13T13%3A34%3A45.3901678Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"9af3d80c-5c7d-ba4f-48ed-bc526f40413e\",\r\n \"serviceLevel\": \"Premium\",\r\n \"creationToken\": \"pws-sdk-vol-1\",\r\n \"ownerId\": \"38ab86f1-9d30-413b-8fc0-d31ad85fa6a1\",\r\n \"usageThreshold\": 107374182400,\r\n \"usedBytes\": 0,\r\n \"snapshotPolicy\": {\r\n \"enabled\": false\r\n },\r\n \"exportPolicy\": {\r\n \"rules\": [\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 \"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_38ab86f19d30413b8fc0d31ad85fa6a1_cfaa9659\",\r\n \"subnetId\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet/subnets/default\",\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"Succeeded\",\r\n \"mountTargetId\": \"85c78877-d710-7f47-da82-2e241a78ff72\",\r\n \"fileSystemId\": \"9af3d80c-5c7d-ba4f-48ed-bc526f40413e\",\r\n \"startIp\": \"10.0.1.4\",\r\n \"endIp\": \"10.0.1.4\",\r\n \"gateway\": \"10.0.1.1\",\r\n \"netmask\": \"255.255.255.0\",\r\n \"ipAddress\": \"10.0.1.4\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1/volumes/pws-sdk-vol-1?api-version=2017-08-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlR3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wd3Mtc2RrLWFjYy0xL2NhcGFjaXR5UG9vbHMvcHdzLXNkay1wb29sLTEvdm9sdW1lcy9wd3Mtc2RrLXZvbC0xP2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5d04797c-2f86-4fc1-8ee9-4cd6114e6d70" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/0.9.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2019-03-13T13%3A35%3A09.3804676Z'\"" + ], + "x-ms-request-id": [ + "07453fa9-69c1-4b2f-8148-a6f0812908be" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-correlation-request-id": [ + "00e9fe27-e176-4ed1-ae4f-ca879e0845b9" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190313T133509Z:00e9fe27-e176-4ed1-ae4f-ca879e0845b9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 13:35:09 GMT" + ], + "Content-Length": [ + "1399" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1/volumes/pws-sdk-vol-1\",\r\n \"name\": \"pws-sdk-acc-1/pws-sdk-pool-1/pws-sdk-vol-1\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2019-03-13T13%3A35%3A09.3804676Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"9af3d80c-5c7d-ba4f-48ed-bc526f40413e\",\r\n \"serviceLevel\": \"Standard\",\r\n \"creationToken\": \"pws-sdk-vol-1\",\r\n \"ownerId\": \"38ab86f1-9d30-413b-8fc0-d31ad85fa6a1\",\r\n \"usageThreshold\": 107374182400,\r\n \"usedBytes\": 0,\r\n \"snapshotPolicy\": {\r\n \"enabled\": false\r\n },\r\n \"exportPolicy\": {\r\n \"rules\": [\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 \"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_38ab86f19d30413b8fc0d31ad85fa6a1_cfaa9659\",\r\n \"subnetId\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet/subnets/default\",\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"Succeeded\",\r\n \"mountTargetId\": \"85c78877-d710-7f47-da82-2e241a78ff72\",\r\n \"fileSystemId\": \"9af3d80c-5c7d-ba4f-48ed-bc526f40413e\",\r\n \"startIp\": \"10.0.1.4\",\r\n \"endIp\": \"10.0.1.4\",\r\n \"gateway\": \"10.0.1.1\",\r\n \"netmask\": \"255.255.255.0\",\r\n \"ipAddress\": \"10.0.1.4\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1/volumes/pws-sdk-vol-1?api-version=2017-08-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlR3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wd3Mtc2RrLWFjYy0xL2NhcGFjaXR5UG9vbHMvcHdzLXNkay1wb29sLTEvdm9sdW1lcy9wd3Mtc2RrLXZvbC0xP2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", + "RequestMethod": "PATCH", + "RequestBody": "{\r\n \"properties\": {\r\n \"serviceLevel\": \"Standard\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "26975a00-7927-4a96-bfa9-0ccba13f5000" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/0.9.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "60" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2019-03-13T13%3A35%3A09.3804676Z'\"" + ], + "x-ms-request-id": [ + "d6583a45-c508-4ecf-bfec-b2ddf247bf91" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "d74115fb-3323-4d6d-81a0-21bda1e1e77c" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190313T133509Z:d74115fb-3323-4d6d-81a0-21bda1e1e77c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 13:35:09 GMT" + ], + "Content-Length": [ + "1399" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1/volumes/pws-sdk-vol-1\",\r\n \"name\": \"pws-sdk-acc-1/pws-sdk-pool-1/pws-sdk-vol-1\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2019-03-13T13%3A35%3A09.3804676Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"fileSystemId\": \"9af3d80c-5c7d-ba4f-48ed-bc526f40413e\",\r\n \"serviceLevel\": \"Standard\",\r\n \"creationToken\": \"pws-sdk-vol-1\",\r\n \"ownerId\": \"38ab86f1-9d30-413b-8fc0-d31ad85fa6a1\",\r\n \"usageThreshold\": 107374182400,\r\n \"usedBytes\": 0,\r\n \"snapshotPolicy\": {\r\n \"enabled\": false\r\n },\r\n \"exportPolicy\": {\r\n \"rules\": [\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 \"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_38ab86f19d30413b8fc0d31ad85fa6a1_cfaa9659\",\r\n \"subnetId\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet/subnets/default\",\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"Succeeded\",\r\n \"mountTargetId\": \"85c78877-d710-7f47-da82-2e241a78ff72\",\r\n \"fileSystemId\": \"9af3d80c-5c7d-ba4f-48ed-bc526f40413e\",\r\n \"startIp\": \"10.0.1.4\",\r\n \"endIp\": \"10.0.1.4\",\r\n \"gateway\": \"10.0.1.1\",\r\n \"netmask\": \"255.255.255.0\",\r\n \"ipAddress\": \"10.0.1.4\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1/volumes/pws-sdk-vol-1?api-version=2017-08-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlR3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wd3Mtc2RrLWFjYy0xL2NhcGFjaXR5UG9vbHMvcHdzLXNkay1wb29sLTEvdm9sdW1lcy9wd3Mtc2RrLXZvbC0xP2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2e26e9fc-5057-4401-86ff-df86f3cb1707" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/0.9.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/fb900614-5ec5-48ac-844d-87d965408632?api-version=2017-08-15&operationResultResponseType=Location" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/fb900614-5ec5-48ac-844d-87d965408632?api-version=2017-08-15" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "c179f8ed-0a6d-4069-b509-d1a96e9a8a5c" + ], + "x-ms-correlation-request-id": [ + "c179f8ed-0a6d-4069-b509-d1a96e9a8a5c" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190313T133511Z:c179f8ed-0a6d-4069-b509-d1a96e9a8a5c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 13:35:11 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/fb900614-5ec5-48ac-844d-87d965408632?api-version=2017-08-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvZmI5MDA2MTQtNWVjNS00OGFjLTg0NGQtODdkOTY1NDA4NjMyP2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/0.9.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "04b2abf0-6a88-4d42-8610-b79f5ce7bd8f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-correlation-request-id": [ + "1deb9522-cf85-4159-8032-5821e007a15f" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190313T133541Z:1deb9522-cf85-4159-8032-5821e007a15f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 13:35:41 GMT" + ], + "Content-Length": [ + "547" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/fb900614-5ec5-48ac-844d-87d965408632\",\r\n \"name\": \"fb900614-5ec5-48ac-844d-87d965408632\",\r\n \"status\": \"Deleting\",\r\n \"startTime\": \"2019-03-13T13:35:11.368702Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1/volumes/pws-sdk-vol-1\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/fb900614-5ec5-48ac-844d-87d965408632?api-version=2017-08-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvZmI5MDA2MTQtNWVjNS00OGFjLTg0NGQtODdkOTY1NDA4NjMyP2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/0.9.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e98c4edb-9ec0-4316-aa8c-903bea6bb1b9" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-correlation-request-id": [ + "2505630e-b04f-4ffb-a533-9dbc2bb34659" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190313T133613Z:2505630e-b04f-4ffb-a533-9dbc2bb34659" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 13:36:12 GMT" + ], + "Content-Length": [ + "547" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/fb900614-5ec5-48ac-844d-87d965408632\",\r\n \"name\": \"fb900614-5ec5-48ac-844d-87d965408632\",\r\n \"status\": \"Deleting\",\r\n \"startTime\": \"2019-03-13T13:35:11.368702Z\",\r\n \"endTime\": \"0001-01-01T00:00:00Z\",\r\n \"percentComplete\": 0.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1/volumes/pws-sdk-vol-1\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/fb900614-5ec5-48ac-844d-87d965408632?api-version=2017-08-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvZmI5MDA2MTQtNWVjNS00OGFjLTg0NGQtODdkOTY1NDA4NjMyP2FwaS12ZXJzaW9uPTIwMTctMDgtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/0.9.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "6d35026e-8564-4741-9034-d9d8631d1e68" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-correlation-request-id": [ + "d6e1ea0f-1102-489d-be68-5a7ef7a58d69" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190313T133643Z:d6e1ea0f-1102-489d-be68-5a7ef7a58d69" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 13:36:43 GMT" + ], + "Content-Length": [ + "558" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/fb900614-5ec5-48ac-844d-87d965408632\",\r\n \"name\": \"fb900614-5ec5-48ac-844d-87d965408632\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-03-13T13:35:11.368702Z\",\r\n \"endTime\": \"2019-03-13T13:36:18.8435589Z\",\r\n \"percentComplete\": 100.0,\r\n \"properties\": {\r\n \"resourceName\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1/volumes/pws-sdk-vol-1\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/providers/Microsoft.NetApp/locations/westus2/operationResults/fb900614-5ec5-48ac-844d-87d965408632?api-version=2017-08-15&operationResultResponseType=Location", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0QXBwL2xvY2F0aW9ucy93ZXN0dXMyL29wZXJhdGlvblJlc3VsdHMvZmI5MDA2MTQtNWVjNS00OGFjLTg0NGQtODdkOTY1NDA4NjMyP2FwaS12ZXJzaW9uPTIwMTctMDgtMTUmb3BlcmF0aW9uUmVzdWx0UmVzcG9uc2VUeXBlPUxvY2F0aW9u", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/0.9.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a55fbafd-dd2e-4d2c-baf4-eec6d404f6c3" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-correlation-request-id": [ + "d4925822-5dd2-4af0-acf6-3480a8fe4ee8" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190313T133644Z:d4925822-5dd2-4af0-acf6-3480a8fe4ee8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 13:36:43 GMT" + ], + "Content-Length": [ + "1398" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1/volumes/pws-sdk-vol-1\",\r\n \"name\": \"pws-sdk-acc-1/pws-sdk-pool-1/pws-sdk-vol-1\",\r\n \"type\": \"Microsoft.NetApp/netAppAccounts/capacityPools/volumes\",\r\n \"etag\": \"W/\\\"datetime'2019-03-13T13%3A35%3A11.4349519Z'\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Deleting\",\r\n \"fileSystemId\": \"9af3d80c-5c7d-ba4f-48ed-bc526f40413e\",\r\n \"serviceLevel\": \"Standard\",\r\n \"creationToken\": \"pws-sdk-vol-1\",\r\n \"ownerId\": \"38ab86f1-9d30-413b-8fc0-d31ad85fa6a1\",\r\n \"usageThreshold\": 107374182400,\r\n \"usedBytes\": 0,\r\n \"snapshotPolicy\": {\r\n \"enabled\": false\r\n },\r\n \"exportPolicy\": {\r\n \"rules\": [\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 \"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_38ab86f19d30413b8fc0d31ad85fa6a1_cfaa9659\",\r\n \"subnetId\": \"/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.Network/virtualNetworks/pws-sdk-tests-rg-1-vnet/subnets/default\",\r\n \"mountTargets\": [\r\n {\r\n \"provisioningState\": \"Succeeded\",\r\n \"mountTargetId\": \"85c78877-d710-7f47-da82-2e241a78ff72\",\r\n \"fileSystemId\": \"9af3d80c-5c7d-ba4f-48ed-bc526f40413e\",\r\n \"startIp\": \"10.0.1.4\",\r\n \"endIp\": \"10.0.1.4\",\r\n \"gateway\": \"10.0.1.1\",\r\n \"netmask\": \"255.255.255.0\",\r\n \"ipAddress\": \"10.0.1.4\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/pws-sdk-tests-rg-1/providers/Microsoft.NetApp/netAppAccounts/pws-sdk-acc-1/capacityPools/pws-sdk-pool-1/volumes?api-version=2017-08-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlR3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldEFwcC9uZXRBcHBBY2NvdW50cy9wd3Mtc2RrLWFjYy0xL2NhcGFjaXR5UG9vbHMvcHdzLXNkay1wb29sLTEvdm9sdW1lcz9hcGktdmVyc2lvbj0yMDE3LTA4LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e74afa0e-56a1-4985-bdca-e62ab5f65db0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.NetApp.AzureNetAppFilesManagementClient/0.9.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a217f094-bc87-4d53-bcf7-5e618b70688d" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-correlation-request-id": [ + "68adc2fe-5669-4f1c-93a2-654f22d3fbc1" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190313T133645Z:68adc2fe-5669-4f1c-93a2-654f22d3fbc1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 13:36:44 GMT" + ], + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourcegroups/pws-sdk-tests-rg-1?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L3Jlc291cmNlZ3JvdXBzL3B3cy1zZGstdGVzdHMtcmctMT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "96722a63-7006-4f9f-87db-4ddb35dfd110" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.13" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14998" + ], + "x-ms-request-id": [ + "690919db-a2c0-4da8-b4c4-03eec39783ea" + ], + "x-ms-correlation-request-id": [ + "690919db-a2c0-4da8-b4c4-03eec39783ea" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190313T133650Z:690919db-a2c0-4da8-b4c4-03eec39783ea" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 13:36:49 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVjFNNk1rUlRSRXM2TWtSVVJWTlVVem95UkZKSE9qSkVNUzFYUlZOVVZWTXlJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNeUluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.13" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "7335efd6-1475-4050-a476-9cc15f66881a" + ], + "x-ms-correlation-request-id": [ + "7335efd6-1475-4050-a476-9cc15f66881a" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190313T133706Z:7335efd6-1475-4050-a476-9cc15f66881a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 13:37:05 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVjFNNk1rUlRSRXM2TWtSVVJWTlVVem95UkZKSE9qSkVNUzFYUlZOVVZWTXlJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNeUluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.13" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-request-id": [ + "379bcaff-098d-4b14-a483-aaafc22ccc22" + ], + "x-ms-correlation-request-id": [ + "379bcaff-098d-4b14-a483-aaafc22ccc22" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190313T133721Z:379bcaff-098d-4b14-a483-aaafc22ccc22" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 13:37:21 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVjFNNk1rUlRSRXM2TWtSVVJWTlVVem95UkZKSE9qSkVNUzFYUlZOVVZWTXlJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNeUluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.13" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-request-id": [ + "5d3ff4d2-38d3-4f7c-9130-a810c1d3b29f" + ], + "x-ms-correlation-request-id": [ + "5d3ff4d2-38d3-4f7c-9130-a810c1d3b29f" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190313T133737Z:5d3ff4d2-38d3-4f7c-9130-a810c1d3b29f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 13:37:37 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVjFNNk1rUlRSRXM2TWtSVVJWTlVVem95UkZKSE9qSkVNUzFYUlZOVVZWTXlJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNeUluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.13" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-request-id": [ + "726426fa-f40b-49ac-bae7-7c1303d06c3a" + ], + "x-ms-correlation-request-id": [ + "726426fa-f40b-49ac-bae7-7c1303d06c3a" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190313T133753Z:726426fa-f40b-49ac-bae7-7c1303d06c3a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 13:37:52 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVjFNNk1rUlRSRXM2TWtSVVJWTlVVem95UkZKSE9qSkVNUzFYUlZOVVZWTXlJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNeUluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.13" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-request-id": [ + "e75c1138-6c9a-4790-88f8-186df4af4856" + ], + "x-ms-correlation-request-id": [ + "e75c1138-6c9a-4790-88f8-186df4af4856" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190313T133809Z:e75c1138-6c9a-4790-88f8-186df4af4856" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 13:38:09 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVjFNNk1rUlRSRXM2TWtSVVJWTlVVem95UkZKSE9qSkVNUzFYUlZOVVZWTXlJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNeUluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.13" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-request-id": [ + "bbee75ea-c90e-49fe-b259-24146663d65f" + ], + "x-ms-correlation-request-id": [ + "bbee75ea-c90e-49fe-b259-24146663d65f" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190313T133824Z:bbee75ea-c90e-49fe-b259-24146663d65f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 13:38:24 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVjFNNk1rUlRSRXM2TWtSVVJWTlVVem95UkZKSE9qSkVNUzFYUlZOVVZWTXlJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNeUluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.13" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-request-id": [ + "fafd8a97-3529-4607-9d59-c3f220613230" + ], + "x-ms-correlation-request-id": [ + "fafd8a97-3529-4607-9d59-c3f220613230" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190313T133840Z:fafd8a97-3529-4607-9d59-c3f220613230" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 13:38:39 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVjFNNk1rUlRSRXM2TWtSVVJWTlVVem95UkZKSE9qSkVNUzFYUlZOVVZWTXlJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNeUluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.13" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-request-id": [ + "e423012d-b4a9-41d1-8eeb-62fdc1724069" + ], + "x-ms-correlation-request-id": [ + "e423012d-b4a9-41d1-8eeb-62fdc1724069" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190313T133856Z:e423012d-b4a9-41d1-8eeb-62fdc1724069" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 13:38:56 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVjFNNk1rUlRSRXM2TWtSVVJWTlVVem95UkZKSE9qSkVNUzFYUlZOVVZWTXlJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNeUluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.13" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-request-id": [ + "69ba8e34-edbd-4eec-867a-d0d9a35c5eba" + ], + "x-ms-correlation-request-id": [ + "69ba8e34-edbd-4eec-867a-d0d9a35c5eba" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190313T133912Z:69ba8e34-edbd-4eec-867a-d0d9a35c5eba" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 13:39:11 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVjFNNk1rUlRSRXM2TWtSVVJWTlVVem95UkZKSE9qSkVNUzFYUlZOVVZWTXlJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNeUluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.13" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-request-id": [ + "47c60212-586e-472c-bb4b-e8ae2a21defa" + ], + "x-ms-correlation-request-id": [ + "47c60212-586e-472c-bb4b-e8ae2a21defa" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190313T133928Z:47c60212-586e-472c-bb4b-e8ae2a21defa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 13:39:27 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVjFNNk1rUlRSRXM2TWtSVVJWTlVVem95UkZKSE9qSkVNUzFYUlZOVVZWTXlJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNeUluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.13" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-request-id": [ + "e560a8ac-4a85-429f-94aa-9eacdbaef4e8" + ], + "x-ms-correlation-request-id": [ + "e560a8ac-4a85-429f-94aa-9eacdbaef4e8" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190313T133944Z:e560a8ac-4a85-429f-94aa-9eacdbaef4e8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 13:39:43 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVjFNNk1rUlRSRXM2TWtSVVJWTlVVem95UkZKSE9qSkVNUzFYUlZOVVZWTXlJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNeUluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.13" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-request-id": [ + "836bd1bb-48f3-492e-900b-6fcebf22f585" + ], + "x-ms-correlation-request-id": [ + "836bd1bb-48f3-492e-900b-6fcebf22f585" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190313T133959Z:836bd1bb-48f3-492e-900b-6fcebf22f585" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 13:39:59 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVjFNNk1rUlRSRXM2TWtSVVJWTlVVem95UkZKSE9qSkVNUzFYUlZOVVZWTXlJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNeUluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.13" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], + "x-ms-request-id": [ + "dbf18fbf-2846-48ae-b933-23e08a138ed3" + ], + "x-ms-correlation-request-id": [ + "dbf18fbf-2846-48ae-b933-23e08a138ed3" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190313T134015Z:dbf18fbf-2846-48ae-b933-23e08a138ed3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 13:40:15 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVjFNNk1rUlRSRXM2TWtSVVJWTlVVem95UkZKSE9qSkVNUzFYUlZOVVZWTXlJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNeUluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.13" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" + ], + "x-ms-request-id": [ + "c590aa52-d72a-4e7c-8317-6ef9d92ffefd" + ], + "x-ms-correlation-request-id": [ + "c590aa52-d72a-4e7c-8317-6ef9d92ffefd" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190313T134031Z:c590aa52-d72a-4e7c-8317-6ef9d92ffefd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 13:40:31 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QV1M6MkRTREs6MkRURVNUUzoyRFJHOjJEMS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjU1N2I5NmQtMjMwOC00YTE4LWFhZTEtYjhmN2U3ZTcwY2M3L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVjFNNk1rUlRSRXM2TWtSVVJWTlVVem95UkZKSE9qSkVNUzFYUlZOVVZWTXlJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNeUluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27019.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.13" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" + ], + "x-ms-request-id": [ + "0acba330-53a6-4e2e-947e-f0d0b44e06c1" + ], + "x-ms-correlation-request-id": [ + "0acba330-53a6-4e2e-947e-f0d0b44e06c1" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190313T134032Z:0acba330-53a6-4e2e-947e-f0d0b44e06c1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 13:40:31 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "f557b96d-2308-4a18-aae1-b8f7e7e70cc7" + } +} \ No newline at end of file diff --git a/src/Anf/Anf.sln b/src/NetAppFiles/NetAppFiles.sln similarity index 89% rename from src/Anf/Anf.sln rename to src/NetAppFiles/NetAppFiles.sln index 0b7ae6f5cd9a..c4f4f08acac3 100644 --- a/src/Anf/Anf.sln +++ b/src/NetAppFiles/NetAppFiles.sln @@ -2,11 +2,11 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 15 VisualStudioVersion = 15.0.27703.2042 MinimumVisualStudioVersion = 10.0.40219.1 -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Anf", "Anf\Anf.csproj", "{42656543-77AD-4968-BA4B-BE0778705625}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "NetAppFiles", "NetAppFiles\NetAppFiles.csproj", "{42656543-77AD-4968-BA4B-BE0778705625}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Tests", "Tests", "{95C16AED-FD57-42A0-86C3-2CF4300A4817}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Anf.Test", "Anf.Test\Anf.Test.csproj", "{5E5BBB82-2D69-4A12-93AA-E5753F87AF03}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "NetAppFiles.Test", "NetAppFiles.Test\NetAppFiles.Test.csproj", "{5E5BBB82-2D69-4A12-93AA-E5753F87AF03}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Accounts", "..\Accounts\Accounts\Accounts.csproj", "{142D7B0B-388A-4CEB-A228-7F6D423C5C2E}" EndProject diff --git a/src/Anf/Anf/Account/GetAzureRmAccount.cs b/src/NetAppFiles/NetAppFiles/Account/GetNetAppFilesAccount.cs similarity index 66% rename from src/Anf/Anf/Account/GetAzureRmAccount.cs rename to src/NetAppFiles/NetAppFiles/Account/GetNetAppFilesAccount.cs index 76ae7cbfa218..7e7eb3b6ecaf 100644 --- a/src/Anf/Anf/Account/GetAzureRmAccount.cs +++ b/src/NetAppFiles/NetAppFiles/Account/GetNetAppFilesAccount.cs @@ -1,4 +1,4 @@ -// ---------------------------------------------------------------------------------- +// ---------------------------------------------------------------------------------- // // Copyright Microsoft Corporation // Licensed under the Apache License, Version 2.0 (the "License"); @@ -15,23 +15,28 @@ using System.Management.Automation; using Microsoft.Azure.Management.Internal.Resources.Utilities.Models; using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; -using Microsoft.Azure.Commands.Anf.Common; -using Microsoft.Azure.Commands.Anf.Helpers; -using Microsoft.Azure.Commands.Anf.Models; +using Microsoft.Azure.Commands.NetAppFiles.Common; +using Microsoft.Azure.Commands.NetAppFiles.Helpers; +using Microsoft.Azure.Commands.NetAppFiles.Models; using Microsoft.Azure.Management.NetApp; using System.Linq; -namespace Microsoft.Azure.Commands.Anf.Account +namespace Microsoft.Azure.Commands.NetAppFiles.Account { - [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "AnfAccount"), OutputType(typeof(PSAnfAccount))] - public class GetAzureRmAnfAccount : AzureAnfCmdletBase + [Cmdlet( + "Get", + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "NetAppFilesAccount", + SupportsShouldProcess = true, + DefaultParameterSetName = FieldsParameterSet), OutputType(typeof(PSNetAppFilesAccount))] + [Alias("Get-AnfAccount")] + public class GetAzureRmNetAppFilesAccount : AzureNetAppFilesCmdletBase { [Parameter( Mandatory = true, HelpMessage = "The resource group of the ANF account", ParameterSetName = FieldsParameterSet)] - [ResourceGroupCompleter()] [ValidateNotNullOrEmpty] + [ResourceGroupCompleter()] public string ResourceGroupName { get; set; } [Parameter( @@ -39,10 +44,13 @@ public class GetAzureRmAnfAccount : AzureAnfCmdletBase HelpMessage = "The name of the ANF account", ParameterSetName = FieldsParameterSet)] [ValidateNotNullOrEmpty] - public string AccountName { get; set; } + [Alias("AccountName")] + [ResourceNameCompleter("Microsoft.NetApp/netAppAccounts", nameof(ResourceGroupName))] + public string Name { get; set; } [Parameter( Mandatory = true, + ValueFromPipelineByPropertyName = true, HelpMessage = "The resource id of the ANF account", ParameterSetName = ResourceIdParameterSet)] [ValidateNotNullOrEmpty] @@ -54,17 +62,17 @@ public override void ExecuteCmdlet() { var resourceIdentifier = new ResourceIdentifier(ResourceId); ResourceGroupName = resourceIdentifier.ResourceGroupName; - AccountName = resourceIdentifier.ResourceName; + Name = resourceIdentifier.ResourceName; } - if (AccountName != null) + if (Name != null) { - var anfAccount = AzureNetAppFilesManagementClient.Accounts.Get(ResourceGroupName, AccountName); - WriteObject(anfAccount.ToPsAnfAccount()); + var anfAccount = AzureNetAppFilesManagementClient.Accounts.Get(ResourceGroupName, Name); + WriteObject(anfAccount.ToPsNetAppFilesAccount()); } else { - var anfAccount = AzureNetAppFilesManagementClient.Accounts.List(ResourceGroupName).Select(e => e.ToPsAnfAccount()); + var anfAccount = AzureNetAppFilesManagementClient.Accounts.List(ResourceGroupName).Select(e => e.ToPsNetAppFilesAccount()); WriteObject(anfAccount, true); } } diff --git a/src/Anf/Anf/Account/NewAzureRmAccount.cs b/src/NetAppFiles/NetAppFiles/Account/NewNetAppFilesAccount.cs similarity index 56% rename from src/Anf/Anf/Account/NewAzureRmAccount.cs rename to src/NetAppFiles/NetAppFiles/Account/NewNetAppFilesAccount.cs index 300f6c9ebe48..f48e5e5141c3 100644 --- a/src/Anf/Anf/Account/NewAzureRmAccount.cs +++ b/src/NetAppFiles/NetAppFiles/Account/NewNetAppFilesAccount.cs @@ -12,54 +12,67 @@ // limitations under the License. // ---------------------------------------------------------------------------------- +using System.Collections; using System.Management.Automation; +using Microsoft.Azure.Management.Network; using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; -using Microsoft.Azure.Commands.Anf.Common; -using Microsoft.Azure.Commands.Anf.Models; +using Microsoft.Azure.Commands.NetAppFiles.Common; +using Microsoft.Azure.Commands.NetAppFiles.Models; using Microsoft.Azure.Management.NetApp; using Microsoft.Azure.Management.NetApp.Models; -using Microsoft.Azure.Commands.Anf.Helpers; +using Microsoft.Azure.Commands.NetAppFiles.Helpers; -namespace Microsoft.Azure.Commands.Anf.Account +namespace Microsoft.Azure.Commands.NetAppFiles.Account { - [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "AnfAccount"), OutputType(typeof(PSAnfAccount))] - public class NewAzureRmAnfAccount : AzureAnfCmdletBase + [Cmdlet( + "New", + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "NetAppFilesAccount", + SupportsShouldProcess = true, + DefaultParameterSetName = FieldsParameterSet), OutputType(typeof(PSNetAppFilesAccount))] + [Alias("New-AnfAccount")] + public class NewAzureRmNetAppFilesAccount : AzureNetAppFilesCmdletBase { [Parameter( - Mandatory = true - , HelpMessage = "The resource group of the ANF account")] - [ResourceGroupCompleter()] + Mandatory = true, + HelpMessage = "The resource group of the ANF account")] [ValidateNotNullOrEmpty] + [ResourceGroupCompleter()] public string ResourceGroupName { get; set; } [Parameter( Mandatory = true, HelpMessage = "The location of the resource")] [ValidateNotNullOrEmpty] + [LocationCompleter("Microsoft.NetApp/netAppAccounts")] public string Location { get; set; } [Parameter( Mandatory = false, - HelpMessage = "Tags for the resource")] + HelpMessage = "A hashtable which represents resource tags")] [ValidateNotNullOrEmpty] - public string Tags { get; set; } + [Alias("Tags")] + public Hashtable Tag { get; set; } [Parameter( Mandatory = true, HelpMessage = "The name of the ANF account")] [ValidateNotNullOrEmpty] - public string AccountName { get; set; } + [Alias("AccountName")] + public string Name { get; set; } public override void ExecuteCmdlet() { var netAppAccountBody = new NetAppAccount() { Location = Location, - Tags = Tags + Tags = Tag }; - var anfAccount = AzureNetAppFilesManagementClient.Accounts.CreateOrUpdate(netAppAccountBody, ResourceGroupName, AccountName); - WriteObject(anfAccount.ToPsAnfAccount()); + if (ShouldProcess(Name, "Create the new account")) + { + var anfAccount = AzureNetAppFilesManagementClient.Accounts.CreateOrUpdate(netAppAccountBody, ResourceGroupName, Name); + WriteObject(anfAccount.ToPsNetAppFilesAccount()); + } } } } diff --git a/src/Anf/Anf/Volume/GetAzureRmVolume.cs b/src/NetAppFiles/NetAppFiles/Account/RemoveNetAppFilesAccount.cs similarity index 52% rename from src/Anf/Anf/Volume/GetAzureRmVolume.cs rename to src/NetAppFiles/NetAppFiles/Account/RemoveNetAppFilesAccount.cs index a31203e50982..88b834dbfbe0 100644 --- a/src/Anf/Anf/Volume/GetAzureRmVolume.cs +++ b/src/NetAppFiles/NetAppFiles/Account/RemoveNetAppFilesAccount.cs @@ -15,23 +15,26 @@ using System.Management.Automation; using Microsoft.Azure.Management.Internal.Resources.Utilities.Models; using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; -using Microsoft.Azure.Commands.Anf.Common; -using Microsoft.Azure.Commands.Anf.Helpers; -using Microsoft.Azure.Commands.Anf.Models; +using Microsoft.Azure.Commands.NetAppFiles.Common; +using Microsoft.Azure.Commands.NetAppFiles.Models; using Microsoft.Azure.Management.NetApp; -using System.Linq; -namespace Microsoft.Azure.Commands.Anf.Volume +namespace Microsoft.Azure.Commands.NetAppFiles.Account { - [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "AnfVolume"), OutputType(typeof(PSAnfVolume))] - public class GetAzureRmAnfVolume : AzureAnfCmdletBase + [Cmdlet( + "Remove", + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "NetAppFilesAccount", + SupportsShouldProcess = true, + DefaultParameterSetName = FieldsParameterSet), OutputType(typeof(bool))] + [Alias("Remove-AnfAccount")] + public class RemoveAzureRmNetAppFilesAccount : AzureNetAppFilesCmdletBase { - [Parameter( - Mandatory = true, - HelpMessage = "The resource group of the ANF volume", + [Parameter + (Mandatory = true, + HelpMessage = "The resource group of the ANF account", ParameterSetName = FieldsParameterSet)] - [ResourceGroupCompleter()] [ValidateNotNullOrEmpty] + [ResourceGroupCompleter()] public string ResourceGroupName { get; set; } [Parameter( @@ -39,50 +42,56 @@ public class GetAzureRmAnfVolume : AzureAnfCmdletBase HelpMessage = "The name of the ANF account", ParameterSetName = FieldsParameterSet)] [ValidateNotNullOrEmpty] - public string AccountName { get; set; } + [Alias("AccountName")] + [ResourceNameCompleter("Microsoft.NetApp/netAppAccounts", nameof(ResourceGroupName))] + public string Name { get; set; } [Parameter( Mandatory = true, - HelpMessage = "The name of the ANF pool", - ParameterSetName = FieldsParameterSet)] + ValueFromPipelineByPropertyName = true, + HelpMessage = "The resource id of the ANF account", + ParameterSetName = ResourceIdParameterSet)] [ValidateNotNullOrEmpty] - public string PoolName { get; set; } + public string ResourceId { get; set; } [Parameter( + ParameterSetName = ObjectParameterSet, Mandatory = false, - HelpMessage = "The name of the ANF volume", - ParameterSetName = FieldsParameterSet)] + ValueFromPipeline = true, + HelpMessage = "The account object to remove")] [ValidateNotNullOrEmpty] - public string VolumeName { get; set; } + public PSNetAppFilesAccount InputObject { get; set; } [Parameter( - Mandatory = true, - HelpMessage = "The resource id of the ANF volume", - ParameterSetName = ResourceIdParameterSet)] - [ValidateNotNullOrEmpty] - public string ResourceId { get; set; } + 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]; - PoolName = parentResources[3]; - VolumeName = resourceIdentifier.ResourceName; + Name = resourceIdentifier.ResourceName; + } + else if (ParameterSetName == ObjectParameterSet) + { + ResourceGroupName = InputObject.ResourceGroupName; + Name = InputObject.Name; } - if (VolumeName != null) + if (ShouldProcess(Name, "Remove the account")) { - var anfVolume = AzureNetAppFilesManagementClient.Volumes.Get(ResourceGroupName, AccountName, PoolName, VolumeName); - WriteObject(anfVolume.ToPsAnfVolume()); + AzureNetAppFilesManagementClient.Accounts.Delete(ResourceGroupName, Name); + success = true; } - else + + if (PassThru) { - var anfSnapshot = AzureNetAppFilesManagementClient.Volumes.List(ResourceGroupName, AccountName, PoolName).Select(e => e.ToPsAnfVolume()); - WriteObject(anfSnapshot, true); + WriteObject(success); } } } diff --git a/src/Anf/Anf/Az.Anf.psd1 b/src/NetAppFiles/NetAppFiles/Az.NetAppFiles.psd1 similarity index 78% rename from src/Anf/Anf/Az.Anf.psd1 rename to src/NetAppFiles/NetAppFiles/Az.NetAppFiles.psd1 index 9a20cfa41b90..f1abcea5fb8a 100644 --- a/src/Anf/Anf/Az.Anf.psd1 +++ b/src/NetAppFiles/NetAppFiles/Az.NetAppFiles.psd1 @@ -1,5 +1,5 @@ # -# Module manifest for module 'Az.Anf' +# Module manifest for module 'Az.NetAppFiles' # # Generated by: Microsoft Corporation # @@ -32,7 +32,7 @@ Copyright = 'Microsoft Corporation. All rights reserved.' # Description of the functionality provided by this module Description = 'Microsoft Azure PowerShell - Azure NetApp Files (ANF) service cmdlets for Azure Resource Manager in Windows PowerShell and PowerShell Core. -For more information on Azure NetApp Files (ANF), please visit the following: https://docs.microsoft.com/azure/anf/' +For more information on Azure NetApp Files (ANF), please visit the following: https://docs.microsoft.com/azure/NetAppFiles/' # Minimum version of the PowerShell engine required by this module PowerShellVersion = '5.1' @@ -68,24 +68,27 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.NetApp.dll' # FormatsToProcess = @() # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.Anf.dll') +NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() # Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export. -CmdletsToExport = 'Get-AzAnfAccount', 'New-AzAnfAccount', 'Remove-AzAnfAccount', - 'Get-AzAnfPool', 'New-AzAnfPool', 'Set-AzAnfPool', - 'Remove-AzAnfPool', 'Get-AzAnfVolume', 'New-AzAnfVolume', - 'Remove-AzAnfVolume', 'Update-AzAnfVolume', 'Set-AzAnfVolume', - 'Get-AzAnfMountTarget', 'Get-AzAnfSnapshot', 'New-AzAnfSnapshot', - 'Remove-AzAnfSnapshot' +CmdletsToExport = 'Get-AzNetAppFilesAccount', 'New-AzNetAppFilesAccount', 'Remove-AzNetAppFilesAccount', + 'Get-AzNetAppFilesPool', 'New-AzNetAppFilesPool', 'Update-AzNetAppFilesPool', + 'Remove-AzNetAppFilesPool', 'Get-AzNetAppFilesVolume', 'New-AzNetAppFilesVolume', + 'Remove-AzNetAppFilesVolume', 'Update-AzNetAppFilesVolume', 'Get-AzNetAppFilesMountTarget', + 'Get-AzNetAppFilesSnapshot', 'New-AzNetAppFilesSnapshot', 'Remove-AzNetAppFilesSnapshot' # Variables to export from this module # VariablesToExport = @() # Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export. -AliasesToExport = 'Validate-AzAnfCustomDomain' +AliasesToExport = 'Get-AnfAccount', 'New-AnfAccount', 'Remove-AnfAccount', + 'Get-AnfPool', 'New-AnfPool', 'Update-AnfPool', + 'Remove-AnfPool', 'Get-AnfVolume', 'New-AnfVolume', + 'Remove-AnfVolume', 'Update-AnfVolume', 'Get-AnfMountTarget', + 'Get-AnfSnapshot', 'New-AnfSnapshot', 'Remove-AnfSnapshot' # DSC resources to export from this module # DscResourcesToExport = @() @@ -102,7 +105,7 @@ PrivateData = @{ PSData = @{ # Tags applied to this module. These help with module discovery in online galleries. - Tags = 'Azure','ResourceManager','ARM','NetApp','ANF' + Tags = 'Azure','ResourceManager','ARM','NetApp','NetAppFiles','ANF' # A URL to the license for this module. LicenseUri = 'https://aka.ms/azps-license' @@ -114,7 +117,7 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = 'General availability for Az.Anf module.' + ReleaseNotes = 'Preview for Az.NetAppFiles module.' # Prerelease string of this module # Prerelease = '' diff --git a/src/Anf/Anf/ChangeLog.md b/src/NetAppFiles/NetAppFiles/ChangeLog.md similarity index 95% rename from src/Anf/Anf/ChangeLog.md rename to src/NetAppFiles/NetAppFiles/ChangeLog.md index a3ccdb5c45d7..558009164dce 100644 --- a/src/Anf/Anf/ChangeLog.md +++ b/src/NetAppFiles/NetAppFiles/ChangeLog.md @@ -19,4 +19,4 @@ --> ## Version 0.9.0 -* Preview of `Az.Anf` module \ No newline at end of file +* Preview of `Az.NetAppFiles` module \ No newline at end of file diff --git a/src/Anf/Anf/Common/AzureAnfCmdletBase.cs b/src/NetAppFiles/NetAppFiles/Common/AzureNetAppFilesCmdletBase.cs similarity index 76% rename from src/Anf/Anf/Common/AzureAnfCmdletBase.cs rename to src/NetAppFiles/NetAppFiles/Common/AzureNetAppFilesCmdletBase.cs index d58c8ee36fbe..b0277efbb13b 100644 --- a/src/Anf/Anf/Common/AzureAnfCmdletBase.cs +++ b/src/NetAppFiles/NetAppFiles/Common/AzureNetAppFilesCmdletBase.cs @@ -1,4 +1,4 @@ -// ---------------------------------------------------------------------------------- +// ---------------------------------------------------------------------------------- // // Copyright Microsoft Corporation // Licensed under the Apache License, Version 2.0 (the "License"); @@ -19,37 +19,38 @@ using Microsoft.Azure.Management.NetApp; using Microsoft.Azure.Commands.Common.Authentication.Abstractions; -namespace Microsoft.Azure.Commands.Anf.Common +namespace Microsoft.Azure.Commands.NetAppFiles.Common { /// - /// Base class of Azure Cdn Cmdlet. + /// Base class of Azure NetApp Files Cmdlet. /// - public class AzureAnfCmdletBase : AzureRMCmdlet + public class AzureNetAppFilesCmdletBase : AzureRMCmdlet { - private IAzureNetAppFilesManagementClient _anfManagementClient; + private IAzureNetAppFilesManagementClient _netAppFilesManagementClient; private Dictionary> _defaultRequestHeaders; - public const string ResourceIdParameterSet = "ByResouceIdParameterSet"; + public const string ResourceIdParameterSet = "ByResourceIdParameterSet"; public const string ObjectParameterSet = "ByObjectParameterSet"; + public const string ParentObjectParameterSet = "ByParentObjectParameterSet"; public const string FieldsParameterSet = "ByFieldsParameterSet"; /// - /// Gets or sets the ANF management client. + /// Gets or sets the Azure NetApp Files management client. /// public IAzureNetAppFilesManagementClient AzureNetAppFilesManagementClient { get { - return _anfManagementClient ?? - (_anfManagementClient = + return _netAppFilesManagementClient ?? + (_netAppFilesManagementClient = AzureSession.Instance.ClientFactory.CreateArmClient(DefaultProfile.DefaultContext, AzureEnvironment.Endpoint.ResourceManager)); } - set { _anfManagementClient = value; } + set { _netAppFilesManagementClient = value; } } /// diff --git a/src/Anf/Anf/Common/Constants.cs b/src/NetAppFiles/NetAppFiles/Common/Constants.cs similarity index 83% rename from src/Anf/Anf/Common/Constants.cs rename to src/NetAppFiles/NetAppFiles/Common/Constants.cs index eecdb69d7f5a..af84f5dca1a0 100644 --- a/src/Anf/Anf/Common/Constants.cs +++ b/src/NetAppFiles/NetAppFiles/Common/Constants.cs @@ -1,4 +1,4 @@ -// ---------------------------------------------------------------------------------- +// ---------------------------------------------------------------------------------- // // Copyright Microsoft Corporation // Licensed under the Apache License, Version 2.0 (the "License"); @@ -12,7 +12,7 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -namespace Microsoft.Azure.Commands.Anf.Common +namespace Microsoft.Azure.Commands.NetAppFiles.Common { public class Constants { diff --git a/src/Anf/Anf/Helpers/ModelExtensions.cs b/src/NetAppFiles/NetAppFiles/Helpers/ModelExtensions.cs similarity index 60% rename from src/Anf/Anf/Helpers/ModelExtensions.cs rename to src/NetAppFiles/NetAppFiles/Helpers/ModelExtensions.cs index 102b5ca3a753..957df4f63bef 100644 --- a/src/Anf/Anf/Helpers/ModelExtensions.cs +++ b/src/NetAppFiles/NetAppFiles/Helpers/ModelExtensions.cs @@ -1,14 +1,16 @@ -using Microsoft.Azure.Management.NetApp.Models; -using Microsoft.Azure.Commands.Anf.Models; +using Microsoft.Azure.Management.Internal.Resources.Utilities.Models; +using Microsoft.Azure.Management.NetApp.Models; +using Microsoft.Azure.Commands.NetAppFiles.Models; -namespace Microsoft.Azure.Commands.Anf.Helpers +namespace Microsoft.Azure.Commands.NetAppFiles.Helpers { public static class ModelExtensions { - public static PSAnfAccount ToPsAnfAccount(this NetAppAccount netAppAccount) + public static PSNetAppFilesAccount ToPsNetAppFilesAccount(this NetAppAccount netAppAccount) { - return new PSAnfAccount + return new PSNetAppFilesAccount { + ResourceGroupName = new ResourceIdentifier(netAppAccount.Id).ResourceGroupName, Location = netAppAccount.Location, Id = netAppAccount.Id, Name = netAppAccount.Name, @@ -18,10 +20,11 @@ public static PSAnfAccount ToPsAnfAccount(this NetAppAccount netAppAccount) }; } - public static PSAnfPool ToPsAnfPool(this CapacityPool capacityPool) + public static PSNetAppFilesPool ToPsNetAppFilesPool(this CapacityPool capacityPool) { - return new PSAnfPool + return new PSNetAppFilesPool { + ResourceGroupName = new ResourceIdentifier(capacityPool.Id).ResourceGroupName, Location = capacityPool.Location, Id = capacityPool.Id, Name = capacityPool.Name, @@ -34,10 +37,11 @@ public static PSAnfPool ToPsAnfPool(this CapacityPool capacityPool) }; } - public static PSAnfVolume ToPsAnfVolume(this Management.NetApp.Models.Volume volume) + public static PSNetAppFilesVolume ToPsNetAppFilesVolume(this Management.NetApp.Models.Volume volume) { - return new PSAnfVolume + return new PSNetAppFilesVolume { + ResourceGroupName = new ResourceIdentifier(volume.Id).ResourceGroupName, Location = volume.Location, Id = volume.Id, Name = volume.Name, @@ -51,10 +55,11 @@ public static PSAnfVolume ToPsAnfVolume(this Management.NetApp.Models.Volume vol }; } - public static PSAnfSnapshot ToPsAnfSnapshot(this Management.NetApp.Models.Snapshot snapshot) + public static PSNetAppFilesSnapshot ToPsNetAppFilesSnapshot(this Management.NetApp.Models.Snapshot snapshot) { - return new PSAnfSnapshot + return new PSNetAppFilesSnapshot { + ResourceGroupName = new ResourceIdentifier(snapshot.Id).ResourceGroupName, Location = snapshot.Location, Id = snapshot.Id, Name = snapshot.Name, diff --git a/src/Anf/Anf/Models/PSAnfAccount.cs b/src/NetAppFiles/NetAppFiles/Models/PSNetAppFilesAccount.cs similarity index 82% rename from src/Anf/Anf/Models/PSAnfAccount.cs rename to src/NetAppFiles/NetAppFiles/Models/PSNetAppFilesAccount.cs index 9d24af760b6a..a42abf49de1a 100644 --- a/src/Anf/Anf/Models/PSAnfAccount.cs +++ b/src/NetAppFiles/NetAppFiles/Models/PSNetAppFilesAccount.cs @@ -1,4 +1,4 @@ -// ---------------------------------------------------------------------------------- +// ---------------------------------------------------------------------------------- // // Copyright Microsoft Corporation // Licensed under the Apache License, Version 2.0 (the "License"); @@ -12,18 +12,23 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -namespace Microsoft.Azure.Commands.Anf.Models +namespace Microsoft.Azure.Commands.NetAppFiles.Models { /// /// ARM tracked resource /// - public class PSAnfAccount + public class PSNetAppFilesAccount { + /// + /// 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 /// diff --git a/src/Anf/Anf/Models/PSAnfPool.cs b/src/NetAppFiles/NetAppFiles/Models/PSNetAppFilesPool.cs similarity index 85% rename from src/Anf/Anf/Models/PSAnfPool.cs rename to src/NetAppFiles/NetAppFiles/Models/PSNetAppFilesPool.cs index f6f6e14db18e..f43d53a25795 100644 --- a/src/Anf/Anf/Models/PSAnfPool.cs +++ b/src/NetAppFiles/NetAppFiles/Models/PSNetAppFilesPool.cs @@ -1,4 +1,4 @@ -// ---------------------------------------------------------------------------------- +// ---------------------------------------------------------------------------------- // // Copyright Microsoft Corporation // Licensed under the Apache License, Version 2.0 (the "License"); @@ -12,13 +12,18 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -namespace Microsoft.Azure.Commands.Anf.Models +namespace Microsoft.Azure.Commands.NetAppFiles.Models { /// /// ARM tracked resource /// - public class PSAnfPool + public class PSNetAppFilesPool { + /// + /// Gets or sets the Resource group name + /// + public string ResourceGroupName { get; set; } + /// /// Gets or sets Resource location /// diff --git a/src/Anf/Anf/Models/PSAnfSnapshot.cs b/src/NetAppFiles/NetAppFiles/Models/PSNetAppFilesSnapshot.cs similarity index 86% rename from src/Anf/Anf/Models/PSAnfSnapshot.cs rename to src/NetAppFiles/NetAppFiles/Models/PSNetAppFilesSnapshot.cs index 1b620e69821f..80b13e81594e 100644 --- a/src/Anf/Anf/Models/PSAnfSnapshot.cs +++ b/src/NetAppFiles/NetAppFiles/Models/PSNetAppFilesSnapshot.cs @@ -1,4 +1,4 @@ -// ---------------------------------------------------------------------------------- +// ---------------------------------------------------------------------------------- // // Copyright Microsoft Corporation // Licensed under the Apache License, Version 2.0 (the "License"); @@ -12,13 +12,18 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -namespace Microsoft.Azure.Commands.Anf.Models +namespace Microsoft.Azure.Commands.NetAppFiles.Models { /// /// ARM tracked resource /// - public class PSAnfSnapshot + public class PSNetAppFilesSnapshot { + /// + /// Gets or sets the Resource group name + /// + public string ResourceGroupName { get; set; } + /// /// Gets or sets Resource location /// diff --git a/src/Anf/Anf/Models/PSAnfVolume.cs b/src/NetAppFiles/NetAppFiles/Models/PSNetAppFilesVolume.cs similarity index 89% rename from src/Anf/Anf/Models/PSAnfVolume.cs rename to src/NetAppFiles/NetAppFiles/Models/PSNetAppFilesVolume.cs index 86cb5c0f89c4..f87fe7baf027 100644 --- a/src/Anf/Anf/Models/PSAnfVolume.cs +++ b/src/NetAppFiles/NetAppFiles/Models/PSNetAppFilesVolume.cs @@ -1,4 +1,4 @@ -// ---------------------------------------------------------------------------------- +// ---------------------------------------------------------------------------------- // // Copyright Microsoft Corporation // Licensed under the Apache License, Version 2.0 (the "License"); @@ -12,13 +12,18 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -namespace Microsoft.Azure.Commands.Anf.Models +namespace Microsoft.Azure.Commands.NetAppFiles.Models { /// /// ARM tracked resource /// - public class PSAnfVolume + public class PSNetAppFilesVolume { + /// + /// Gets or sets the Resource group name + /// + public string ResourceGroupName { get; set; } + /// /// Gets or sets Resource location /// diff --git a/src/Anf/Anf/Anf.csproj b/src/NetAppFiles/NetAppFiles/NetAppFiles.csproj similarity index 92% rename from src/Anf/Anf/Anf.csproj rename to src/NetAppFiles/NetAppFiles/NetAppFiles.csproj index ccc5351a4939..19c1c45bc55b 100644 --- a/src/Anf/Anf/Anf.csproj +++ b/src/NetAppFiles/NetAppFiles/NetAppFiles.csproj @@ -1,14 +1,14 @@ - Anf + NetAppFiles - + diff --git a/src/Anf/Anf/Pool/GetAzureRmPool.cs b/src/NetAppFiles/NetAppFiles/Pool/GetNetAppFilesPool.cs similarity index 58% rename from src/Anf/Anf/Pool/GetAzureRmPool.cs rename to src/NetAppFiles/NetAppFiles/Pool/GetNetAppFilesPool.cs index 420585be2395..00a4106fe20a 100644 --- a/src/Anf/Anf/Pool/GetAzureRmPool.cs +++ b/src/NetAppFiles/NetAppFiles/Pool/GetNetAppFilesPool.cs @@ -1,4 +1,4 @@ -// ---------------------------------------------------------------------------------- +// ---------------------------------------------------------------------------------- // // Copyright Microsoft Corporation // Licensed under the Apache License, Version 2.0 (the "License"); @@ -15,23 +15,28 @@ using System.Management.Automation; using Microsoft.Azure.Management.Internal.Resources.Utilities.Models; using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; -using Microsoft.Azure.Commands.Anf.Common; -using Microsoft.Azure.Commands.Anf.Helpers; -using Microsoft.Azure.Commands.Anf.Models; +using Microsoft.Azure.Commands.NetAppFiles.Common; +using Microsoft.Azure.Commands.NetAppFiles.Helpers; +using Microsoft.Azure.Commands.NetAppFiles.Models; using Microsoft.Azure.Management.NetApp; using System.Linq; -namespace Microsoft.Azure.Commands.Anf.Pool +namespace Microsoft.Azure.Commands.NetAppFiles.Pool { - [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "AnfPool"), OutputType(typeof(PSAnfPool))] - public class GetAzureRmAnfPool : AzureAnfCmdletBase + [Cmdlet( + "Get", + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "NetAppFilesPool", + SupportsShouldProcess = true, + DefaultParameterSetName = FieldsParameterSet), OutputType(typeof(PSNetAppFilesPool))] + [Alias("Get-AnfPool")] + public class GetAzureRmNetAppFilesPool : AzureNetAppFilesCmdletBase { [Parameter( Mandatory = true, HelpMessage = "The resource group of the ANF pool", ParameterSetName = FieldsParameterSet)] - [ResourceGroupCompleter()] [ValidateNotNullOrEmpty] + [ResourceGroupCompleter()] public string ResourceGroupName { get; set; } [Parameter( @@ -39,6 +44,7 @@ public class GetAzureRmAnfPool : AzureAnfCmdletBase HelpMessage = "The name of the ANF account", ParameterSetName = FieldsParameterSet)] [ValidateNotNullOrEmpty] + [ResourceNameCompleter("Microsoft.NetApp/netAppAccounts", nameof(ResourceGroupName))] public string AccountName { get; set; } [Parameter( @@ -46,15 +52,26 @@ public class GetAzureRmAnfPool : AzureAnfCmdletBase HelpMessage = "The name of the ANF pool", ParameterSetName = FieldsParameterSet)] [ValidateNotNullOrEmpty] - public string PoolName { get; set; } + [Alias("PoolName")] + [ResourceNameCompleter("Microsoft.NetApp/netAppAccounts/capacityPools", nameof(ResourceGroupName), nameof(AccountName))] + public string Name { get; set; } [Parameter( - Mandatory = true, + Mandatory = true, + ValueFromPipelineByPropertyName = true, HelpMessage = "The resource id of the ANF pool", ParameterSetName = ResourceIdParameterSet)] [ValidateNotNullOrEmpty] public string ResourceId { get; set; } + [Parameter( + ParameterSetName = ObjectParameterSet, + Mandatory = false, + ValueFromPipeline = true, + HelpMessage = "The account object containing the pool to return")] + [ValidateNotNullOrEmpty] + public PSNetAppFilesAccount AccountInputObject { get; set; } + public override void ExecuteCmdlet() { if (ParameterSetName == ResourceIdParameterSet) @@ -63,17 +80,22 @@ public override void ExecuteCmdlet() ResourceGroupName = resourceIdentifier.ResourceGroupName; var parentResource = resourceIdentifier.ParentResource; AccountName = parentResource.Substring(parentResource.LastIndexOf('/') + 1); - PoolName = resourceIdentifier.ResourceName; + Name = resourceIdentifier.ResourceName; + } + else if (ParameterSetName == ObjectParameterSet) + { + ResourceGroupName = AccountInputObject.ResourceGroupName; + AccountName = AccountInputObject.Name; } - if (PoolName != null) + if (Name != null) { - var anfPool = AzureNetAppFilesManagementClient.Pools.Get(ResourceGroupName, AccountName, PoolName); - WriteObject(anfPool.ToPsAnfPool()); + var anfPool = AzureNetAppFilesManagementClient.Pools.Get(ResourceGroupName, AccountName, Name); + WriteObject(anfPool.ToPsNetAppFilesPool()); } else { - var anfPool = AzureNetAppFilesManagementClient.Pools.List(ResourceGroupName, AccountName).Select(e => e.ToPsAnfPool()); + var anfPool = AzureNetAppFilesManagementClient.Pools.List(ResourceGroupName, AccountName).Select(e => e.ToPsNetAppFilesPool()); WriteObject(anfPool, true); } } diff --git a/src/Anf/Anf/Pool/NewAzureRmPool.cs b/src/NetAppFiles/NetAppFiles/Pool/NewNetAppFilesPool.cs similarity index 50% rename from src/Anf/Anf/Pool/NewAzureRmPool.cs rename to src/NetAppFiles/NetAppFiles/Pool/NewNetAppFilesPool.cs index 08f669878f62..1184c3e1b9db 100644 --- a/src/Anf/Anf/Pool/NewAzureRmPool.cs +++ b/src/NetAppFiles/NetAppFiles/Pool/NewNetAppFilesPool.cs @@ -1,4 +1,4 @@ -// ---------------------------------------------------------------------------------- +// ---------------------------------------------------------------------------------- // // Copyright Microsoft Corporation // Licensed under the Apache License, Version 2.0 (the "License"); @@ -12,20 +12,27 @@ // limitations under the License. // ---------------------------------------------------------------------------------- +using System.Collections; using System.Management.Automation; -using Microsoft.Azure.Commands.Anf.Common; -using Microsoft.Azure.Commands.Anf.Models; +using Microsoft.Azure.Commands.NetAppFiles.Common; +using Microsoft.Azure.Commands.NetAppFiles.Models; using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; using Microsoft.Azure.Management.NetApp; using Microsoft.Azure.Management.NetApp.Models; -namespace Microsoft.Azure.Commands.Anf.Pool +namespace Microsoft.Azure.Commands.NetAppFiles.Pool { - [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "AnfPool"), OutputType(typeof(PSAnfPool))] - public class NewAzureRmAnfPool : AzureAnfCmdletBase + [Cmdlet( + "New", + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "NetAppFilesPool", + SupportsShouldProcess = true, + DefaultParameterSetName = FieldsParameterSet), OutputType(typeof(PSNetAppFilesPool))] + [Alias("New-AnfPool")] + public class NewAzureRmNetAppFilesPool : AzureNetAppFilesCmdletBase { [Parameter( Mandatory = true, + ParameterSetName = FieldsParameterSet, HelpMessage = "The resource group of the ANF account")] [ResourceGroupCompleter()] [ValidateNotNullOrEmpty] @@ -33,21 +40,32 @@ public class NewAzureRmAnfPool : AzureAnfCmdletBase [Parameter( Mandatory = true, + ParameterSetName = FieldsParameterSet, HelpMessage = "The location of the resource")] [ValidateNotNullOrEmpty] + [LocationCompleter("Microsoft.NetApp/netAppAccounts/capacityPools")] 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 pool")] [ValidateNotNullOrEmpty] - public string PoolName { get; set; } + [Alias("PoolName")] + [ResourceNameCompleter( + "Microsoft.NetApp/netAppAccounts/capacityPools", + nameof(ResourceGroupName), + nameof(AccountName))] + public string Name { get; set; } [Parameter( Mandatory = true, @@ -58,21 +76,47 @@ public class NewAzureRmAnfPool : AzureAnfCmdletBase [Parameter( Mandatory = true, HelpMessage = "The service level of the ANF pool")] - [PSArgumentCompleter("Standard", "Premium", "Extreme")] [ValidateNotNullOrEmpty] + [PSArgumentCompleter("Standard", "Premium", "Extreme")] public string ServiceLevel { get; set; } + [Parameter( + Mandatory = false, + HelpMessage = "A hashtable which represents resource tags")] + [ValidateNotNullOrEmpty] + [Alias("Tags")] + public Hashtable Tag { get; set; } + + [Parameter( + ParameterSetName = ParentObjectParameterSet, + Mandatory = false, + ValueFromPipeline = true, + HelpMessage = "The account for the new pool object")] + [ValidateNotNullOrEmpty] + public PSNetAppFilesAccount InputObject { get; set; } + public override void ExecuteCmdlet() { + if (ParameterSetName == ParentObjectParameterSet) + { + ResourceGroupName = InputObject.ResourceGroupName; + AccountName = InputObject.Name; + Location = InputObject.Location; + } + var capacityPoolBody = new CapacityPool() { ServiceLevel = ServiceLevel, Size = PoolSize, - Location = Location + Location = Location, + Tags = Tag }; - var anfPool = AzureNetAppFilesManagementClient.Pools.CreateOrUpdate(capacityPoolBody, ResourceGroupName, AccountName, PoolName); - WriteObject(anfPool); + if (ShouldProcess(Name, "Create the new pool")) + { + var anfPool = AzureNetAppFilesManagementClient.Pools.CreateOrUpdate(capacityPoolBody, ResourceGroupName, AccountName, Name); + WriteObject(anfPool); + } } } } diff --git a/src/NetAppFiles/NetAppFiles/Pool/RemoveNetAppFilesPool.cs b/src/NetAppFiles/NetAppFiles/Pool/RemoveNetAppFilesPool.cs new file mode 100644 index 000000000000..cff7e9ec22ae --- /dev/null +++ b/src/NetAppFiles/NetAppFiles/Pool/RemoveNetAppFilesPool.cs @@ -0,0 +1,127 @@ +// ---------------------------------------------------------------------------------- +// +// 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; + +namespace Microsoft.Azure.Commands.NetAppFiles.Pool +{ + [Cmdlet( + "Remove", + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "NetAppFilesPool", + SupportsShouldProcess = true, + DefaultParameterSetName = FieldsParameterSet), OutputType(typeof(PSNetAppFilesPool))] + [Alias("Remove-AnfPool")] + public class RemoveAzureRmNetAppFilesPool : AzureNetAppFilesCmdletBase + { + [Parameter( + Mandatory = true, + ParameterSetName = FieldsParameterSet, + HelpMessage = "The resource group of the ANF pool")] + [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")] + [Parameter( + Mandatory = true, + ParameterSetName = ParentObjectParameterSet, + HelpMessage = "The name of the ANF pool")] + [ValidateNotNullOrEmpty] + [Alias("PoolName")] + [ResourceNameCompleter("Microsoft.NetApp/netAppAccounts/capacityPools", nameof(ResourceGroupName), nameof(AccountName))] + public string Name { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + ParameterSetName = ResourceIdParameterSet, + HelpMessage = "The resource id of the ANF pool")] + [ValidateNotNullOrEmpty] + public string ResourceId { get; set; } + + [Parameter( + ParameterSetName = ParentObjectParameterSet, + Mandatory = false, + ValueFromPipeline = true, + HelpMessage = "The account object containing the pool to remove")] + [ValidateNotNullOrEmpty] + public PSNetAppFilesAccount AccountInputObject { get; set; } + + [Parameter( + ParameterSetName = ObjectParameterSet, + Mandatory = true, + ValueFromPipeline = true, + HelpMessage = "The pool object to remove")] + [ValidateNotNullOrEmpty] + public PSNetAppFilesPool InputObject { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "Return whether the specified pool was successfully removed")] + public SwitchParameter PassThru { get; set; } + + public override void ExecuteCmdlet() + { + bool success = false; + + if (ParameterSetName == ResourceIdParameterSet) + { + var resourceIdentifier = new ResourceIdentifier(ResourceId); + ResourceGroupName = resourceIdentifier.ResourceGroupName; + var parentResource = resourceIdentifier.ParentResource; + AccountName = parentResource.Substring(parentResource.LastIndexOf('/') + 1); + Name = resourceIdentifier.ResourceName; + } + else if (ParameterSetName == ObjectParameterSet) + { + ResourceGroupName = InputObject.ResourceGroupName; + var NameParts = InputObject.Name.Split('/'); + AccountName = NameParts[0]; + Name = NameParts[1]; + } + else if (ParameterSetName == ParentObjectParameterSet) + { + ResourceGroupName = AccountInputObject.ResourceGroupName; + AccountName = AccountInputObject.Name; + } + + if (ShouldProcess(Name, "Remove the pool")) + { + AzureNetAppFilesManagementClient.Pools.Delete(ResourceGroupName, AccountName, Name); + success = true; + } + + if (PassThru) + { + WriteObject(success); + } + } + } +} diff --git a/src/NetAppFiles/NetAppFiles/Pool/UpdateNetAppFilesPool.cs b/src/NetAppFiles/NetAppFiles/Pool/UpdateNetAppFilesPool.cs new file mode 100644 index 000000000000..b60dffd5232f --- /dev/null +++ b/src/NetAppFiles/NetAppFiles/Pool/UpdateNetAppFilesPool.cs @@ -0,0 +1,133 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System.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.NetApp.Models; + +namespace Microsoft.Azure.Commands.NetAppFiles.Pool +{ + [Cmdlet( + "Update", + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "NetAppFilesPool", + SupportsShouldProcess = true, + DefaultParameterSetName = FieldsParameterSet), OutputType(typeof(PSNetAppFilesPool))] + [Alias("Update-AnfPool")] + public class UpdateAzureRmNetAppFilesPool : 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")] + public string Location { 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")] + [Parameter( + Mandatory = true, + ParameterSetName = ParentObjectParameterSet, + HelpMessage = "The name of the ANF pool")] + [ValidateNotNullOrEmpty] + [Alias("PoolName")] + [ResourceNameCompleter( + "Microsoft.NetApp/netAppAccounts/capacityPools", + nameof(ResourceGroupName), + nameof(AccountName))] + public string Name { get; set; } + + [Parameter( + Mandatory = true, + HelpMessage = "The size of the ANF pool")] + [ValidateNotNullOrEmpty] + public long? PoolSize { get; set; } + + [Parameter( + Mandatory = true, + HelpMessage = "The service level of the ANF pool")] + [ValidateNotNullOrEmpty] + public string ServiceLevel { get; set; } + + [Parameter( + ParameterSetName = ParentObjectParameterSet, + Mandatory = false, + ValueFromPipeline = true, + HelpMessage = "The account object containing the pool to update")] + [ValidateNotNullOrEmpty] + public PSNetAppFilesAccount AccountInputObject { get; set; } + + [Parameter( + ParameterSetName = ObjectParameterSet, + Mandatory = true, + ValueFromPipeline = true, + HelpMessage = "The pool object to update")] + [ValidateNotNullOrEmpty] + public PSNetAppFilesPool InputObject { get; set; } + + public override void ExecuteCmdlet() + { + if (ParameterSetName == ObjectParameterSet) + { + ResourceGroupName = InputObject.ResourceGroupName; + Location = InputObject.Location; + var NameParts = InputObject.Name.Split('/'); + AccountName = NameParts[0]; + Name = NameParts[1]; + } + else if (ParameterSetName == ParentObjectParameterSet) + { + ResourceGroupName = AccountInputObject.ResourceGroupName; + Location = AccountInputObject.Location; + AccountName = AccountInputObject.Name; + } + + var capacityPoolBody = new CapacityPool() + { + ServiceLevel = ServiceLevel, + Size = PoolSize, + Location = Location + }; + + if (ShouldProcess(Name, "Update the pool")) + { + var anfPool = AzureNetAppFilesManagementClient.Pools.CreateOrUpdate(capacityPoolBody, ResourceGroupName, AccountName, Name); + WriteObject(anfPool); + } + } + } +} diff --git a/src/Anf/Anf/Properties/AssemblyInfo.cs b/src/NetAppFiles/NetAppFiles/Properties/AssemblyInfo.cs similarity index 100% rename from src/Anf/Anf/Properties/AssemblyInfo.cs rename to src/NetAppFiles/NetAppFiles/Properties/AssemblyInfo.cs diff --git a/src/Anf/Anf/Properties/Resources.Designer.cs b/src/NetAppFiles/NetAppFiles/Properties/Resources.Designer.cs similarity index 91% rename from src/Anf/Anf/Properties/Resources.Designer.cs rename to src/NetAppFiles/NetAppFiles/Properties/Resources.Designer.cs index 4dafbf99631f..64bf46b7b69e 100644 --- a/src/Anf/Anf/Properties/Resources.Designer.cs +++ b/src/NetAppFiles/NetAppFiles/Properties/Resources.Designer.cs @@ -1,4 +1,4 @@ -//------------------------------------------------------------------------------ +//------------------------------------------------------------------------------ // // This code was generated by a tool. // Runtime Version:4.0.30319.42000 @@ -8,7 +8,7 @@ // //------------------------------------------------------------------------------ -namespace Microsoft.Azure.PowerShell.Cmdlets.Anf.Properties { +namespace Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles.Properties { using System; @@ -39,7 +39,7 @@ internal Resources() { internal static global::System.Resources.ResourceManager ResourceManager { get { if (object.ReferenceEquals(resourceMan, null)) { - global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Microsoft.Azure.PowerShell.Cmdlets.Anf.Properties.Resources", typeof(Resources).Assembly); + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles.Properties.Resources", typeof(Resources).Assembly); resourceMan = temp; } return resourceMan; diff --git a/src/Anf/Anf/Properties/Resources.resx b/src/NetAppFiles/NetAppFiles/Properties/Resources.resx similarity index 100% rename from src/Anf/Anf/Properties/Resources.resx rename to src/NetAppFiles/NetAppFiles/Properties/Resources.resx diff --git a/src/NetAppFiles/NetAppFiles/Snapshot/GetNetAppFilesSnapshot.cs b/src/NetAppFiles/NetAppFiles/Snapshot/GetNetAppFilesSnapshot.cs new file mode 100644 index 000000000000..d36d6f25d827 --- /dev/null +++ b/src/NetAppFiles/NetAppFiles/Snapshot/GetNetAppFilesSnapshot.cs @@ -0,0 +1,133 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System.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.Helpers; +using Microsoft.Azure.Commands.NetAppFiles.Models; +using Microsoft.Azure.Management.NetApp; +using System.Linq; + +namespace Microsoft.Azure.Commands.NetAppFiles.Snapshot +{ + [Cmdlet( + "Get", + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "NetAppFilesSnapshot", + SupportsShouldProcess = true, + DefaultParameterSetName = FieldsParameterSet), OutputType(typeof(PSNetAppFilesSnapshot))] + [Alias("Get-AnfSnapshot")] + public class GetAzureRmNetAppFilesSnapshot : 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, HelpMessage = "The name of the ANF pool", ParameterSetName = FieldsParameterSet)] + [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 = "The name of the ANF snapshot")] + [ValidateNotNullOrEmpty] + [Alias("SnapshotName")] + [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 snapshot")] + [ValidateNotNullOrEmpty] + public string ResourceId { get; set; } + + [Parameter( + ParameterSetName = ParentObjectParameterSet, + Mandatory = false, + ValueFromPipeline = true, + HelpMessage = "The pool object containing the volume to return")] + [ValidateNotNullOrEmpty] + public PSNetAppFilesPool VolumeInputObject { 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]; + VolumeName = parentResources[5]; + Name = resourceIdentifier.ResourceName; + } + else if (ParameterSetName == ParentObjectParameterSet) + { + ResourceGroupName = VolumeInputObject.ResourceGroupName; + var NameParts = VolumeInputObject.Name.Split('/'); + AccountName = NameParts[0]; + PoolName = NameParts[1]; + VolumeName = NameParts[1]; + } + + if (Name != null) + { + var anfSnapshot = AzureNetAppFilesManagementClient.Snapshots.Get(ResourceGroupName, AccountName, PoolName, VolumeName, Name); + WriteObject(anfSnapshot.ToPsNetAppFilesSnapshot()); + } + else + { + var anfSnapshot = AzureNetAppFilesManagementClient.Snapshots.List(ResourceGroupName, AccountName, PoolName, VolumeName).Select(e => e.ToPsNetAppFilesSnapshot()); + WriteObject(anfSnapshot, true); + } + } + } +} diff --git a/src/NetAppFiles/NetAppFiles/Snapshot/NewNetAppFilesSnapshot.cs b/src/NetAppFiles/NetAppFiles/Snapshot/NewNetAppFilesSnapshot.cs new file mode 100644 index 000000000000..1b9e609a9055 --- /dev/null +++ b/src/NetAppFiles/NetAppFiles/Snapshot/NewNetAppFilesSnapshot.cs @@ -0,0 +1,142 @@ +// ---------------------------------------------------------------------------------- +// +// 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; + +namespace Microsoft.Azure.Commands.NetAppFiles.Snapshot +{ + [Cmdlet( + "New", + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "NetAppFilesSnapshot", + SupportsShouldProcess = true, + DefaultParameterSetName = FieldsParameterSet), OutputType(typeof(PSNetAppFilesSnapshot))] + [Alias("New-AnfSnapshot")] + public class NewAzureRmNetAppFilesSnapshot : 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 snapshot")] + [ValidateNotNullOrEmpty] + [Alias("SnapshotName")] + [ResourceNameCompleter( + "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots", + nameof(ResourceGroupName), + nameof(AccountName), + nameof(PoolName), + nameof(VolumeName))] + public string Name { get; set; } + + [Parameter( + Mandatory = true, + ParameterSetName = FieldsParameterSet, + HelpMessage = "The file system id")] + [ValidateNotNullOrEmpty] + public string FileSystemId { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "A hashtable which represents resource tags")] + [ValidateNotNullOrEmpty] + [Alias("Tags")] + public Hashtable Tag { get; set; } + + [Parameter( + ParameterSetName = ParentObjectParameterSet, + Mandatory = false, + ValueFromPipeline = true, + HelpMessage = "The volume for the new snapshot object")] + [ValidateNotNullOrEmpty] + public PSNetAppFilesVolume InputObject { get; set; } + + public override void ExecuteCmdlet() + { + if (ParameterSetName == ParentObjectParameterSet) + { + ResourceGroupName = InputObject.ResourceGroupName; + Location = InputObject.Location; + var NameParts = InputObject.Name.Split('/'); + AccountName = NameParts[0]; + PoolName = NameParts[1]; + VolumeName = NameParts[2]; + FileSystemId = InputObject.FileSystemId; + } + + var snapshotBody = new Management.NetApp.Models.Snapshot() + { + Location = Location, + FileSystemId = FileSystemId + }; + + if (ShouldProcess(Name, "Create the new snapshot")) + { + var anfSnapshot = AzureNetAppFilesManagementClient.Snapshots.Create(snapshotBody, ResourceGroupName, AccountName, PoolName, VolumeName, Name); + WriteObject(anfSnapshot); + } + } + } +} diff --git a/src/NetAppFiles/NetAppFiles/Snapshot/RemoveNetAppFilesSnapshot.cs b/src/NetAppFiles/NetAppFiles/Snapshot/RemoveNetAppFilesSnapshot.cs new file mode 100644 index 000000000000..a2df29983f96 --- /dev/null +++ b/src/NetAppFiles/NetAppFiles/Snapshot/RemoveNetAppFilesSnapshot.cs @@ -0,0 +1,161 @@ +// ---------------------------------------------------------------------------------- +// +// 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; + +namespace Microsoft.Azure.Commands.NetAppFiles.Snapshot +{ + [Cmdlet + ("Remove", + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "NetAppFilesSnapshot", + SupportsShouldProcess = true, + DefaultParameterSetName = FieldsParameterSet), OutputType(typeof(PSNetAppFilesSnapshot))] + [Alias("Remove-AnfSnapshot")] + public class RemoveAzureRmNetAppFilesSnapshot : AzureNetAppFilesCmdletBase + { + [Parameter( + Mandatory = true, + HelpMessage = "The resource group of the ANF snapshot", + ParameterSetName = FieldsParameterSet)] + [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, + 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, + ParameterSetName = FieldsParameterSet, + HelpMessage = "The name of the ANF snapshot")] + [ValidateNotNullOrEmpty] + [Alias("SnapshotName")] + [ResourceNameCompleter( + "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", + nameof(ResourceGroupName), + nameof(AccountName), + nameof(PoolName), + nameof(VolumeName))] + public string Name { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The resource id of the ANF snapshot", + ParameterSetName = ResourceIdParameterSet)] + [ValidateNotNullOrEmpty] + public string ResourceId { get; set; } + + [Parameter( + ParameterSetName = ParentObjectParameterSet, + Mandatory = false, + ValueFromPipeline = true, + HelpMessage = "The volume object containing the snapshot to remove")] + [ValidateNotNullOrEmpty] + public PSNetAppFilesVolume VolumeInputObject { get; set; } + + [Parameter( + ParameterSetName = ObjectParameterSet, + Mandatory = false, + ValueFromPipeline = true, + HelpMessage = "The snapshot object to remove")] + [ValidateNotNullOrEmpty] + public PSNetAppFilesSnapshot SnapshotInputObject { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "Return whether the specified volume was successfully removed")] + public SwitchParameter PassThru { get; set; } + + public override void ExecuteCmdlet() + { + bool success = false; + + if (ParameterSetName == ResourceIdParameterSet) + { + var resourceIdentifier = new ResourceIdentifier(ResourceId); + ResourceGroupName = resourceIdentifier.ResourceGroupName; + var parentResources = resourceIdentifier.ParentResource.Split('/'); + AccountName = parentResources[1]; + PoolName = parentResources[3]; + VolumeName = parentResources[5]; + Name = resourceIdentifier.ResourceName; + } + else if (ParameterSetName == ObjectParameterSet) + { + ResourceGroupName = SnapshotInputObject.ResourceGroupName; + var NameParts = SnapshotInputObject.Name.Split('/'); + AccountName = NameParts[0]; + PoolName = NameParts[1]; + VolumeName = NameParts[2]; + Name = NameParts[3]; + } + else if (ParameterSetName == ParentObjectParameterSet) + { + ResourceGroupName = VolumeInputObject.ResourceGroupName; + var NameParts = VolumeInputObject.Name.Split('/'); + AccountName = NameParts[0]; + PoolName = NameParts[1]; + VolumeName = NameParts[2]; + } + + if (ShouldProcess(Name, "Remove the snapshot")) + { + AzureNetAppFilesManagementClient.Snapshots.Delete(ResourceGroupName, AccountName, PoolName, VolumeName, Name); + success = true; + } + + if (PassThru) + { + WriteObject(success); + } + + } + } +} diff --git a/src/Anf/Anf/StartupScripts/sample.ps1 b/src/NetAppFiles/NetAppFiles/StartupScripts/sample.ps1 similarity index 100% rename from src/Anf/Anf/StartupScripts/sample.ps1 rename to src/NetAppFiles/NetAppFiles/StartupScripts/sample.ps1 diff --git a/src/NetAppFiles/NetAppFiles/Volume/GetNetAppFilesVolume.cs b/src/NetAppFiles/NetAppFiles/Volume/GetNetAppFilesVolume.cs new file mode 100644 index 000000000000..c64d2a8e61e3 --- /dev/null +++ b/src/NetAppFiles/NetAppFiles/Volume/GetNetAppFilesVolume.cs @@ -0,0 +1,123 @@ +// ---------------------------------------------------------------------------------- +// +// 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.Helpers; +using Microsoft.Azure.Commands.NetAppFiles.Models; +using Microsoft.Azure.Management.NetApp; +using System.Linq; + +namespace Microsoft.Azure.Commands.NetAppFiles.Volume +{ + [Cmdlet( + "Get", + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "NetAppFilesVolume", + SupportsShouldProcess = true, + DefaultParameterSetName = FieldsParameterSet), OutputType(typeof(PSNetAppFilesVolume))] + [Alias("Get-AnfVolume")] + public class GetAzureRmNetAppFilesVolume : 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 = false, + ParameterSetName = FieldsParameterSet, + HelpMessage = "The name of the ANF 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 volume")] + [ValidateNotNullOrEmpty] + public string ResourceId { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipeline = true, + ParameterSetName = ParentObjectParameterSet, + HelpMessage = "The pool object containing the volume to return")] + [ValidateNotNullOrEmpty] + public PSNetAppFilesPool PoolInputObject { 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]; + Name = resourceIdentifier.ResourceName; + } + else if (ParameterSetName == ParentObjectParameterSet) + { + ResourceGroupName = PoolInputObject.ResourceGroupName; + var NameParts = PoolInputObject.Name.Split('/'); + AccountName = NameParts[0]; + PoolName = NameParts[1]; + } + + if (Name != null) + { + var anfVolume = AzureNetAppFilesManagementClient.Volumes.Get(ResourceGroupName, AccountName, PoolName, Name); + WriteObject(anfVolume.ToPsNetAppFilesVolume()); + } + else + { + var anfSnapshot = AzureNetAppFilesManagementClient.Volumes.List(ResourceGroupName, AccountName, PoolName).Select(e => e.ToPsNetAppFilesVolume()); + WriteObject(anfSnapshot, true); + } + } + } +} diff --git a/src/Anf/Anf/Volume/NewAzureRmVolume.cs b/src/NetAppFiles/NetAppFiles/Volume/NewNetAppFilesVolume.cs similarity index 51% rename from src/Anf/Anf/Volume/NewAzureRmVolume.cs rename to src/NetAppFiles/NetAppFiles/Volume/NewNetAppFilesVolume.cs index ca495fc16636..5f0bd7e2a821 100644 --- a/src/Anf/Anf/Volume/NewAzureRmVolume.cs +++ b/src/NetAppFiles/NetAppFiles/Volume/NewNetAppFilesVolume.cs @@ -1,4 +1,4 @@ -// ---------------------------------------------------------------------------------- +// ---------------------------------------------------------------------------------- // // Copyright Microsoft Corporation // Licensed under the Apache License, Version 2.0 (the "License"); @@ -12,47 +12,71 @@ // limitations under the License. // ---------------------------------------------------------------------------------- +using System.Collections; using System.Management.Automation; using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; -using Microsoft.Azure.Commands.Anf.Common; -using Microsoft.Azure.Commands.Anf.Models; +using Microsoft.Azure.Commands.NetAppFiles.Common; +using Microsoft.Azure.Commands.NetAppFiles.Models; using Microsoft.Azure.Management.NetApp; -namespace Microsoft.Azure.Commands.Anf.Volume +namespace Microsoft.Azure.Commands.NetAppFiles.Volume { - [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "AnfVolume"), OutputType(typeof(PSAnfVolume))] - public class NewAzureRmAnfVolume : AzureAnfCmdletBase + [Cmdlet( + "New", + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "NetAppFilesVolume", + SupportsShouldProcess = true, + DefaultParameterSetName = FieldsParameterSet), OutputType(typeof(PSNetAppFilesVolume))] + [Alias("New-AnfVolume")] + public class NewAzureRmNetAppFilesVolume : AzureNetAppFilesCmdletBase { [Parameter( Mandatory = true, + ParameterSetName = FieldsParameterSet, HelpMessage = "The resource group of the ANF account")] - [ResourceGroupCompleter()] [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")] 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, HelpMessage = "The name of the ANF volume")] [ValidateNotNullOrEmpty] - public string VolumeName { get; set; } + [Alias("VolumeName")] + [ResourceNameCompleter( + "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", + nameof(ResourceGroupName), + nameof(AccountName), + nameof(PoolName))] + public string Name { get; set; } [Parameter( Mandatory = true, @@ -76,21 +100,50 @@ public class NewAzureRmAnfVolume : AzureAnfCmdletBase Mandatory = true, HelpMessage = "The service level of the ANF volume")] [ValidateNotNullOrEmpty] + [PSArgumentCompleter("Standard", "Premium", "Extreme")] public string ServiceLevel { get; set; } + [Parameter( + Mandatory = false, + HelpMessage = "A hashtable which represents resource tags")] + [ValidateNotNullOrEmpty] + [Alias("Tags")] + public Hashtable Tag { get; set; } + + [Parameter( + ParameterSetName = ParentObjectParameterSet, + Mandatory = false, + ValueFromPipeline = true, + HelpMessage = "The pool for the new volume object")] + [ValidateNotNullOrEmpty] + public PSNetAppFilesPool InputObject { get; set; } + public override void ExecuteCmdlet() { + if (ParameterSetName == ParentObjectParameterSet) + { + ResourceGroupName = InputObject.ResourceGroupName; + Location = InputObject.Location; + var NameParts = InputObject.Name.Split('/'); + AccountName = NameParts[0]; + PoolName = NameParts[1]; + } + var volumeBody = new Management.NetApp.Models.Volume() { ServiceLevel = ServiceLevel, UsageThreshold = UsageThreshold, CreationToken = CreationToken, SubnetId = SubnetId, - Location = Location + Location = Location, + Tags = Tag }; - var anfVolume = AzureNetAppFilesManagementClient.Volumes.CreateOrUpdate(volumeBody, ResourceGroupName, AccountName, PoolName, VolumeName); - WriteObject(anfVolume); + if (ShouldProcess(Name, "Create the new volume")) + { + var anfVolume = AzureNetAppFilesManagementClient.Volumes.CreateOrUpdate(volumeBody, ResourceGroupName, AccountName, PoolName, Name); + WriteObject(anfVolume); + } } } } diff --git a/src/NetAppFiles/NetAppFiles/Volume/RemoveNetAppFilesVolume.cs b/src/NetAppFiles/NetAppFiles/Volume/RemoveNetAppFilesVolume.cs new file mode 100644 index 000000000000..b86f49bbba4d --- /dev/null +++ b/src/NetAppFiles/NetAppFiles/Volume/RemoveNetAppFilesVolume.cs @@ -0,0 +1,148 @@ +// ---------------------------------------------------------------------------------- +// +// 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; + +namespace Microsoft.Azure.Commands.NetAppFiles.Volume +{ + [Cmdlet( + "Remove", + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "NetAppFilesVolume", + SupportsShouldProcess = true, + DefaultParameterSetName = FieldsParameterSet), OutputType(typeof(PSNetAppFilesVolume))] + [Alias("Remove-AnfVolume")] + public class RemoveAzureRmNetAppFilesVolume : 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( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + ParameterSetName = ResourceIdParameterSet, + HelpMessage = "The resource id of the ANF volume")] + [ValidateNotNullOrEmpty] + public string ResourceId { get; set; } + + [Parameter( + ParameterSetName = ParentObjectParameterSet, + Mandatory = false, + ValueFromPipeline = true, + HelpMessage = "The pool object containing the volume to remove")] + [ValidateNotNullOrEmpty] + public PSNetAppFilesPool PoolInputObject { get; set; } + + [Parameter( + ParameterSetName = ObjectParameterSet, + Mandatory = false, + ValueFromPipeline = true, + HelpMessage = "The volume object to remove")] + [ValidateNotNullOrEmpty] + public PSNetAppFilesVolume VolumeInputObject { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "Return whether the specified volume was successfully removed")] + public SwitchParameter PassThru { get; set; } + + public override void ExecuteCmdlet() + { + bool success = false; + + if (ParameterSetName == ResourceIdParameterSet) + { + var resourceIdentifier = new ResourceIdentifier(ResourceId); + ResourceGroupName = resourceIdentifier.ResourceGroupName; + var parentResources = resourceIdentifier.ParentResource.Split('/'); + AccountName = parentResources[1]; + PoolName = parentResources[3]; + Name = resourceIdentifier.ResourceName; + } + else if (ParameterSetName == ObjectParameterSet) + { + ResourceGroupName = VolumeInputObject.ResourceGroupName; + var NameParts = VolumeInputObject.Name.Split('/'); + AccountName = NameParts[0]; + PoolName = NameParts[1]; + Name = NameParts[2]; + } + else if (ParameterSetName == ParentObjectParameterSet) + { + ResourceGroupName = PoolInputObject.ResourceGroupName; + var NameParts = PoolInputObject.Name.Split('/'); + AccountName = NameParts[0]; + PoolName = NameParts[1]; + } + + if (ShouldProcess(Name, "Remove the volume")) + { + AzureNetAppFilesManagementClient.Volumes.Delete(ResourceGroupName, AccountName, PoolName, Name); + success = true; + } + + if (PassThru) + { + WriteObject(success); + } + } + } +} diff --git a/src/NetAppFiles/NetAppFiles/Volume/UpdateNetAppFilesVolume.cs b/src/NetAppFiles/NetAppFiles/Volume/UpdateNetAppFilesVolume.cs new file mode 100644 index 000000000000..c212587d990e --- /dev/null +++ b/src/NetAppFiles/NetAppFiles/Volume/UpdateNetAppFilesVolume.cs @@ -0,0 +1,156 @@ +// ---------------------------------------------------------------------------------- +// +// 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 Microsoft.Azure.Management.NetApp.Models; + +namespace Microsoft.Azure.Commands.NetAppFiles.Volume +{ + [Cmdlet( + "Update", + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "NetAppFilesVolume", + SupportsShouldProcess = true, + DefaultParameterSetName = FieldsParameterSet), OutputType(typeof(PSNetAppFilesVolume))] + [Alias("Update-AnfVolume")] + public class UpdateAzureRmNetAppFilesVolume : 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")] + public string Location { 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, + ParameterSetName = FieldsParameterSet, + HelpMessage = "The name of the ANF volume")] + [Parameter( + Mandatory = true, + ParameterSetName = ParentObjectParameterSet, + HelpMessage = "The name of the ANF volume")] + [ValidateNotNullOrEmpty] + [Alias("VolumeName")] + [ResourceNameCompleter( + "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", + nameof(ResourceGroupName), + nameof(AccountName), + nameof(PoolName))] + public string Name { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "The maximum storage quota allowed for a file system in bytes")] + [ValidateNotNullOrEmpty] + public long? UsageThreshold { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "The service level of the ANF volume")] + [ValidateNotNullOrEmpty] + public string ServiceLevel { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "A hashtable which represents resource tags")] + [ValidateNotNullOrEmpty] + [Alias("Tags")] + public Hashtable Tag { get; set; } + + [Parameter( + ParameterSetName = ParentObjectParameterSet, + Mandatory = false, + ValueFromPipeline = true, + HelpMessage = "The pool object containing the volume to update")] + [ValidateNotNullOrEmpty] + public PSNetAppFilesAccount PoolInputObject { get; set; } + + [Parameter( + ParameterSetName = ObjectParameterSet, + Mandatory = true, + ValueFromPipeline = true, + HelpMessage = "The volume object to update")] + [ValidateNotNullOrEmpty] + public PSNetAppFilesVolume InputObject { get; set; } + + public override void ExecuteCmdlet() + { + if (ParameterSetName == ObjectParameterSet) + { + ResourceGroupName = InputObject.ResourceGroupName; + Location = InputObject.Location; + var NameParts = InputObject.Name.Split('/'); + AccountName = NameParts[0]; + PoolName = NameParts[1]; + Name = NameParts[2]; + } + else if (ParameterSetName == ParentObjectParameterSet) + { + ResourceGroupName = PoolInputObject.ResourceGroupName; + Location = PoolInputObject.Location; + var NameParts = InputObject.Name.Split('/'); + AccountName = NameParts[0]; + PoolName = NameParts[1]; + } + + var volumePatchBody = new VolumePatch() + { + ServiceLevel = ServiceLevel, + UsageThreshold = UsageThreshold, + Tags = Tag + }; + + if (ShouldProcess(Name, "Update the pool")) + { + var anfVolume = AzureNetAppFilesManagementClient.Volumes.Update(volumePatchBody, ResourceGroupName, AccountName, PoolName, Name); + WriteObject(anfVolume); + } + } + } +} diff --git a/src/Anf/Anf/help/Remove-AzAnfAccount.md b/src/NetAppFiles/NetAppFiles/help/Get-AzNetAppFilesAccount.md similarity index 65% rename from src/Anf/Anf/help/Remove-AzAnfAccount.md rename to src/NetAppFiles/NetAppFiles/help/Get-AzNetAppFilesAccount.md index 074ffc4a86cb..8cea4220f6a5 100644 --- a/src/Anf/Anf/help/Remove-AzAnfAccount.md +++ b/src/NetAppFiles/NetAppFiles/help/Get-AzNetAppFilesAccount.md @@ -1,50 +1,59 @@ --- -external help file: Microsoft.Azure.PowerShell.Cmdlets.Anf.dll-Help.xml -Module Name: Az.anf +external help file: Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles.dll-Help.xml +Module Name: Az.NetAppFiles online version: schema: 2.0.0 --- -# Remove-AzAnfAccount +# Get-AzNetAppFilesAccount ## SYNOPSIS -Deletes an Azure NetApp Files (ANF) account. +Gets details of an Azure NetApp Files (ANF) account. ## SYNTAX -### ByFieldsParameterSet +### ByFieldsParameterSet (Default) ``` -Remove-AzAnfAccount -ResourceGroupName [-AccountName ] +Get-AzNetAppFilesAccount -ResourceGroupName [-Name | -AccountName ] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` -### ByResouceIdParameterSet +### ByResourceIdParameterSet ``` -Remove-AzAnfAccount -ResourceId [-DefaultProfile ] [-WhatIf] [-Confirm] +Get-AzNetAppFilesAccount -ResourceId [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION -The **Remove-AzAnfAccount** cmdlet deletes an ANF account. +The **Get-AzNetAppFilesAccount** cmdlet gets details of an ANF account. ## EXAMPLES -### Example 1: Delete an ANF account +### Example 1: Get an ANF account ``` -PS C:\>Remove-AzAnfAccount -AccountName "MyAnfAccount" +PS C:\>Get-AzNetAppFilesAccount -ResourceGroupName "MyRG" -Name "MyAnfAccount" ``` -This command deletes the ANF account "MyAnfAccount". +This command gets the account named MyAnfAccount. + +``` +Location : westus2 +Id : /subscriptions/mySubs/resourceGroups/MyRG/providers/Microsoft.NetApp/netAppAccounts/MyAnfAccount +Name : MyAnfAccount +Type : Microsoft.NetApp/netAppAccounts +Tags : +ProvisioningState : Succeeded +``` ## PARAMETERS -### -AccountName -The name of the ANF account +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. ```yaml -Type: String -Parameter Sets: ByFieldsParameterSet -Aliases: +Type: IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential Required: False Position: Named @@ -53,13 +62,13 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -DefaultProfile -The credentials, account, tenant, and subscription used for communication with Azure. +### -Name +The name of the ANF account ```yaml -Type: IAzureContextContainer -Parameter Sets: (All) -Aliases: AzContext, AzureRmContext, AzureCredential +Type: String +Parameter Sets: ByFieldsParameterSet +Aliases: AccountName Required: False Position: Named @@ -79,7 +88,7 @@ Aliases: Required: True Position: Named Default value: None -Accept pipeline input: True (ByPropertyName) +Accept pipeline input: False Accept wildcard characters: False ``` @@ -88,7 +97,7 @@ The resource id of the ANF account ```yaml Type: String -Parameter Sets: ByResouceIdParameterSet +Parameter Sets: ByResourceIdParameterSet Aliases: Required: True @@ -139,7 +148,7 @@ For more information, see about_CommonParameters (http://go.microsoft.com/fwlink ## OUTPUTS -### System.Boolean +### Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount ## NOTES diff --git a/src/NetAppFiles/NetAppFiles/help/Get-AzNetAppFilesPool.md b/src/NetAppFiles/NetAppFiles/help/Get-AzNetAppFilesPool.md new file mode 100644 index 000000000000..f0d4dd4fca9e --- /dev/null +++ b/src/NetAppFiles/NetAppFiles/help/Get-AzNetAppFilesPool.md @@ -0,0 +1,196 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles.dll-Help.xml +Module Name: Az.NetAppFiles +online version: +schema: 2.0.0 +--- + +# Get-AzNetAppFilesPool + +## SYNOPSIS +Gets details of an Azure NetApp Files (ANF) pool. + +## SYNTAX + +### ByFieldsParameterSet (Default) +``` +Get-AzNetAppFilesPool -ResourceGroupName -AccountName [-Name | -PoolName ] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ByResourceIdParameterSet +``` +Get-AzNetAppFilesPool -ResourceId [-DefaultProfile ] [-WhatIf] [-Confirm] + [] +``` + +### ByObjectParameterSet +``` +Get-AzNetAppFilesPool [-AccountInputObject ] [-DefaultProfile ] + [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +The **Get-AzNetAppFilesPool** cmdlet gets details of an ANF pool. + +## EXAMPLES + +### Example 1: Get an ANF pool +``` +PS C:\>Get-AzAnfPool -ResourceGroupName "MyRG" -AccountName "MyAnfAccount" -Name "MyAnfPool" +``` + +This command gets the account named MyAnfPool from the account "MyAnfAccount". + +``` +Location : westus2 +Id : /subscriptions/subsID/resourceGroups/MyRG/providers/Microsoft.NetApp/netAppAccounts/MyAnfAccount/capacityPools/MyAnfPool +Name : MyAnfAccount/MyAnfPool +Type : Microsoft.NetApp/netAppAccounts/capacityPools +Tags : +PoolId : a3a53a09-fd70-37ab-39dc-392a04cba525 +Size : 4398046511104 +ServiceLevel : Premium +ProvisioningState : Succeeded +``` + +## PARAMETERS + +### -AccountInputObject +The account object containing the pool to return + +```yaml +Type: PSNetAppFilesAccount +Parameter Sets: ByObjectParameterSet +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -AccountName +The name of the ANF account + +```yaml +Type: String +Parameter Sets: ByFieldsParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +The name of the ANF pool + +```yaml +Type: String +Parameter Sets: ByFieldsParameterSet +Aliases: PoolName + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +The resource group of the ANF pool + +```yaml +Type: String +Parameter Sets: ByFieldsParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceId +The resource id of the ANF pool + +```yaml +Type: String +Parameter Sets: ByResourceIdParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. +For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String + +### Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount + +## OUTPUTS + +### Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool + +## NOTES + +## RELATED LINKS diff --git a/src/NetAppFiles/NetAppFiles/help/Get-AzNetAppFilesSnapshot.md b/src/NetAppFiles/NetAppFiles/help/Get-AzNetAppFilesSnapshot.md new file mode 100644 index 000000000000..d3f7013ecd03 --- /dev/null +++ b/src/NetAppFiles/NetAppFiles/help/Get-AzNetAppFilesSnapshot.md @@ -0,0 +1,228 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles.dll-Help.xml +Module Name: Az.NetAppFiles +online version: +schema: 2.0.0 +--- + +# Get-AzNetAppFilesSnapshot + +## SYNOPSIS +Gets details of an Azure NetApp Files (ANF) snapshot. + +## SYNTAX + +### ByFieldsParameterSet (Default) +``` +Get-AzNetAppFilesSnapshot -ResourceGroupName -AccountName -PoolName + -VolumeName [-Name | -SnapshotName ] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] +``` + +### ByResourceIdParameterSet +``` +Get-AzNetAppFilesSnapshot -ResourceId [-DefaultProfile ] + [-WhatIf] [-Confirm] [] +``` + +### ByParentObjectParameterSet +``` +Get-AzNetAppFilesSnapshot [-Name | -SnapshotName ] [-VolumeInputObject ] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +The **Get-AzNetAppFilesSnapshot** cmdlet gets details of an ANF snapshot. + +## EXAMPLES + +### Example 1: Get an ANF snapshot +``` +PS C:\>Get-AzNetAppFilesSnapshot -ResourceGroupName "MyRG" -AccountName "MyAnfAccount" -PoolName "MyAnfPool" -VolumeName "MyAnfVolume" -Name "MyAnfSnapshot" +``` + +This command gets the snapshot named MyAnfSnapshot from the volume "MyAnfVolume". + +``` +ResourceGroupName : MyRG +Location : westus2 +Id : /subscriptions/subsId/resourceGroups/MyRG/providers/Microsoft.NetApp/netAppAccounts/MyAnfAccount/capacityPools/MyAnfPool/volumes/MyAnfVolume/snapshots/MyAnfSnapshot +Name : MyAnfAccount/MyAnfPool/MyAnfVolume/MyAnfSnapshot +Type : Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots +Tags : +FileSystemId : 3e2773a7-2a72-d003-0637-1a8b1fa3eaaf +SnapshotId : ca7c4ebd-91cb-0e30-91f5-9154050033df +CreationDate : +ProvisioningState : Succeeded +``` + +## PARAMETERS + +### -AccountName +The name of the ANF account + +```yaml +Type: String +Parameter Sets: ByFieldsParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +The name of the ANF snapshot + +```yaml +Type: String +Parameter Sets: (All) +Aliases: SnapshotName + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PoolName +The name of the ANF pool + +```yaml +Type: String +Parameter Sets: ByFieldsParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +The resource group of the ANF volume + +```yaml +Type: String +Parameter Sets: ByFieldsParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceId +The resource id of the ANF snapshot + +```yaml +Type: String +Parameter Sets: ByResourceIdParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -VolumeInputObject +The pool object containing the volume to return + +```yaml +Type: PSNetAppFilesPool +Parameter Sets: ByParentObjectParameterSet +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -VolumeName +The name of the ANF volume + +```yaml +Type: String +Parameter Sets: ByFieldsParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. +For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String + +### Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool + +## OUTPUTS + +### Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshot + +## NOTES + +## RELATED LINKS diff --git a/src/NetAppFiles/NetAppFiles/help/Get-AzNetAppFilesVolume.md b/src/NetAppFiles/NetAppFiles/help/Get-AzNetAppFilesVolume.md new file mode 100644 index 000000000000..0555f40b1fc2 --- /dev/null +++ b/src/NetAppFiles/NetAppFiles/help/Get-AzNetAppFilesVolume.md @@ -0,0 +1,214 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles.dll-Help.xml +Module Name: Az.NetAppFiles +online version: +schema: 2.0.0 +--- + +# Get-AzNetAppFilesVolume + +## SYNOPSIS +Gets details of an Azure NetApp Files (ANF) volume. + +## SYNTAX + +### ByFieldsParameterSet (Default) +``` +Get-AzNetAppFilesVolume -ResourceGroupName -AccountName -PoolName [-Name | -VolumeName ] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ByResourceIdParameterSet +``` +Get-AzNetAppFilesVolume -ResourceId [-DefaultProfile ] [-WhatIf] [-Confirm] + [] +``` + +### ByParentObjectParameterSet +``` +Get-AzNetAppFilesVolume [-PoolInputObject ] [-DefaultProfile ] + [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +The **Get-AzNetAppFilesVolume** cmdlet gets details of an ANF volume. + +## EXAMPLES + +### Example 1: Get an ANF volume +``` +PS C:\>Get-AzNetAppFilesVolume -ResourceGroupName "MyRG" -AccountName "MyAnfAccount" -PoolName "MyAnfPool" -Name "MyAnfVolume" +``` + +This command gets the volume named MyAnfVolume from the pool "MyAnfPool". + +``` +ResourceGroupName : MyRG +Location : westus2 +Id : /subscriptions/subsId/resourceGroups/MyRG/providers/Microsoft.NetApp/netAppAccounts/MyAnfAccount/capacityPools/MyAnfPool/volumes/MyAnfVolume +Name : MyAnfAccount/MyAnfPool/MyAnfVolume +Type : Microsoft.NetApp/netAppAccounts/capacityPools/volumes +Tags : +FileSystemId : 3e2773a7-2a72-d003-0637-1a8b1fa3eaaf +CreationToken : +ServiceLevel : Premium +UsageThreshold : 1099511627776 +ProvisioningState : Succeeded +SubnetId : /subscriptions/subsId/resourceGroups/MyRG/providers/Microsoft.Network/virtualNetworks/MyRG-vnet/subnets/default +``` + +## PARAMETERS + +### -AccountName +The name of the ANF account + +```yaml +Type: String +Parameter Sets: ByFieldsParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +The name of the ANF volume + +```yaml +Type: String +Parameter Sets: ByFieldsParameterSet +Aliases: VolumeName + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PoolInputObject +The pool object containing the volume to return + +```yaml +Type: PSNetAppFilesPool +Parameter Sets: ByParentObjectParameterSet +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -PoolName +The name of the ANF pool + +```yaml +Type: String +Parameter Sets: ByFieldsParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +The resource group of the ANF volume + +```yaml +Type: String +Parameter Sets: ByFieldsParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceId +The resource id of the ANF volume + +```yaml +Type: String +Parameter Sets: ByResourceIdParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. +For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String + +### Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool + +## OUTPUTS + +### Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume + +## NOTES + +## RELATED LINKS diff --git a/src/Anf/Anf/help/Update-AzAnfVolume.md b/src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesAccount.md similarity index 59% rename from src/Anf/Anf/help/Update-AzAnfVolume.md rename to src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesAccount.md index 107bd1a30652..a38b03bf533c 100644 --- a/src/Anf/Anf/help/Update-AzAnfVolume.md +++ b/src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesAccount.md @@ -1,51 +1,44 @@ --- -external help file: Microsoft.Azure.PowerShell.Cmdlets.Anf.dll-Help.xml -Module Name: Az.anf +external help file: Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles.dll-Help.xml +Module Name: Az.NetAppFiles online version: schema: 2.0.0 --- -# Update-AzAnfVolume +# New-AzNetAppFilesAccount ## SYNOPSIS -Updates an Azure NetApp Files (ANF) volume according to the optional modifiers provided. +Creates a new Azure NetApp Files (ANF) account. ## SYNTAX ``` -Update-AzAnfVolume -ResourceGroupName -Location -AccountName -PoolName - -VolumeName [-UsageThreshold ] [-ServiceLevel ] - [-DefaultProfile ] [] +New-AzNetAppFilesAccount -ResourceGroupName -Location [-Tag ] -Name | -AccountName + [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION -The **Update-AzAnfVolume** cmdlet updates an ANF volume. +The **New-AzNetAppFilesAccount** cmdlet creates an ANF account. ## EXAMPLES -### Example 1: Update an ANF volume +### Example 1: Create an ANF account ``` -PS C:\>Update-AzAnfVolume -AccountName "MyAnfAccount" -PoolName "MyAnfPool" -VolumeName "MyAnfVolume" -UsageThreshold Size +PS C:\>New-AzNetAppFilesAccount -ResourceGroupName "MyRG" -Name "MyAnfAccount" -l "westus2" ``` -This command updates the ANF volume "MyAnfVolume" with the new UsageThreshold size +This command creates the new ANF account "MyAnfAccount". -## PARAMETERS - -### -AccountName -The name of the ANF account - -```yaml -Type: String -Parameter Sets: (All) -Aliases: - -Required: True -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False ``` +Location : westus2 +Id : /subscriptions/mySubs/resourceGroups/MyRG/providers/Microsoft.NetApp/netAppAccounts/MyAnfAccount +Name : MyAnfAccount +Type : Microsoft.NetApp/netAppAccounts +Tags : +ProvisioningState : Succeeded +``` + +## PARAMETERS ### -DefaultProfile The credentials, account, tenant, and subscription used for communication with Azure. @@ -77,13 +70,13 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -PoolName -The name of the ANF pool +### -Name +The name of the ANF account ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: AccountName Required: True Position: Named @@ -107,13 +100,13 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -ServiceLevel -The service level of the ANF volume +### -Tag +A hashtable which represents resource tags ```yaml -Type: String +Type: Hashtable Parameter Sets: (All) -Aliases: +Aliases: Tags Required: False Position: Named @@ -122,13 +115,13 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -UsageThreshold -The maximum storage quota allowed for a file system in bytes +### -Confirm +Prompts you for confirmation before running the cmdlet. ```yaml -Type: Int64 +Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: cf Required: False Position: Named @@ -137,15 +130,16 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -VolumeName -The name of the ANF volume +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. ```yaml -Type: String +Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: wi -Required: True +Required: False Position: Named Default value: None Accept pipeline input: False @@ -162,7 +156,7 @@ For more information, see about_CommonParameters (http://go.microsoft.com/fwlink ## OUTPUTS -### Microsoft.Azure.Commands.Anf.Models.PSAnfVolume +### Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount ## NOTES diff --git a/src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesPool.md b/src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesPool.md new file mode 100644 index 000000000000..edba196fb212 --- /dev/null +++ b/src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesPool.md @@ -0,0 +1,235 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles.dll-Help.xml +Module Name: Az.NetAppFiles +online version: +schema: 2.0.0 +--- + +# New-AzNetAppFilesPool + +## SYNOPSIS +Creates a new Azure NetApp Files (ANF) pool. + +## SYNTAX + +### ByFieldsParameterSet (Default) +``` +New-AzNetAppFilesPool -ResourceGroupName -Location -AccountName [-Name | -PoolName ] + -PoolSize -ServiceLevel [-Tag ] [-DefaultProfile ] + [-WhatIf] [-Confirm] [] +``` + +### ByParentObjectParameterSet +``` +New-AzNetAppFilesPool -Name | -PoolName -PoolSize -ServiceLevel [-Tag ] + [-InputObject ] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] +``` + +## DESCRIPTION +The **New-AzNetAppFilesPool** cmdlet creates an ANF pool. + +## EXAMPLES + +### Example 1: Create an ANF pool +``` +PS C:\>New-AzNetAppFilesPool -ResourceGroupName "MyRG" -AccountName "MyAnfAccount" -Name "MyAnfPool" -l "westus2" -PoolSize 4398046511104 -ServiceLevel "Premium" +``` + +This command creates the new ANF pool "MyAnfPool" within the account "MyAnfAccount". + +``` +Location : westus2 +Id : /subscriptions/subsID/resourceGroups/MyRG/providers/Microsoft.NetApp/netAppAccounts/MyAnfAccount/capacityPools/MyAnfPool +Name : MyAnfAccount/MyAnfPool +Type : Microsoft.NetApp/netAppAccounts/capacityPools +Tags : +PoolId : a3a53a09-fd70-37ab-39dc-392a04cba525 +Size : 4398046511104 +ServiceLevel : Premium +ProvisioningState : Succeeded +``` + +## PARAMETERS + +### -AccountName +The name of the ANF account + +```yaml +Type: String +Parameter Sets: ByFieldsParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +The account for the new pool object + +```yaml +Type: PSNetAppFilesAccount +Parameter Sets: ByParentObjectParameterSet +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Location +The location of the resource + +```yaml +Type: 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 pool + +```yaml +Type: String +Parameter Sets: (All) +Aliases: PoolName + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PoolSize +The size of the ANF pool + +```yaml +Type: Int64 +Parameter Sets: (All) +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: String +Parameter Sets: ByFieldsParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ServiceLevel +The service level of the ANF pool + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Tag +A hashtable which represents resource tags + +```yaml +Type: Hashtable +Parameter Sets: (All) +Aliases: Tags + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. +For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount + +## OUTPUTS + +### Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool + +## NOTES + +## RELATED LINKS diff --git a/src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesSnapshot.md b/src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesSnapshot.md new file mode 100644 index 000000000000..8df8ecb8e660 --- /dev/null +++ b/src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesSnapshot.md @@ -0,0 +1,249 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles.dll-Help.xml +Module Name: Az.NetAppFiles +online version: +schema: 2.0.0 +--- + +# New-AzNetAppFilesSnapshot + +## SYNOPSIS +Creates a new Azure NetApp Files (ANF) snapshot. + +## SYNTAX + +### ByFieldsParameterSet (Default) +``` +New-AzNetAppFilesSnapshot -ResourceGroupName -Location -AccountName + -PoolName -VolumeName -Name | -SnapshotName -FileSystemId [-Tag ] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ByParentObjectParameterSet +``` +New-AzNetAppFilesSnapshot -Name | -SnapshotName [-Tag ] [-InputObject ] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +The **New-AzNetAppFilesSnapshot** cmdlet creates an ANF snapshot. + +## EXAMPLES + +### Example 1 +``` +PS C:\>New-AzNetAppFilesSnapshot -ResourceGroupName "MyRG" -l "westus2" -AccountName "MyAnfAccount" -PoolName "MyAnfPool" -VolumeName "MyAnfVolume" -SnapshotName "MyAnfSnapshot" -FileSystemId "3e2773a7-2a72-d003-0637-1a8b1fa3eaaf" +``` + +This command creates the new ANF snapshot "MyAnfSnapshot" within the volume "MyAnfVolume". + +``` +Location : westus2 +Id : /subscriptions/subsId/resourceGroups/MyRG/providers/Microsoft.NetApp/netAppAccounts/MyAnfAccount/capacityPools/MyAnfPool/volumes/MyAnfVolume/snapshots/MyAnfSnapshot +Name : MyAnfAccount/MyAnfPool/MyAnfVolume/MyAnfSnapshot +Type : Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots +Tags : +SnapshotId : ca7c4ebd-91cb-0e30-91f5-9154050033df +FileSystemId : 3e2773a7-2a72-d003-0637-1a8b1fa3eaaf +CreationDate : +ProvisioningState : Succeeded +``` + +## PARAMETERS + +### -AccountName +The name of the ANF account + +```yaml +Type: String +Parameter Sets: ByFieldsParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -FileSystemId +The file system id + +```yaml +Type: String +Parameter Sets: ByFieldsParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +The volume for the new snapshot object + +```yaml +Type: PSNetAppFilesVolume +Parameter Sets: ByParentObjectParameterSet +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Location +The location of the resource + +```yaml +Type: 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 snapshot + +```yaml +Type: String +Parameter Sets: (All) +Aliases: SnapshotName + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PoolName +The name of the ANF pool + +```yaml +Type: String +Parameter Sets: ByFieldsParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +The resource group of the ANF account + +```yaml +Type: String +Parameter Sets: ByFieldsParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Tag +A hashtable which represents resource tags + +```yaml +Type: 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: 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: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. +For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume + +## OUTPUTS + +### Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshot + +## NOTES + +## RELATED LINKS diff --git a/src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesVolume.md b/src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesVolume.md new file mode 100644 index 000000000000..d3c6b44adae7 --- /dev/null +++ b/src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesVolume.md @@ -0,0 +1,282 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles.dll-Help.xml +Module Name: Az.NetAppFiles +online version: +schema: 2.0.0 +--- + +# New-AzNetAppFilesVolume + +## SYNOPSIS +Creates a new Azure NetApp Files (ANF) volume. + +## SYNTAX + +### ByFieldsParameterSet (Default) +``` +New-AzNetAppFilesVolume -ResourceGroupName -Location -AccountName -PoolName + -Name | -VolumeName -UsageThreshold -SubnetId -CreationToken -ServiceLevel + [-Tag ] [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ByParentObjectParameterSet +``` +New-AzNetAppFilesVolume -Name | -VolumeName -UsageThreshold -SubnetId -CreationToken + -ServiceLevel [-Tag ] [-InputObject ] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +The **New-AzNetAppFilesVolume** cmdlet creates an ANF volume. + +## EXAMPLES + +### Example 1: Create an ANF volume +``` +PS C:\>New-AzNetAppFilesVolume -ResourceGroupName "MyRG" -AccountName "MyAnfAccount" -PoolName "MyAnfPool" -Name "MyAnfVolume" -l "westus2" -CreationToken "MyAnfVolume" -UsageThreshold 1099511627776 -ServiceLevel "Premium" -SubnetId "/subscriptions/subsId/resourceGroups/MyRG/providers/Microsoft.Network/virtualNetworks/MyVnetName/subnets/MySubNetName" +``` + +This command creates the new ANF volume "MyAnfVolume" within the pool "MyAnfPool". + +``` +Location : westus2 +Id : /subscriptions/subsId/resourceGroups/MyRG/providers/Microsoft.NetApp/netAppAccounts/MyAnfAccount/capacityPools/MyAnfPool/volumes/MyAnfVolume +Name : MyAnfAccount/MyAnfPool/MyAnfVolume +Type : Microsoft.NetApp/netAppAccounts/capacityPools/volumes +Tags : +FileSystemId : 3e2773a7-2a72-d003-0637-1a8b1fa3eaaf +CreationToken : MyAnfVolume +ServiceLevel : Premium +UsageThreshold : 1099511627776 +ProvisioningState : Succeeded +SubnetId : /subscriptions/f557b96d-2308-4a18-aae1-b8f7e7e70cc7/resourceGroups/MyRG/providers/Microsoft.Network/virtualNetworks/MyVnetName/subnets/default +``` + +## PARAMETERS + +### -AccountName +The name of the ANF account + +```yaml +Type: String +Parameter Sets: ByFieldsParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -CreationToken +A unique file path for the volume + +```yaml +Type: String +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: 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 pool for the new volume object + +```yaml +Type: PSNetAppFilesPool +Parameter Sets: ByParentObjectParameterSet +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Location +The location of the resource + +```yaml +Type: 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 volume + +```yaml +Type: String +Parameter Sets: (All) +Aliases: VolumeName + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PoolName +The name of the ANF pool + +```yaml +Type: String +Parameter Sets: ByFieldsParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +The resource group of the ANF account + +```yaml +Type: String +Parameter Sets: ByFieldsParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ServiceLevel +The service level of the ANF volume + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SubnetId +The Azure Resource URI for a delegated subnet + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Tag +A hashtable which represents resource tags + +```yaml +Type: Hashtable +Parameter Sets: (All) +Aliases: Tags + +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 + +```yaml +Type: Int64 +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: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. +For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool + +## OUTPUTS + +### Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume + +## NOTES + +## RELATED LINKS diff --git a/src/Anf/Anf/help/New-AzAnfSnapshot.md b/src/NetAppFiles/NetAppFiles/help/Remove-AzNetAppFilesAccount.md similarity index 50% rename from src/Anf/Anf/help/New-AzAnfSnapshot.md rename to src/NetAppFiles/NetAppFiles/help/Remove-AzNetAppFilesAccount.md index 715099a6e9aa..efc601944bbe 100644 --- a/src/Anf/Anf/help/New-AzAnfSnapshot.md +++ b/src/NetAppFiles/NetAppFiles/help/Remove-AzNetAppFilesAccount.md @@ -1,74 +1,86 @@ --- -external help file: Microsoft.Azure.PowerShell.Cmdlets.Anf.dll-Help.xml -Module Name: Az.anf +external help file: Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles.dll-Help.xml +Module Name: Az.NetAppFiles online version: schema: 2.0.0 --- -# New-AzAnfSnapshot +# Remove-AzNetAppFilesAccount ## SYNOPSIS -Creates a new Azure NetApp Files (ANF) snapshot. +Deletes an Azure NetApp Files (ANF) account. ## SYNTAX +### ByFieldsParameterSet (Default) ``` -New-AzAnfSnapshot -ResourceGroupName -Location -AccountName -PoolName - -VolumeName -SnapshotName -FileSystemId [-DefaultProfile ] - [] +Remove-AzNetAppFilesAccount -ResourceGroupName -Name | -AccountName [-PassThru] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ByResourceIdParameterSet +``` +Remove-AzNetAppFilesAccount -ResourceId [-PassThru] [-DefaultProfile ] + [-WhatIf] [-Confirm] [] +``` + +### ByObjectParameterSet +``` +Remove-AzNetAppFilesAccount [-InputObject ] [-PassThru] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION -The **New-AzAnfSnapshot** cmdlet creates an ANF snapshot. +The **Remove-AzNetAppFilesAccount** cmdlet deletes an ANF account. ## EXAMPLES -### Example 1: Create an ANF snapshot +### Example 1 ``` -PS C:\>New-AzAnfSnapshot -AccountName "MyAnfAccount" -PoolName "MyAnfPool" -VolumeName "MyAnfVolume" -SnapshotName "MyAnfSnapshot" +PS C:\>Remove-AzNetAppFilesAccount -ResourceGroupName "MyRG" -Name "MyAnfAccount" ``` -This command creates the new ANF snapshot "MyAnfSnapshot" within the volume "MyAnfVolume". +This command deletes the ANF account "MyAnfAccount". ## PARAMETERS -### -AccountName -The name of the ANF account +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. ```yaml -Type: String +Type: IAzureContextContainer Parameter Sets: (All) -Aliases: +Aliases: AzContext, AzureRmContext, AzureCredential -Required: True +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. +### -InputObject +The account object to remove ```yaml -Type: IAzureContextContainer -Parameter Sets: (All) -Aliases: AzContext, AzureRmContext, AzureCredential +Type: PSNetAppFilesAccount +Parameter Sets: ByObjectParameterSet +Aliases: Required: False Position: Named Default value: None -Accept pipeline input: False +Accept pipeline input: True (ByValue) Accept wildcard characters: False ``` -### -FileSystemId -The file system id +### -Name +The name of the ANF account ```yaml Type: String -Parameter Sets: (All) -Aliases: +Parameter Sets: ByFieldsParameterSet +Aliases: AccountName Required: True Position: Named @@ -77,27 +89,27 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -Location -The location of the resource +### -PassThru +Return whether the specified account was successfully removed ```yaml -Type: String +Type: SwitchParameter Parameter Sets: (All) Aliases: -Required: True +Required: False Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False ``` -### -PoolName -The name of the ANF pool +### -ResourceGroupName +The resource group of the ANF account ```yaml Type: String -Parameter Sets: (All) +Parameter Sets: ByFieldsParameterSet Aliases: Required: True @@ -107,45 +119,46 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -ResourceGroupName -The resource group of the ANF account +### -ResourceId +The resource id of the ANF account ```yaml Type: String -Parameter Sets: (All) +Parameter Sets: ByResourceIdParameterSet Aliases: Required: True Position: Named Default value: None -Accept pipeline input: False +Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False ``` -### -SnapshotName -The name of the ANF snapshot +### -Confirm +Prompts you for confirmation before running the cmdlet. ```yaml -Type: String +Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: cf -Required: True +Required: False Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False ``` -### -VolumeName -The name of the ANF volume +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. ```yaml -Type: String +Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: wi -Required: True +Required: False Position: Named Default value: None Accept pipeline input: False @@ -158,11 +171,13 @@ For more information, see about_CommonParameters (http://go.microsoft.com/fwlink ## INPUTS -### None +### System.String + +### Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount ## OUTPUTS -### Microsoft.Azure.Commands.Anf.Models.PSAnfSnapshot +### System.Boolean ## NOTES diff --git a/src/NetAppFiles/NetAppFiles/help/Remove-AzNetAppFilesPool.md b/src/NetAppFiles/NetAppFiles/help/Remove-AzNetAppFilesPool.md new file mode 100644 index 000000000000..f026a20297a8 --- /dev/null +++ b/src/NetAppFiles/NetAppFiles/help/Remove-AzNetAppFilesPool.md @@ -0,0 +1,222 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles.dll-Help.xml +Module Name: Az.NetAppFiles +online version: +schema: 2.0.0 +--- + +# Remove-AzNetAppFilesPool + +## SYNOPSIS +Deletes an Azure NetApp Files (ANF) pool. + +## SYNTAX + +### ByFieldsParameterSet (Default) +``` +Remove-AzNetAppFilesPool -ResourceGroupName -AccountName -Name | -PoolName [-PassThru] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ByParentObjectParameterSet +``` +Remove-AzNetAppFilesPool -Name | -PoolName [-AccountInputObject ] [-PassThru] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ByResourceIdParameterSet +``` +Remove-AzNetAppFilesPool -ResourceId [-PassThru] [-DefaultProfile ] [-WhatIf] + [-Confirm] [] +``` + +### ByObjectParameterSet +``` +Remove-AzNetAppFilesPool -InputObject [-PassThru] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +The **Remove-AzNetAppFilesPool** cmdlet deletes an ANF pool. + +## EXAMPLES + +### Example 1 +``` +PS C:\>Remove-AzNetAppFilesPool -ResourceGroupName "MyRG" -AccountName "MyAnfAccount" -PoolName "MyAnfPool" +``` + +This command deletes the ANF pool "MyAnfPool". + +## PARAMETERS + +### -AccountInputObject +The account object containing the pool to remove + +```yaml +Type: PSNetAppFilesAccount +Parameter Sets: ByParentObjectParameterSet +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -AccountName +The name of the ANF account + +```yaml +Type: String +Parameter Sets: ByFieldsParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +The pool object to remove + +```yaml +Type: PSNetAppFilesPool +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 pool + +```yaml +Type: String +Parameter Sets: ByFieldsParameterSet, ByParentObjectParameterSet +Aliases: PoolName + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PassThru +Return whether the specified pool was successfully removed + +```yaml +Type: 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 pool + +```yaml +Type: String +Parameter Sets: ByFieldsParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceId +The resource id of the ANF pool + +```yaml +Type: String +Parameter Sets: ByResourceIdParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. +For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String + +### Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount + +### Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool + +## OUTPUTS + +### Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool + +## NOTES + +## RELATED LINKS diff --git a/src/NetAppFiles/NetAppFiles/help/Remove-AzNetAppFilesSnapshot.md b/src/NetAppFiles/NetAppFiles/help/Remove-AzNetAppFilesSnapshot.md new file mode 100644 index 000000000000..9c59e1830295 --- /dev/null +++ b/src/NetAppFiles/NetAppFiles/help/Remove-AzNetAppFilesSnapshot.md @@ -0,0 +1,253 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles.dll-Help.xml +Module Name: Az.NetAppFiles +online version: +schema: 2.0.0 +--- + +# Remove-AzNetAppFilesSnapshot + +## SYNOPSIS +Deletes an Azure NetApp Files (ANF) snapshot. + +## SYNTAX + +### ByFieldsParameterSet (Default) +``` +Remove-AzNetAppFilesSnapshot -ResourceGroupName -AccountName -PoolName + -VolumeName -Name | -SnapshotName [-PassThru] [-DefaultProfile ] [-WhatIf] + [-Confirm] [] +``` + +### ByResourceIdParameterSet +``` +Remove-AzNetAppFilesSnapshot -ResourceId [-PassThru] [-DefaultProfile ] + [-WhatIf] [-Confirm] [] +``` + +### ByParentObjectParameterSet +``` +Remove-AzNetAppFilesSnapshot [-VolumeInputObject ] [-PassThru] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ByObjectParameterSet +``` +Remove-AzNetAppFilesSnapshot [-SnapshotInputObject ] [-PassThru] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +The **Remove-AzNetAppFilesSnapshot** cmdlet deletes an ANF snapshot. + +## EXAMPLES + +### Example 1 +``` +PS C:\>Remove-AzNetAppFilesSnapshot -ResourceGroupName "MyRG" -AccountName "MyAnfAccount" -PoolName "MyAnfPool" -VolumeName "MyAnfVolume" -Name "MyAnfSnapshot" +``` + +This command deletes the ANF snapshot "MyAnfSnapshot". + +## PARAMETERS + +### -AccountName +The name of the ANF account + +```yaml +Type: String +Parameter Sets: ByFieldsParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +The name of the ANF snapshot + +```yaml +Type: String +Parameter Sets: ByFieldsParameterSet +Aliases: SnapshotName + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PassThru +Return whether the specified volume was successfully removed + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PoolName +The name of the ANF pool + +```yaml +Type: String +Parameter Sets: ByFieldsParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +The resource group of the ANF snapshot + +```yaml +Type: String +Parameter Sets: ByFieldsParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceId +The resource id of the ANF snapshot + +```yaml +Type: String +Parameter Sets: ByResourceIdParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -SnapshotInputObject +The snapshot object to remove + +```yaml +Type: PSNetAppFilesSnapshot +Parameter Sets: ByObjectParameterSet +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -VolumeInputObject +The volume object containing the snapshot to remove + +```yaml +Type: PSNetAppFilesVolume +Parameter Sets: ByParentObjectParameterSet +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -VolumeName +The name of the ANF volume + +```yaml +Type: String +Parameter Sets: ByFieldsParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. +For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String + +### Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume + +### Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshot + +## OUTPUTS + +### Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesSnapshot + +## NOTES + +## RELATED LINKS diff --git a/src/NetAppFiles/NetAppFiles/help/Remove-AzNetAppFilesVolume.md b/src/NetAppFiles/NetAppFiles/help/Remove-AzNetAppFilesVolume.md new file mode 100644 index 000000000000..e533fc81ddb0 --- /dev/null +++ b/src/NetAppFiles/NetAppFiles/help/Remove-AzNetAppFilesVolume.md @@ -0,0 +1,237 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles.dll-Help.xml +Module Name: Az.NetAppFiles +online version: +schema: 2.0.0 +--- + +# Remove-AzNetAppFilesVolume + +## SYNOPSIS +Deletes an Azure NetApp Files (ANF) volume. + +## SYNTAX + +### ByFieldsParameterSet (Default) +``` +Remove-AzNetAppFilesVolume -ResourceGroupName -AccountName -PoolName -Name | -VolumeName + [-PassThru] [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ByParentObjectParameterSet +``` +Remove-AzNetAppFilesVolume -Name | -VolumeName [-PoolInputObject ] [-PassThru] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ByResourceIdParameterSet +``` +Remove-AzNetAppFilesVolume -ResourceId [-PassThru] [-DefaultProfile ] + [-WhatIf] [-Confirm] [] +``` + +### ByObjectParameterSet +``` +Remove-AzNetAppFilesVolume [-VolumeInputObject ] [-PassThru] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +The **Remove-AzNetAppFilesVolume** cmdlet deletes an ANF volume. + +## EXAMPLES + +### Example 1 +``` +PS C:\>Remove-AzNetAppFilesVolume -ResourceGroupName "MyRG" -AccountName "MyAnfAccount" -PoolName "MyAnfPool" -Name "MyAnfVolume" +``` + +This command deletes the ANF volume "MyAnfVolume". + +## PARAMETERS + +### -AccountName +The name of the ANF account + +```yaml +Type: String +Parameter Sets: ByFieldsParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +The name of the ANF volume + +```yaml +Type: String +Parameter Sets: ByFieldsParameterSet, ByParentObjectParameterSet +Aliases: VolumeName + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PassThru +Return whether the specified volume was successfully removed + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PoolInputObject +The pool object containing the volume to remove + +```yaml +Type: PSNetAppFilesPool +Parameter Sets: ByParentObjectParameterSet +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -PoolName +The name of the ANF pool + +```yaml +Type: String +Parameter Sets: ByFieldsParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +The resource group of the ANF volume + +```yaml +Type: String +Parameter Sets: ByFieldsParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceId +The resource id of the ANF volume + +```yaml +Type: String +Parameter Sets: ByResourceIdParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -VolumeInputObject +The volume object to remove + +```yaml +Type: PSNetAppFilesVolume +Parameter Sets: ByObjectParameterSet +Aliases: + +Required: False +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: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. +For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String + +### Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool + +### Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume + +## OUTPUTS + +### Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume + +## NOTES + +## RELATED LINKS diff --git a/src/NetAppFiles/NetAppFiles/help/Update-AzNetAppFilesPool.md b/src/NetAppFiles/NetAppFiles/help/Update-AzNetAppFilesPool.md new file mode 100644 index 000000000000..d60e700612ba --- /dev/null +++ b/src/NetAppFiles/NetAppFiles/help/Update-AzNetAppFilesPool.md @@ -0,0 +1,243 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles.dll-Help.xml +Module Name: Az.NetAppFiles +online version: +schema: 2.0.0 +--- + +# Update-AzNetAppFilesPool + +## SYNOPSIS +Updates an Azure NetApp Files (ANF) pool with the new data set. + +## SYNTAX + +### ByFieldsParameterSet (Default) +``` +Update-AzNetAppFilesPool -ResourceGroupName -Location -AccountName -Name | PoolName + -PoolSize -ServiceLevel [-DefaultProfile ] [-WhatIf] [-Confirm] + [] +``` + +### ByParentObjectParameterSet +``` +Update-AzNetAppFilesPool -Name | PoolName -PoolSize -ServiceLevel + [-AccountInputObject ] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] +``` + +### ByObjectParameterSet +``` +Update-AzNetAppFilesPool -PoolSize -ServiceLevel -InputObject + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +The **Update-AzNetAppFilesPool** cmdlet modifies an ANF pool. + +## EXAMPLES + +### Example 1: Modify an ANF pool +``` +PS C:\>Update-AzNetAppFilesPool -ResourceGroupName "MyRG" -l "westus2" -AccountName "MyAnfAccount" -PoolName "MyAnfPool" -PoolSize 4398046511104 -ServiceLevel "Standard" +``` + +This command changes the ANF pool "MyAnfPool" to have the given size and ServiceLevel + +``` +Location : westus2 +Id : /subscriptions/subsId/resourceGroups/MyRG/providers/Microsoft.NetApp/netAppAccounts/MyAnfAccount/capacityPools/MyAnfPool +Name : MyAnfAccount/MyAnfPool +Type : Microsoft.NetApp/netAppAccounts/capacityPools +Tags : +PoolId : 9fa2ca6d-1e48-4439-30e3-7de056e44e5a +Size : 4398046511104 +ServiceLevel : Standard +ProvisioningState : Succeeded +``` + +## PARAMETERS + +### -AccountInputObject +The account object containing the pool to update + +```yaml +Type: PSNetAppFilesAccount +Parameter Sets: ByParentObjectParameterSet +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -AccountName +The name of the ANF account + +```yaml +Type: String +Parameter Sets: ByFieldsParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +The pool object to update + +```yaml +Type: PSNetAppFilesPool +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: 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 pool + +```yaml +Type: String +Parameter Sets: ByFieldsParameterSet, ByParentObjectParameterSet +Aliases: PoolName + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PoolSize +The size of the ANF pool + +```yaml +Type: Int64 +Parameter Sets: (All) +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: String +Parameter Sets: ByFieldsParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ServiceLevel +The service level of the ANF pool + +```yaml +Type: String +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: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. +For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount + +### Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool + +## OUTPUTS + +### Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool + +## NOTES + +## RELATED LINKS diff --git a/src/NetAppFiles/NetAppFiles/help/Update-AzNetAppFilesVolume.md b/src/NetAppFiles/NetAppFiles/help/Update-AzNetAppFilesVolume.md new file mode 100644 index 000000000000..d545807e6205 --- /dev/null +++ b/src/NetAppFiles/NetAppFiles/help/Update-AzNetAppFilesVolume.md @@ -0,0 +1,276 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles.dll-Help.xml +Module Name: Az.NetAppFiles +online version: +schema: 2.0.0 +--- + +# Update-AzNetAppFilesVolume + +## SYNOPSIS +Updates an Azure NetApp Files (ANF) volume according to the optional modifiers provided. + +## SYNTAX + +### ByFieldsParameterSet (Default) +``` +Update-AzNetAppFilesVolume -ResourceGroupName -Location -AccountName + -PoolName -Name | -VolumeName [-UsageThreshold ] [-ServiceLevel ] [-Tag ] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ByParentObjectParameterSet +``` +Update-AzNetAppFilesVolume -Name | -VolumeName [-UsageThreshold ] [-ServiceLevel ] [-Tag ] + [-PoolInputObject ] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] +``` + +### ByObjectParameterSet +``` +Update-AzNetAppFilesVolume [-UsageThreshold ] [-ServiceLevel ] [-Tag ] + -InputObject [-DefaultProfile ] [-WhatIf] [-Confirm] + [] +``` + +## DESCRIPTION +The **Update-AzNetAppFilesVolume** cmdlet updates an ANF volume. + +## EXAMPLES + +### Example 1: Update an ANF volume +``` +PS C:\>Update-AzNetAppFilesVolume -ResourceGroupName "MyRG" -l "westus2" -AccountName "MyAnfAccount" -PoolName "MyAnfPool" -Name "MyAnfVolume" -UsageThreshold Size +``` + +This command updates the ANF volume "MyAnfVolume" with the new UsageThreshold size + +``` +Location : westus2 +Id : /subscriptions/subsId/resourceGroups/MyRG/providers/Microsoft.NetApp/netAppAccounts/MyAnfAccount/capacityPools/MyAnfPool/volumes/MyAnfVolume +Name : MyAnfAccount/MyAnfPool/MyAnfVolume +Type : Microsoft.NetApp/netAppAccounts/capacityPools/volumes +Tags : +FileSystemId : 3e2773a7-2a72-d003-0637-1a8b1fa3eaaf +CreationToken : MyAnfVolume +ServiceLevel : Premium +UsageThreshold : 2199023255552 +ProvisioningState : Succeeded +SubnetId : /subscriptions/subsId/resourceGroups/MyRG/providers/Microsoft.Network/virtualNetworks/MyRG-vnet/subnets/default +``` + +## PARAMETERS + +### -AccountName +The name of the ANF account + +```yaml +Type: String +Parameter Sets: ByFieldsParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +The volume object to update + +```yaml +Type: PSNetAppFilesVolume +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: 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 volume + +```yaml +Type: String +Parameter Sets: ByFieldsParameterSet, ByParentObjectParameterSet +Aliases: VolumeName + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PoolInputObject +The pool object containing the volume to update + +```yaml +Type: PSNetAppFilesAccount +Parameter Sets: ByParentObjectParameterSet +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -PoolName +The name of the ANF pool + +```yaml +Type: String +Parameter Sets: ByFieldsParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +The resource group of the ANF account + +```yaml +Type: String +Parameter Sets: ByFieldsParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ServiceLevel +The service level of the ANF volume + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Tag +A hashtable which represents resource tags + +```yaml +Type: Hashtable +Parameter Sets: (All) +Aliases: Tags + +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 + +```yaml +Type: Int64 +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: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. +For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesAccount + +### Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume + +## OUTPUTS + +### Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume + +## NOTES + +## RELATED LINKS diff --git a/src/Anf/Anf/help/Az.Anf.md b/src/NetAppFiles/NetAppFiles/help/az.NetAppFiles.md similarity index 51% rename from src/Anf/Anf/help/Az.Anf.md rename to src/NetAppFiles/NetAppFiles/help/az.NetAppFiles.md index 53add778ef81..1902d30f3e4c 100644 --- a/src/Anf/Anf/help/Az.Anf.md +++ b/src/NetAppFiles/NetAppFiles/help/az.NetAppFiles.md @@ -1,58 +1,55 @@ --- -Module Name: Az.Anf +Module Name: az.NetAppFiles Module Guid: e20e99dc-6df9-479b-8504-2960f0088f00 Download Help Link: https://docs.microsoft.com/en-us/powershell/module/az.anf Help Version: 0.9.0.0 Locale: en-US --- -# Az.Anf Module +# az.NetAppFiles Module ## Description The topics in this section document the Azure PowerShell cmdlets for Azure NetApp Files in the Azure Resource Manager (ARM) framework. The cmdlets exist in the Microsoft.Azure.Commands.Anf namespace. -## Az.Anf Cmdlets -### [Get-AzAnfAccount](Get-AzAnfAccount.md) +## az.NetAppFiles Cmdlets +### [Get-AzNetAppFilesAccount](Get-AzNetAppFilesAccount.md) Gets details of an Azure NetApp Files (ANF) account. -### [Get-AzAnfPool](Get-AzAnfPool.md) +### [Get-AzNetAppFilesPool](Get-AzNetAppFilesPool.md) Gets details of an Azure NetApp Files (ANF) pool. -### [Get-AzAnfSnapshot](Get-AzAnfSnapshot.md) +### [Get-AzNetAppFilesSnapshot](Get-AzNetAppFilesSnapshot.md) Gets details of an Azure NetApp Files (ANF) snapshot. -### [Get-AzAnfVolume](Get-AzAnfVolume.md) +### [Get-AzNetAppFilesVolume](Get-AzNetAppFilesVolume.md) Gets details of an Azure NetApp Files (ANF) volume. -### [New-AzAnfAccount](New-AzAnfAccount.md) +### [New-AzNetAppFilesAccount](New-AzNetAppFilesAccount.md) Creates a new Azure NetApp Files (ANF) account. -### [New-AzAnfPool](New-AzAnfPool.md) +### [New-AzNetAppFilesPool](New-AzNetAppFilesPool.md) Creates a new Azure NetApp Files (ANF) pool. -### [New-AzAnfSnapshot](New-AzAnfSnapshot.md) +### [New-AzNetAppFilesSnapshot](New-AzNetAppFilesSnapshot.md) Creates a new Azure NetApp Files (ANF) snapshot. -### [New-AzAnfVolume](New-AzAnfVolume.md) +### [New-AzNetAppFilesVolume](New-AzNetAppFilesVolume.md) Creates a new Azure NetApp Files (ANF) volume. -### [Remove-AzAnfAccount](Remove-AzAnfAccount.md) +### [Remove-AzNetAppFilesAccount](Remove-AzNetAppFilesAccount.md) Deletes an Azure NetApp Files (ANF) account. -### [Remove-AzAnfPool](Remove-AzAnfPool.md) +### [Remove-AzNetAppFilesPool](Remove-AzNetAppFilesPool.md) Deletes an Azure NetApp Files (ANF) pool. -### [Remove-AzAnfSnapshot](Remove-AzAnfSnapshot.md) +### [Remove-AzNetAppFilesSnapshot](Remove-AzNetAppFilesSnapshot.md) Deletes an Azure NetApp Files (ANF) snapshot. -### [Remove-AzAnfVolume](Remove-AzAnfVolume.md) +### [Remove-AzNetAppFilesVolume](Remove-AzNetAppFilesVolume.md) Deletes an Azure NetApp Files (ANF) volume. -### [Set-AzAnfPool](Set-AzAnfPool.md) -Modifies an Azure NetApp Files (ANF) pool. +### [Update-AzNetAppFilesPool](Update-AzNetAppFilesPool.md) +Updates an Azure NetApp Files (ANF) pool. -### [Set-AzAnfVolume](Set-AzAnfVolume.md) -Modifies an Azure NetApp Files (ANF) volume. - -### [Update-AzAnfVolume](Update-AzAnfVolume.md) +### [Update-AzNetAppFilesVolume](Update-AzNetAppFilesVolume.md) Updates an Azure NetApp Files (ANF) volume. diff --git a/src/Anf/documentation/current-breaking-changes.md b/src/NetAppFiles/documentation/current-breaking-changes.md similarity index 100% rename from src/Anf/documentation/current-breaking-changes.md rename to src/NetAppFiles/documentation/current-breaking-changes.md diff --git a/src/Anf/documentation/upcoming-breaking-changes.md b/src/NetAppFiles/documentation/upcoming-breaking-changes.md similarity index 100% rename from src/Anf/documentation/upcoming-breaking-changes.md rename to src/NetAppFiles/documentation/upcoming-breaking-changes.md