diff --git a/ChangeLog.txt b/ChangeLog.txt index 79a0bd45f68b..0b24387bb76e 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -32,7 +32,7 @@ * Get-AzureLoadBalancerBackendAddressPoolConfig * Get-AzureLoadBalancerFrontendIpConfig * Get-AzureLoadBalancerInboundNatRuleConfig - * Get-AzureLoadBalancerProbeConfig* + * Get-AzureLoadBalancerProbeConfig * Get-AzureLoadBalancerRuleConfig * New-AzureLoadBalancer * New-AzureLoadBalancerBackendAddressPoolConfig @@ -60,6 +60,7 @@ * Remove-AzureNetworkSecurityRuleConfig * Add-AzureNetworkSecurityRuleConfig * Set-AzureNetworkSecurityRuleConfig + * Get-AzureRemoteDesktopFile * Azure Storage * Added cmdlets in AzureResourceManager Mode * New-AzureStorageAccount diff --git a/setup/azurecmdfiles.wxi b/setup/azurecmdfiles.wxi index 0c07f95e1019..3c719be92b78 100644 --- a/setup/azurecmdfiles.wxi +++ b/setup/azurecmdfiles.wxi @@ -91,6 +91,9 @@ + + + @@ -118,6 +121,9 @@ + + + @@ -160,6 +166,9 @@ + + + @@ -2923,6 +2932,9 @@ + + + @@ -2947,6 +2959,12 @@ + + + + + + @@ -3077,6 +3095,7 @@ + @@ -3086,6 +3105,7 @@ + @@ -3100,6 +3120,7 @@ + @@ -3983,6 +4004,7 @@ + @@ -3991,6 +4013,8 @@ + + diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/Commands.Compute.Test.csproj b/src/ResourceManager/Compute/Commands.Compute.Test/Commands.Compute.Test.csproj index 945d94030dad..88bbf18c7246 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/Commands.Compute.Test.csproj +++ b/src/ResourceManager/Compute/Commands.Compute.Test/Commands.Compute.Test.csproj @@ -67,16 +67,16 @@ ..\..\..\packages\Microsoft.Azure.Management.Authorization.0.18.2-preview\lib\net40\Microsoft.Azure.Management.Authorization.dll - ..\..\..\packages\Microsoft.Azure.Management.Compute.5.0.0-preview\lib\net40\Microsoft.Azure.Management.Compute.dll - True + False + ..\..\..\packages\Microsoft.Azure.Management.Compute.5.0.1-preview\lib\net40\Microsoft.Azure.Management.Compute.dll False ..\..\..\packages\Microsoft.Azure.Management.Network.2.0.0-preview\lib\net40\Microsoft.Azure.Management.Network.dll - False - ..\..\..\packages\Microsoft.Azure.Management.Storage.2.3.0-preview\lib\net40\Microsoft.Azure.Management.Storage.dll + ..\..\..\packages\Microsoft.Azure.Management.Storage.2.4.0-preview\lib\net40\Microsoft.Azure.Management.Storage.dll + True ..\..\..\packages\Microsoft.Azure.Management.Resources.2.18.0-preview\lib\net40\Microsoft.Azure.ResourceManager.dll @@ -146,14 +146,11 @@ - - - - + True @@ -247,6 +244,12 @@ Always + + Always + + + Always + Always @@ -265,12 +268,27 @@ Always + + Always + Always Always + + Always + + + Always + + + Always + + + Always + Always diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/ComputeTestCommon.ps1 b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/ComputeTestCommon.ps1 index d93d32c2e9c8..c248857bad05 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/ComputeTestCommon.ps1 +++ b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/ComputeTestCommon.ps1 @@ -28,7 +28,28 @@ function Get-ComputeTestResourceName } } - $assetName = [Microsoft.Azure.Test.HttpRecorder.HttpMockServer]::GetAssetName($testName, "pstestrg") + $oldErrorActionPreferenceValue = $ErrorActionPreference; + $ErrorActionPreference = "SilentlyContinue"; + + try + { + $assetName = [Microsoft.Azure.Test.HttpRecorder.HttpMockServer]::GetAssetName($testName, "pstestrg"); + } + catch + { + if (($Error.Count -gt 0) -and ($Error[0].Exception.Message -like '*Unable to find type*')) + { + $assetName = Get-RandomItemName; + } + else + { + throw; + } + } + finally + { + $ErrorActionPreference = $oldErrorActionPreferenceValue; + } return $assetName } @@ -144,7 +165,7 @@ function Get-DefaultRDFEImage <# .SYNOPSIS -Gets default RDFE Image +Gets default CRP Image #> function Get-DefaultCRPImage { @@ -180,7 +201,7 @@ function Get-DefaultCRPImage $defaultSku = $result[0]; } - $result = (Get-AzureVMImageVersion -Location $loc -Offer $defaultOffer -PublisherName $defaultPublisher -Skus $defaultSku) | select -ExpandProperty Version; + $result = (Get-AzureVMImage -Location $loc -Offer $defaultOffer -PublisherName $defaultPublisher -Skus $defaultSku) | select -ExpandProperty Version; if ($result.Count -eq 1) { $defaultVersion = $result; @@ -190,11 +211,24 @@ function Get-DefaultCRPImage $defaultVersion = $result[0]; } - $vmimg = Get-AzureVMImage -Location $loc -Offer $defaultOffer -PublisherName $defaultPublisher -Skus $defaultSku -Version $defaultVersion; + $vmimg = Get-AzureVMImageDetail -Location $loc -Offer $defaultOffer -PublisherName $defaultPublisher -Skus $defaultSku -Version $defaultVersion; return $vmimg; } +<# +.SYNOPSIS +Gets VMM Images +#> +function Get-MarketplaceImage +{ + param([string] $location = "eastasia", [string] $pubFilter = '*', [string] $offerFilter = '*') + + $imgs = Get-AzureVMImagePublisher -Location $location | where { $_.PublisherName -like $pubFilter } | Get-AzureVMImageOffer | where { $_.Offer -like $offerFilter } | Get-AzureVMImageSku | Get-AzureVMImage | Get-AzureVMImageDetail | where { $_.PurchasePlan -ne $null }; + + return $imgs; +} + <# .SYNOPSIS Gets default VM config object diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/TestVirtualMachineImageList.cs b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/UtilityFunctionTests.cs similarity index 58% rename from src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/TestVirtualMachineImageList.cs rename to src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/UtilityFunctionTests.cs index d2a26c98ca0b..6db94bdc8788 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/TestVirtualMachineImageList.cs +++ b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/UtilityFunctionTests.cs @@ -13,17 +13,36 @@ // ---------------------------------------------------------------------------------- using Microsoft.WindowsAzure.Commands.ScenarioTest; +using Microsoft.Azure.Commands.Compute.Models; +using System; using Xunit; namespace Microsoft.Azure.Commands.Compute.Test.ScenarioTests { - public partial class VirtualMachineTests + public class UtilityFunctionTests { [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] - public void TestVirtualMachineImageList() + public void TestLocationStringExtension() { - ComputeTestController.NewInstance.RunPsTest("Test-VirtualMachineImageList"); + string[] locations = new string[] + { + "West US", + "eastus", + "East Asia 2" + }; + + Func normalize = delegate(string s) + { + return string.IsNullOrEmpty(s) ? s : s.Replace(" ", string.Empty).ToLower(); + }; + + foreach (var loc in locations) + { + var s1 = loc.Canonicalize(); + var s2 = normalize(loc); + Assert.True(string.Equals(s1, s2)); + } } } } diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VirtualMachineExtensionTests.cs b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VirtualMachineExtensionTests.cs index ec7b65ed70c0..74f85cd98ed4 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VirtualMachineExtensionTests.cs +++ b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VirtualMachineExtensionTests.cs @@ -26,17 +26,15 @@ public void TestVirtualMachineExtension() ComputeTestController.NewInstance.RunPsTest("Test-VirtualMachineExtension"); } - [Fact - (Skip = "Disable this test until the breaking api is checked in.")] + [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestVirtualMachineCustomScriptExtension() { ComputeTestController.NewInstance.RunPsTest("Test-VirtualMachineCustomScriptExtension"); } - [Fact - (Skip = "Disable this test until the breaking api is checked in.")] - [Trait(Category.AcceptanceType, Category.CheckIn)] // disable this test until the breaking api is checked in. + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestVirtualMachineAccessExtension() { ComputeTestController.NewInstance.RunPsTest("Test-VirtualMachineAccessExtension"); diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VirtualMachineExtensionTests.ps1 b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VirtualMachineExtensionTests.ps1 index f1a5eab4aea0..64d7fe976d4f 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VirtualMachineExtensionTests.ps1 +++ b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VirtualMachineExtensionTests.ps1 @@ -25,7 +25,7 @@ function Test-VirtualMachineExtension try { # Common - $loc = 'West US'; + $loc = 'East Asia'; New-AzureResourceGroup -Name $rgname -Location $loc; # VM Profile & Hardware @@ -64,11 +64,11 @@ function Test-VirtualMachineExtension $dataDiskVhdUri2 = "https://$stoname.blob.core.windows.net/test/data2.vhd"; $dataDiskVhdUri3 = "https://$stoname.blob.core.windows.net/test/data3.vhd"; - $p = Set-AzureVMOSDisk -VM $p -Name $osDiskName -VhdUri $osDiskVhdUri -Caching $osDiskCaching -CreateOption Empty; + $p = Set-AzureVMOSDisk -VM $p -Name $osDiskName -VhdUri $osDiskVhdUri -Caching $osDiskCaching -CreateOption FromImage; - $p = Add-AzureVMDataDisk -VM $p -Name 'testDataDisk1' -Caching 'ReadOnly' -DiskSizeInGB 10 -Lun 0 -VhdUri $dataDiskVhdUri1 -CreateOption Empty; - $p = Add-AzureVMDataDisk -VM $p -Name 'testDataDisk2' -Caching 'ReadOnly' -DiskSizeInGB 11 -Lun 1 -VhdUri $dataDiskVhdUri2 -CreateOption Empty; - $p = Add-AzureVMDataDisk -VM $p -Name 'testDataDisk3' -Caching 'ReadOnly' -DiskSizeInGB 12 -Lun 2 -VhdUri $dataDiskVhdUri3 -CreateOption Empty; + $p = Add-AzureVMDataDisk -VM $p -Name 'testDataDisk1' -Caching 'ReadOnly' -DiskSizeInGB 10 -Lun 1 -VhdUri $dataDiskVhdUri1 -CreateOption Empty; + $p = Add-AzureVMDataDisk -VM $p -Name 'testDataDisk2' -Caching 'ReadOnly' -DiskSizeInGB 11 -Lun 2 -VhdUri $dataDiskVhdUri2 -CreateOption Empty; + $p = Add-AzureVMDataDisk -VM $p -Name 'testDataDisk3' -Caching 'ReadOnly' -DiskSizeInGB 12 -Lun 3 -VhdUri $dataDiskVhdUri3 -CreateOption Empty; $p = Remove-AzureVMDataDisk -VM $p -Name 'testDataDisk3'; Assert-AreEqual $p.StorageProfile.OSDisk.Caching $osDiskCaching; @@ -77,11 +77,11 @@ function Test-VirtualMachineExtension Assert-AreEqual $p.StorageProfile.DataDisks.Count 2; Assert-AreEqual $p.StorageProfile.DataDisks[0].Caching 'ReadOnly'; Assert-AreEqual $p.StorageProfile.DataDisks[0].DiskSizeGB 10; - Assert-AreEqual $p.StorageProfile.DataDisks[0].Lun 0; + Assert-AreEqual $p.StorageProfile.DataDisks[0].Lun 1; Assert-AreEqual $p.StorageProfile.DataDisks[0].VirtualHardDisk.Uri $dataDiskVhdUri1; Assert-AreEqual $p.StorageProfile.DataDisks[1].Caching 'ReadOnly'; Assert-AreEqual $p.StorageProfile.DataDisks[1].DiskSizeGB 11; - Assert-AreEqual $p.StorageProfile.DataDisks[1].Lun 1; + Assert-AreEqual $p.StorageProfile.DataDisks[1].Lun 2; Assert-AreEqual $p.StorageProfile.DataDisks[1].VirtualHardDisk.Uri $dataDiskVhdUri2; # OS & Image @@ -93,7 +93,6 @@ function Test-VirtualMachineExtension $vhdContainer = "https://$stoname.blob.core.windows.net/test"; $img = 'a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-Datacenter-201503.01-en.us-127GB.vhd'; - $p.StorageProfile.OSDisk = $null; $p = Set-AzureVMOperatingSystem -VM $p -Windows -ComputerName $computerName -Credential $cred -ProvisionVMAgent; $p = Set-AzureVMSourceImage -VM $p -Name $img; @@ -203,11 +202,11 @@ function Test-VirtualMachineCustomScriptExtension try { # Common - $loc = Get-ProviderLocation ResourceManagement; + $loc = 'East Asia'; New-AzureResourceGroup -Name $rgname -Location $loc; # VM Profile & Hardware - $vmsize = 'Standard_A2'; + $vmsize = 'Standard_A4'; $vmname = 'vm' + $rgname; $p = New-AzureVMConfig -VMName $vmname -VMSize $vmsize; Assert-AreEqual $p.HardwareProfile.VirtualMachineSize $vmsize; @@ -240,14 +239,11 @@ function Test-VirtualMachineCustomScriptExtension $osDiskVhdUri = "https://$stoname.blob.core.windows.net/test/os.vhd"; $dataDiskVhdUri1 = "https://$stoname.blob.core.windows.net/test/data1.vhd"; $dataDiskVhdUri2 = "https://$stoname.blob.core.windows.net/test/data2.vhd"; - $dataDiskVhdUri3 = "https://$stoname.blob.core.windows.net/test/data3.vhd"; - $p = Set-AzureVMOSDisk -VM $p -Name $osDiskName -VhdUri $osDiskVhdUri -Caching $osDiskCaching -CreateOption Empty; + $p = Set-AzureVMOSDisk -VM $p -Name $osDiskName -VhdUri $osDiskVhdUri -Caching $osDiskCaching -CreateOption FromImage; - $p = Add-AzureVMDataDisk -VM $p -Name 'testDataDisk1' -Caching 'ReadOnly' -DiskSizeInGB 10 -Lun 0 -VhdUri $dataDiskVhdUri1 -CreateOption Empty; - $p = Add-AzureVMDataDisk -VM $p -Name 'testDataDisk2' -Caching 'ReadOnly' -DiskSizeInGB 11 -Lun 1 -VhdUri $dataDiskVhdUri2 -CreateOption Empty; - $p = Add-AzureVMDataDisk -VM $p -Name 'testDataDisk3' -Caching 'ReadOnly' -DiskSizeInGB 12 -Lun 2 -VhdUri $dataDiskVhdUri3 -CreateOption Empty; - $p = Remove-AzureVMDataDisk -VM $p -Name 'testDataDisk3'; + $p = Add-AzureVMDataDisk -VM $p -Name 'testDataDisk1' -Caching 'ReadOnly' -DiskSizeInGB 10 -Lun 1 -VhdUri $dataDiskVhdUri1 -CreateOption Empty; + $p = Add-AzureVMDataDisk -VM $p -Name 'testDataDisk2' -Caching 'ReadOnly' -DiskSizeInGB 11 -Lun 2 -VhdUri $dataDiskVhdUri2 -CreateOption Empty; Assert-AreEqual $p.StorageProfile.OSDisk.Caching $osDiskCaching; Assert-AreEqual $p.StorageProfile.OSDisk.Name $osDiskName; @@ -255,11 +251,11 @@ function Test-VirtualMachineCustomScriptExtension Assert-AreEqual $p.StorageProfile.DataDisks.Count 2; Assert-AreEqual $p.StorageProfile.DataDisks[0].Caching 'ReadOnly'; Assert-AreEqual $p.StorageProfile.DataDisks[0].DiskSizeGB 10; - Assert-AreEqual $p.StorageProfile.DataDisks[0].Lun 0; + Assert-AreEqual $p.StorageProfile.DataDisks[0].Lun 1; Assert-AreEqual $p.StorageProfile.DataDisks[0].VirtualHardDisk.Uri $dataDiskVhdUri1; Assert-AreEqual $p.StorageProfile.DataDisks[1].Caching 'ReadOnly'; Assert-AreEqual $p.StorageProfile.DataDisks[1].DiskSizeGB 11; - Assert-AreEqual $p.StorageProfile.DataDisks[1].Lun 1; + Assert-AreEqual $p.StorageProfile.DataDisks[1].Lun 2; Assert-AreEqual $p.StorageProfile.DataDisks[1].VirtualHardDisk.Uri $dataDiskVhdUri2; # OS & Image @@ -271,7 +267,6 @@ function Test-VirtualMachineCustomScriptExtension $vhdContainer = "https://$stoname.blob.core.windows.net/test"; $img = 'a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-Datacenter-201503.01-en.us-127GB.vhd'; - $p.StorageProfile.OSDisk = $null; $p = Set-AzureVMOperatingSystem -VM $p -Windows -ComputerName $computerName -Credential $cred -ProvisionVMAgent; $p = Set-AzureVMSourceImage -VM $p -Name $img; @@ -290,21 +285,24 @@ function Test-VirtualMachineCustomScriptExtension $extver = '1.1'; $publisher = 'Microsoft.Compute'; $exttype = 'CustomScriptExtension'; - $fileToExecute = "a.exe"; - $containderName = "script" + $fileToExecute = 'a.exe'; + $containderName = 'script'; # Set custom script extension Set-AzureVMCustomScriptExtension -ResourceGroupName $rgname -Location $loc -VMName $vmname -Name $extname -TypeHandlerVersion $extver -StorageAccountName $stoname -StorageAccountKey $stokey -FileName $fileToExecute -ContainerName $containderName; # Get VM Extension $ext = Get-AzureVMCustomScriptExtension -ResourceGroupName $rgname -VMName $vmname -Name $extname; + + $expCommand = 'powershell -ExecutionPolicy Unrestricted -file ' + $fileToExecute + ' '; + $expUri = $stoname + '.blob.core.windows.net/' + $containderName + '/' + $fileToExecute; Assert-AreEqual $ext.ResourceGroupName $rgname; Assert-AreEqual $ext.Name $extname; Assert-AreEqual $ext.Publisher $publisher; Assert-AreEqual $ext.ExtensionType $exttype; Assert-AreEqual $ext.TypeHandlerVersion $extver; - Assert-AreEqual $ext.CommandToExecute "powershell -ExecutionPolicy Unrestricted -file " + $fileToExecute + " "; - Assert-True $ext.Uri[0].Contains($stoname + ".blob.core.windows.net/" + $containderName + "/" + $fileToExecute); + Assert-AreEqual $ext.CommandToExecute $expCommand; + Assert-True {$ext.Uri[0].Contains($expUri)}; Assert-NotNull $ext.ProvisioningState; $ext = Get-AzureVMCustomScriptExtension -ResourceGroupName $rgname -VMName $vmname -Name $extname -Status; @@ -313,8 +311,8 @@ function Test-VirtualMachineCustomScriptExtension Assert-AreEqual $ext.Publisher $publisher; Assert-AreEqual $ext.ExtensionType $exttype; Assert-AreEqual $ext.TypeHandlerVersion $extver; - Assert-AreEqual $ext.CommandToExecute "powershell -ExecutionPolicy Unrestricted -file " + $fileToExecute + " "; - Assert-True $ext.Uri[0].Contains($stoname + ".blob.core.windows.net/" + $containderName + "/" + $fileToExecute); + Assert-AreEqual $ext.CommandToExecute $expCommand; + Assert-True {$ext.Uri[0].Contains($expUri)}; Assert-NotNull $ext.ProvisioningState; Assert-NotNull $ext.Statuses; @@ -329,13 +327,13 @@ function Test-VirtualMachineCustomScriptExtension Assert-AreEqual $vm1.HardwareProfile.VirtualMachineSize $vmsize; # Check Extensions in VM - Assert-AreEqual $vm1.Resources.Extensions.Count 1; - Assert-AreEqual $vm1.Resources.Extensions[0].Name $extname; - Assert-AreEqual $vm1.Resources.Extensions[0].Type 'Microsoft.Compute/virtualMachines/extensions'; - Assert-AreEqual $vm1.Resources.Extensions[0].Publisher $publisher; - Assert-AreEqual $vm1.Resources.Extensions[0].ExtensionType $exttype; - Assert-AreEqual $vm1.Resources.Extensions[0].TypeHandlerVersion $extver; - Assert-NotNull $vm1.Resources.Extensions[0].Settings; + Assert-AreEqual $vm1.Extensions.Count 1; + Assert-AreEqual $vm1.Extensions[0].Name $extname; + Assert-AreEqual $vm1.Extensions[0].Type 'Microsoft.Compute/virtualMachines/extensions'; + Assert-AreEqual $vm1.Extensions[0].Publisher $publisher; + Assert-AreEqual $vm1.Extensions[0].ExtensionType $exttype; + Assert-AreEqual $vm1.Extensions[0].TypeHandlerVersion $extver; + Assert-NotNull $vm1.Extensions[0].Settings; # *** TODO: The removal call did not return. 12/12/2014 } @@ -360,11 +358,11 @@ function Test-VirtualMachineAccessExtension try { # Common - $loc = Get-ProviderLocation ResourceManagement;; + $loc = 'East Asia'; New-AzureResourceGroup -Name $rgname -Location $loc; # VM Profile & Hardware - $vmsize = 'Standard_A2'; + $vmsize = 'Standard_A4'; $vmname = 'vm' + $rgname; $p = New-AzureVMConfig -VMName $vmname -VMSize $vmsize; Assert-AreEqual $p.HardwareProfile.VirtualMachineSize $vmsize; @@ -397,14 +395,11 @@ function Test-VirtualMachineAccessExtension $osDiskVhdUri = "https://$stoname.blob.core.windows.net/test/os.vhd"; $dataDiskVhdUri1 = "https://$stoname.blob.core.windows.net/test/data1.vhd"; $dataDiskVhdUri2 = "https://$stoname.blob.core.windows.net/test/data2.vhd"; - $dataDiskVhdUri3 = "https://$stoname.blob.core.windows.net/test/data3.vhd"; - $p = Set-AzureVMOSDisk -VM $p -Name $osDiskName -VhdUri $osDiskVhdUri -Caching $osDiskCaching -CreateOption Empty; + $p = Set-AzureVMOSDisk -VM $p -Name $osDiskName -VhdUri $osDiskVhdUri -Caching $osDiskCaching -CreateOption FromImage; - $p = Add-AzureVMDataDisk -VM $p -Name 'testDataDisk1' -Caching 'ReadOnly' -DiskSizeInGB 10 -Lun 0 -VhdUri $dataDiskVhdUri1 -CreateOption Empty; - $p = Add-AzureVMDataDisk -VM $p -Name 'testDataDisk2' -Caching 'ReadOnly' -DiskSizeInGB 11 -Lun 1 -VhdUri $dataDiskVhdUri2 -CreateOption Empty; - $p = Add-AzureVMDataDisk -VM $p -Name 'testDataDisk3' -Caching 'ReadOnly' -DiskSizeInGB 12 -Lun 2 -VhdUri $dataDiskVhdUri3 -CreateOption Empty; - $p = Remove-AzureVMDataDisk -VM $p -Name 'testDataDisk3'; + $p = Add-AzureVMDataDisk -VM $p -Name 'testDataDisk1' -Caching 'ReadOnly' -DiskSizeInGB 10 -Lun 1 -VhdUri $dataDiskVhdUri1 -CreateOption Empty; + $p = Add-AzureVMDataDisk -VM $p -Name 'testDataDisk2' -Caching 'ReadOnly' -DiskSizeInGB 11 -Lun 2 -VhdUri $dataDiskVhdUri2 -CreateOption Empty; Assert-AreEqual $p.StorageProfile.OSDisk.Caching $osDiskCaching; Assert-AreEqual $p.StorageProfile.OSDisk.Name $osDiskName; @@ -412,11 +407,11 @@ function Test-VirtualMachineAccessExtension Assert-AreEqual $p.StorageProfile.DataDisks.Count 2; Assert-AreEqual $p.StorageProfile.DataDisks[0].Caching 'ReadOnly'; Assert-AreEqual $p.StorageProfile.DataDisks[0].DiskSizeGB 10; - Assert-AreEqual $p.StorageProfile.DataDisks[0].Lun 0; + Assert-AreEqual $p.StorageProfile.DataDisks[0].Lun 1; Assert-AreEqual $p.StorageProfile.DataDisks[0].VirtualHardDisk.Uri $dataDiskVhdUri1; Assert-AreEqual $p.StorageProfile.DataDisks[1].Caching 'ReadOnly'; Assert-AreEqual $p.StorageProfile.DataDisks[1].DiskSizeGB 11; - Assert-AreEqual $p.StorageProfile.DataDisks[1].Lun 1; + Assert-AreEqual $p.StorageProfile.DataDisks[1].Lun 2; Assert-AreEqual $p.StorageProfile.DataDisks[1].VirtualHardDisk.Uri $dataDiskVhdUri2; # OS & Image @@ -428,7 +423,6 @@ function Test-VirtualMachineAccessExtension $vhdContainer = "https://$stoname.blob.core.windows.net/test"; $img = 'a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-Datacenter-201503.01-en.us-127GB.vhd'; - $p.StorageProfile.OSDisk = $null; $p = Set-AzureVMOperatingSystem -VM $p -Windows -ComputerName $computerName -Credential $cred -ProvisionVMAgent; $p = Set-AzureVMSourceImage -VM $p -Name $img; @@ -484,13 +478,13 @@ function Test-VirtualMachineAccessExtension Assert-AreEqual $vm1.HardwareProfile.VirtualMachineSize $vmsize; # Check Extensions in VM - Assert-AreEqual $vm1.Resources.Extensions.Count 1; - Assert-AreEqual $vm1.Resources.Extensions[0].Name $extname; - Assert-AreEqual $vm1.Resources.Extensions[0].Type 'Microsoft.Compute/virtualMachines/extensions'; - Assert-AreEqual $vm1.Resources.Extensions[0].Publisher $publisher; - Assert-AreEqual $vm1.Resources.Extensions[0].ExtensionType $exttype; - Assert-AreEqual $vm1.Resources.Extensions[0].TypeHandlerVersion $extver; - Assert-NotNull $vm1.Resources.Extensions[0].Settings; + Assert-AreEqual $vm1.Extensions.Count 1; + Assert-AreEqual $vm1.Extensions[0].Name $extname; + Assert-AreEqual $vm1.Extensions[0].Type 'Microsoft.Compute/virtualMachines/extensions'; + Assert-AreEqual $vm1.Extensions[0].Publisher $publisher; + Assert-AreEqual $vm1.Extensions[0].ExtensionType $exttype; + Assert-AreEqual $vm1.Extensions[0].TypeHandlerVersion $extver; + Assert-NotNull $vm1.Extensions[0].Settings; # *** TODO: The removal call did not return. 12/12/2014 } diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VirtualMachineNetworkInterfaceTests.ps1 b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VirtualMachineNetworkInterfaceTests.ps1 index 46dc1aa5175a..751c44c69b90 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VirtualMachineNetworkInterfaceTests.ps1 +++ b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VirtualMachineNetworkInterfaceTests.ps1 @@ -24,7 +24,7 @@ function Test-SingleNetworkInterface try { # Common - $loc = 'West US'; + $loc = 'eastasia'; New-AzureResourceGroup -Name $rgname -Location $loc; # VM Profile & Hardware @@ -54,7 +54,7 @@ function Test-SingleNetworkInterface $stoname = 'sto' + $rgname; $stotype = 'Standard_GRS'; New-AzureStorageAccount -ResourceGroupName $rgname -Name $stoname -Location $loc -Type $stotype; - Retry-IfException { $global:stoaccount = Get-AzureStorageAccount -ResourceGroupName $rgname -Name $stoname; } + $stoaccount = Get-AzureStorageAccount -ResourceGroupName $rgname -Name $stoname; $osDiskName = 'osDisk'; $osDiskCaching = 'ReadWrite'; @@ -63,11 +63,11 @@ function Test-SingleNetworkInterface $dataDiskVhdUri2 = "https://$stoname.blob.core.windows.net/test/data2.vhd"; $dataDiskVhdUri3 = "https://$stoname.blob.core.windows.net/test/data3.vhd"; - $p = Set-AzureVMOSDisk -VM $p -Name $osDiskName -VhdUri $osDiskVhdUri -Caching $osDiskCaching -CreateOption Empty; + $p = Set-AzureVMOSDisk -VM $p -Name $osDiskName -VhdUri $osDiskVhdUri -Caching $osDiskCaching -CreateOption FromImage; - $p = Add-AzureVMDataDisk -VM $p -Name 'testDataDisk1' -Caching 'ReadOnly' -DiskSizeInGB 10 -Lun 0 -VhdUri $dataDiskVhdUri1 -CreateOption Empty; - $p = Add-AzureVMDataDisk -VM $p -Name 'testDataDisk2' -Caching 'ReadOnly' -DiskSizeInGB 11 -Lun 1 -VhdUri $dataDiskVhdUri2 -CreateOption Empty; - $p = Add-AzureVMDataDisk -VM $p -Name 'testDataDisk3' -Caching 'ReadOnly' -DiskSizeInGB 12 -Lun 2 -VhdUri $dataDiskVhdUri3 -CreateOption Empty; + $p = Add-AzureVMDataDisk -VM $p -Name 'testDataDisk1' -Caching 'ReadOnly' -DiskSizeInGB 10 -Lun 1 -VhdUri $dataDiskVhdUri1 -CreateOption Empty; + $p = Add-AzureVMDataDisk -VM $p -Name 'testDataDisk2' -Caching 'ReadOnly' -DiskSizeInGB 11 -Lun 2 -VhdUri $dataDiskVhdUri2 -CreateOption Empty; + $p = Add-AzureVMDataDisk -VM $p -Name 'testDataDisk3' -Caching 'ReadOnly' -DiskSizeInGB 12 -Lun 3 -VhdUri $dataDiskVhdUri3 -CreateOption Empty; $p = Remove-AzureVMDataDisk -VM $p -Name 'testDataDisk3'; Assert-AreEqual $p.StorageProfile.OSDisk.Caching $osDiskCaching; @@ -76,11 +76,11 @@ function Test-SingleNetworkInterface Assert-AreEqual $p.StorageProfile.DataDisks.Count 2; Assert-AreEqual $p.StorageProfile.DataDisks[0].Caching 'ReadOnly'; Assert-AreEqual $p.StorageProfile.DataDisks[0].DiskSizeGB 10; - Assert-AreEqual $p.StorageProfile.DataDisks[0].Lun 0; + Assert-AreEqual $p.StorageProfile.DataDisks[0].Lun 1; Assert-AreEqual $p.StorageProfile.DataDisks[0].VirtualHardDisk.Uri $dataDiskVhdUri1; Assert-AreEqual $p.StorageProfile.DataDisks[1].Caching 'ReadOnly'; Assert-AreEqual $p.StorageProfile.DataDisks[1].DiskSizeGB 11; - Assert-AreEqual $p.StorageProfile.DataDisks[1].Lun 1; + Assert-AreEqual $p.StorageProfile.DataDisks[1].Lun 2; Assert-AreEqual $p.StorageProfile.DataDisks[1].VirtualHardDisk.Uri $dataDiskVhdUri2; # OS & Image @@ -92,14 +92,22 @@ function Test-SingleNetworkInterface $vhdContainer = "https://$stoname.blob.core.windows.net/test"; $img = 'a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-Datacenter-201503.01-en.us-127GB.vhd'; - $p.StorageProfile.OSDisk = $null; + # $p.StorageProfile.OSDisk = $null; $p = Set-AzureVMOperatingSystem -VM $p -Windows -ComputerName $computerName -Credential $cred; - $p = Set-AzureVMSourceImage -VM $p -Name $img; Assert-AreEqual $p.OSProfile.AdminUsername $user; Assert-AreEqual $p.OSProfile.ComputerName $computerName; Assert-AreEqual $p.OSProfile.AdminPassword $password; - Assert-AreEqual $p.StorageProfile.SourceImage.ReferenceUri ('/' + (Get-AzureSubscription -Current).SubscriptionId + '/services/images/' + $img); + + # Image Reference; + $p.StorageProfile.SourceImage = $null; + $imgRef = Get-DefaultCRPImage; + $p = ($imgRef | Set-AzureVMSourceImage -VM $p); + Assert-NotNull $p.StorageProfile.ImageReference; + Assert-Null $p.StorageProfile.SourceImageId; + + # TODO: Remove Data Disks for now + $p.StorageProfile.DataDisks = $null; # Virtual Machine # TODO: Still need to do retry for New-AzureVM for SA, even it's returned in Get-. @@ -110,11 +118,7 @@ function Test-SingleNetworkInterface Assert-AreEqual $vm1.Name $vmname; Assert-AreEqual $vm1.NetworkProfile.NetworkInterfaces.Count 1; Assert-AreEqual $vm1.NetworkProfile.NetworkInterfaces[0].ReferenceUri $nicId; - Assert-AreEqual $vm1.StorageProfile.SourceImage.ReferenceUri ('/' + (Get-AzureSubscription -Current).SubscriptionId + '/services/images/' + $img); - Assert-AreEqual $vm1.OSProfile.AdminUsername $user; - Assert-AreEqual $vm1.OSProfile.ComputerName $computerName; - Assert-AreEqual $vm1.HardwareProfile.VirtualMachineSize $vmsize; - + # Get NetworkInterface $getnic = Get-AzureNetworkInterface -Name ('nic' + $rgname) -ResourceGroupName $rgname; Assert-AreEqual $vm1.NetworkProfile.NetworkInterfaces[0].ReferenceUri $getnic.Id; @@ -143,7 +147,7 @@ function Test-SingleNetworkInterfaceDnsSettings try { # Common - $loc = 'West US'; + $loc = 'eastasia'; New-AzureResourceGroup -Name $rgname -Location $loc; # VM Profile & Hardware @@ -173,7 +177,7 @@ function Test-SingleNetworkInterfaceDnsSettings $stoname = 'sto' + $rgname; $stotype = 'Standard_GRS'; New-AzureStorageAccount -ResourceGroupName $rgname -Name $stoname -Location $loc -Type $stotype; - Retry-IfException { $global:stoaccount = Get-AzureStorageAccount -ResourceGroupName $rgname -Name $stoname; } + $stoaccount = Get-AzureStorageAccount -ResourceGroupName $rgname -Name $stoname; $osDiskName = 'osDisk'; $osDiskCaching = 'ReadWrite'; @@ -182,11 +186,11 @@ function Test-SingleNetworkInterfaceDnsSettings $dataDiskVhdUri2 = "https://$stoname.blob.core.windows.net/test/data2.vhd"; $dataDiskVhdUri3 = "https://$stoname.blob.core.windows.net/test/data3.vhd"; - $p = Set-AzureVMOSDisk -VM $p -Name $osDiskName -VhdUri $osDiskVhdUri -Caching $osDiskCaching -CreateOption Empty; + $p = Set-AzureVMOSDisk -VM $p -Name $osDiskName -VhdUri $osDiskVhdUri -Caching $osDiskCaching -CreateOption FromImage; - $p = Add-AzureVMDataDisk -VM $p -Name 'testDataDisk1' -Caching 'ReadOnly' -DiskSizeInGB 10 -Lun 0 -VhdUri $dataDiskVhdUri1 -CreateOption Empty; - $p = Add-AzureVMDataDisk -VM $p -Name 'testDataDisk2' -Caching 'ReadOnly' -DiskSizeInGB 11 -Lun 1 -VhdUri $dataDiskVhdUri2 -CreateOption Empty; - $p = Add-AzureVMDataDisk -VM $p -Name 'testDataDisk3' -Caching 'ReadOnly' -DiskSizeInGB 12 -Lun 2 -VhdUri $dataDiskVhdUri3 -CreateOption Empty; + $p = Add-AzureVMDataDisk -VM $p -Name 'testDataDisk1' -Caching 'ReadOnly' -DiskSizeInGB 10 -Lun 1 -VhdUri $dataDiskVhdUri1 -CreateOption Empty; + $p = Add-AzureVMDataDisk -VM $p -Name 'testDataDisk2' -Caching 'ReadOnly' -DiskSizeInGB 11 -Lun 2 -VhdUri $dataDiskVhdUri2 -CreateOption Empty; + $p = Add-AzureVMDataDisk -VM $p -Name 'testDataDisk3' -Caching 'ReadOnly' -DiskSizeInGB 12 -Lun 3 -VhdUri $dataDiskVhdUri3 -CreateOption Empty; $p = Remove-AzureVMDataDisk -VM $p -Name 'testDataDisk3'; # OS & Image @@ -198,9 +202,18 @@ function Test-SingleNetworkInterfaceDnsSettings $vhdContainer = "https://$stoname.blob.core.windows.net/test"; $img = 'a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-Datacenter-201503.01-en.us-127GB.vhd'; - $p.StorageProfile.OSDisk = $null; + # $p.StorageProfile.OSDisk = $null; $p = Set-AzureVMOperatingSystem -VM $p -Windows -ComputerName $computerName -Credential $cred; - $p = Set-AzureVMSourceImage -VM $p -Name $img; + + # Image Reference; + $p.StorageProfile.SourceImage = $null; + $imgRef = Get-DefaultCRPImage; + $p = ($imgRef | Set-AzureVMSourceImage -VM $p); + Assert-NotNull $p.StorageProfile.ImageReference; + Assert-Null $p.StorageProfile.SourceImageId; + + # TODO: Remove Data Disks for now + $p.StorageProfile.DataDisks = $null; # Virtual Machine # TODO: Still need to do retry for New-AzureVM for SA, even it's returned in Get-. @@ -208,6 +221,9 @@ function Test-SingleNetworkInterfaceDnsSettings # Get VM $vm1 = Get-AzureVM -Name $vmname -ResourceGroupName $rgname; + Assert-AreEqual $vm1.Name $vmname; + Assert-AreEqual $vm1.NetworkProfile.NetworkInterfaces.Count 1; + Assert-AreEqual $vm1.NetworkProfile.NetworkInterfaces[0].ReferenceUri $nicId; # Get NetworkInterface $getnic = Get-AzureNetworkInterface -Name ('nic' + $rgname) -ResourceGroupName $rgname; @@ -238,7 +254,7 @@ function Test-MultipleNetworkInterface try { # Common - $loc = 'West US'; + $loc = 'eastasia'; New-AzureResourceGroup -Name $rgname -Location $loc; # VM Profile & Hardware @@ -267,11 +283,11 @@ function Test-MultipleNetworkInterface Assert-AreEqual $p.NetworkProfile.NetworkInterfaces[1].Primary true; Assert-AreNotEqual $p.NetworkProfile.NetworkInterfaces[0].Primary true; - # Storage Account (SA) + # Storage Account (SA) $stoname = 'sto' + $rgname; $stotype = 'Standard_GRS'; New-AzureStorageAccount -ResourceGroupName $rgname -Name $stoname -Location $loc -Type $stotype; - Retry-IfException { $global:stoaccount = Get-AzureStorageAccount -ResourceGroupName $rgname -Name $stoname; } + $stoaccount = Get-AzureStorageAccount -ResourceGroupName $rgname -Name $stoname; $osDiskName = 'osDisk'; $osDiskCaching = 'ReadWrite'; @@ -280,26 +296,13 @@ function Test-MultipleNetworkInterface $dataDiskVhdUri2 = "https://$stoname.blob.core.windows.net/test/data2.vhd"; $dataDiskVhdUri3 = "https://$stoname.blob.core.windows.net/test/data3.vhd"; - $p = Set-AzureVMOSDisk -VM $p -Name $osDiskName -VhdUri $osDiskVhdUri -Caching $osDiskCaching -CreateOption Empty; + $p = Set-AzureVMOSDisk -VM $p -Name $osDiskName -VhdUri $osDiskVhdUri -Caching $osDiskCaching -CreateOption FromImage; - $p = Add-AzureVMDataDisk -VM $p -Name 'testDataDisk1' -Caching 'ReadOnly' -DiskSizeInGB 10 -Lun 0 -VhdUri $dataDiskVhdUri1 -CreateOption Empty; - $p = Add-AzureVMDataDisk -VM $p -Name 'testDataDisk2' -Caching 'ReadOnly' -DiskSizeInGB 11 -Lun 1 -VhdUri $dataDiskVhdUri2 -CreateOption Empty; - $p = Add-AzureVMDataDisk -VM $p -Name 'testDataDisk3' -Caching 'ReadOnly' -DiskSizeInGB 12 -Lun 2 -VhdUri $dataDiskVhdUri3 -CreateOption Empty; + $p = Add-AzureVMDataDisk -VM $p -Name 'testDataDisk1' -Caching 'ReadOnly' -DiskSizeInGB 10 -Lun 1 -VhdUri $dataDiskVhdUri1 -CreateOption Empty; + $p = Add-AzureVMDataDisk -VM $p -Name 'testDataDisk2' -Caching 'ReadOnly' -DiskSizeInGB 11 -Lun 2 -VhdUri $dataDiskVhdUri2 -CreateOption Empty; + $p = Add-AzureVMDataDisk -VM $p -Name 'testDataDisk3' -Caching 'ReadOnly' -DiskSizeInGB 12 -Lun 3 -VhdUri $dataDiskVhdUri3 -CreateOption Empty; $p = Remove-AzureVMDataDisk -VM $p -Name 'testDataDisk3'; - Assert-AreEqual $p.StorageProfile.OSDisk.Caching $osDiskCaching; - Assert-AreEqual $p.StorageProfile.OSDisk.Name $osDiskName; - Assert-AreEqual $p.StorageProfile.OSDisk.VirtualHardDisk.Uri $osDiskVhdUri; - Assert-AreEqual $p.StorageProfile.DataDisks.Count 2; - Assert-AreEqual $p.StorageProfile.DataDisks[0].Caching 'ReadOnly'; - Assert-AreEqual $p.StorageProfile.DataDisks[0].DiskSizeGB 10; - Assert-AreEqual $p.StorageProfile.DataDisks[0].Lun 0; - Assert-AreEqual $p.StorageProfile.DataDisks[0].VirtualHardDisk.Uri $dataDiskVhdUri1; - Assert-AreEqual $p.StorageProfile.DataDisks[1].Caching 'ReadOnly'; - Assert-AreEqual $p.StorageProfile.DataDisks[1].DiskSizeGB 11; - Assert-AreEqual $p.StorageProfile.DataDisks[1].Lun 1; - Assert-AreEqual $p.StorageProfile.DataDisks[1].VirtualHardDisk.Uri $dataDiskVhdUri2; - # OS & Image $user = "Foo12"; $password = 'BaR@123' + $rgname; @@ -309,14 +312,18 @@ function Test-MultipleNetworkInterface $vhdContainer = "https://$stoname.blob.core.windows.net/test"; $img = 'a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-Datacenter-201503.01-en.us-127GB.vhd'; - $p.StorageProfile.OSDisk = $null; + # $p.StorageProfile.OSDisk = $null; $p = Set-AzureVMOperatingSystem -VM $p -Windows -ComputerName $computerName -Credential $cred; - $p = Set-AzureVMSourceImage -VM $p -Name $img; - Assert-AreEqual $p.OSProfile.AdminUsername $user; - Assert-AreEqual $p.OSProfile.ComputerName $computerName; - Assert-AreEqual $p.OSProfile.AdminPassword $password; - Assert-AreEqual $p.StorageProfile.SourceImage.ReferenceUri ('/' + (Get-AzureSubscription -Current).SubscriptionId + '/services/images/' + $img); + # Image Reference; + $p.StorageProfile.SourceImage = $null; + $imgRef = Get-DefaultCRPImage; + $p = ($imgRef | Set-AzureVMSourceImage -VM $p); + Assert-NotNull $p.StorageProfile.ImageReference; + Assert-Null $p.StorageProfile.SourceImageId; + + # TODO: Remove Data Disks for now + $p.StorageProfile.DataDisks = $null; # Virtual Machine # TODO: Still need to do retry for New-AzureVM for SA, even it's returned in Get-. @@ -328,10 +335,6 @@ function Test-MultipleNetworkInterface Assert-AreEqual $vm1.NetworkProfile.NetworkInterfaces.Count 2; Assert-AreEqual $vm1.NetworkProfile.NetworkInterfaces[0].ReferenceUri $nic1.Id; Assert-AreEqual $vm1.NetworkProfile.NetworkInterfaces[1].ReferenceUri $nic2.Id; - Assert-AreEqual $vm1.StorageProfile.SourceImage.ReferenceUri ('/' + (Get-AzureSubscription -Current).SubscriptionId + '/services/images/' + $img); - Assert-AreEqual $vm1.OSProfile.AdminUsername $user; - Assert-AreEqual $vm1.OSProfile.ComputerName $computerName; - Assert-AreEqual $vm1.HardwareProfile.VirtualMachineSize $vmsize; # Get NetworkInterface $getnic1 = Get-AzureNetworkInterface -Name ('nic1' + $rgname) -ResourceGroupName $rgname; diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VirtualMachinePIRv2Tests.cs b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VirtualMachinePIRv2Tests.cs deleted file mode 100644 index 9c19dcf55951..000000000000 --- a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VirtualMachinePIRv2Tests.cs +++ /dev/null @@ -1,29 +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 Microsoft.WindowsAzure.Commands.ScenarioTest; -using Xunit; - -namespace Microsoft.Azure.Commands.Compute.Test.ScenarioTests -{ - public partial class VirtualMachineTests - { - //[Fact(Skip = "TODO: Record")] - //[Trait(Category.AcceptanceType, Category.CheckIn)] - public void TestVirtualMachinePIRv2() - { - ComputeTestController.NewInstance.RunPsTest("Test-VirtualMachinePIRv2"); - } - } -} diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VirtualMachineProfileTests.ps1 b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VirtualMachineProfileTests.ps1 index 8532f368c6f6..9bbcd25773e5 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VirtualMachineProfileTests.ps1 +++ b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VirtualMachineProfileTests.ps1 @@ -75,32 +75,45 @@ function Test-VirtualMachineProfile $vhdContainer = "https://$stoname.blob.core.windows.net/test"; $img = 'a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-Datacenter-201503.01-en.us-127GB.vhd'; - $referenceUri = "/subscriptions/05cacd0c-6f9b-492e-b673-d8be41a7644f/resourceGroups/RgTest1/providers/Microsoft.KeyVault/vaults/TestVault123"; - $certStore = "My"; - $certUrl = "https://testvault123.vault.azure.net/secrets/Test1/514ceb769c984379a7e0230bdd703272"; - $vaultCert = New-AzureVaultCertificate -CertificateStore $certStore -CertificateUrl $certUrl; - $vaultSG = New-AzureVaultSecretGroup -ReferenceUri $referenceUri -VaultCertificates $vaultCert; - - $aucSetting = "AutoLogon"; - $aucContent = "p@ssw0rdtrue</PlainText></AdministratorPassword></UserAccounts>"; - $auc1 = New-AzureAdditionalUnattendContent -Content $aucContent -SettingName $aucSetting; - $auc2 = New-AzureAdditionalUnattendContent -Content $aucContent -SettingName $aucSetting; - $winRMCertUrl = "http://keyVaultName.vault.azure.net/secrets/secretName/secretVersion"; $timeZone = "Pacific Standard Time"; $custom = "echo 'Hello World'"; $encodedCustom = "ZWNobyAnSGVsbG8gV29ybGQn"; - $p = Set-AzureVMOperatingSystem -VM $p -Windows -ComputerName $computerName -Credential $cred -CustomData $custom -Secrets $vaultSG -WinRMHttp -WinRMHttps -WinRMCertUrl $winRMCertUrl -ProvisionVMAgent -EnableAutoUpdate -TimeZone $timeZone -AdditionalUnattendContents $auc1,$auc2; + $p = Set-AzureVMOperatingSystem -VM $p -Windows -ComputerName $computerName -Credential $cred -CustomData $custom -WinRMHttp -WinRMHttps -WinRMCertificateUrl $winRMCertUrl -ProvisionVMAgent -EnableAutoUpdate -TimeZone $timeZone; $p = Set-AzureVMSourceImage -VM $p -Name $img; - + $subid = (Get-AzureSubscription -Current).SubscriptionId; + + $referenceUri = "/subscriptions/" + $subid + "/resourceGroups/RgTest1/providers/Microsoft.KeyVault/vaults/TestVault123"; + $certStore = "My"; + $certUrl = "https://testvault123.vault.azure.net/secrets/Test1/514ceb769c984379a7e0230bdd703272"; + $p = Add-AzureVMSecret -VM $p -SourceVaultId $referenceUri -CertificateStore $certStore -CertificateUrl $certUrl; + + $referenceUri2 = "/subscriptions/" + $subid + "/resourceGroups/RgTest1/providers/Microsoft.KeyVault/vaults/TestVault456"; + $p = Add-AzureVMSecret -VM $p -SourceVaultId $referenceUri2 -CertificateStore $certStore -CertificateUrl $certUrl; + + $certStore2 = "My2"; + $certUrl2 = "https://testvault123.vault.azure.net/secrets/Test1/514ceb769c984379a7e0230bddaaaaaa"; + $p = Add-AzureVMSecret -VM $p -SourceVaultId $referenceUri -CertificateStore $certStore2 -CertificateUrl $certUrl2; + + $aucSetting = "AutoLogon"; + $aucContent = "<UserAccounts><AdministratorPassword><Value>" + $password + "</Value><PlainText>true</PlainText></AdministratorPassword></UserAccounts>"; + $p = Add-AzureVMAdditionalUnattendContent -VM $p -Content $aucContent -SettingName $aucSetting; + $p = Add-AzureVMAdditionalUnattendContent -VM $p -Content $aucContent -SettingName $aucSetting; + Assert-AreEqual $p.OSProfile.AdminUsername $user; Assert-AreEqual $p.OSProfile.ComputerName $computerName; Assert-AreEqual $p.OSProfile.AdminPassword $password; - Assert-AreEqual $p.StorageProfile.SourceImage.ReferenceUri ('/' + (Get-AzureSubscription -Current).SubscriptionId + '/services/images/' + $img); + Assert-AreEqual $p.StorageProfile.SourceImage.ReferenceUri ('/' + $subid + '/services/images/' + $img); Assert-AreEqual $p.OSProfile.Secrets[0].SourceVault.ReferenceUri $referenceUri; Assert-AreEqual $p.OSProfile.Secrets[0].VaultCertificates[0].CertificateStore $certStore; Assert-AreEqual $p.OSProfile.Secrets[0].VaultCertificates[0].CertificateUrl $certUrl; + Assert-AreEqual $p.OSProfile.Secrets[0].SourceVault.ReferenceUri $referenceUri; + Assert-AreEqual $p.OSProfile.Secrets[0].VaultCertificates[1].CertificateStore $certStore2; + Assert-AreEqual $p.OSProfile.Secrets[0].VaultCertificates[1].CertificateUrl $certUrl2; + Assert-AreEqual $p.OSProfile.Secrets[1].SourceVault.ReferenceUri $referenceUri2; + Assert-AreEqual $p.OSProfile.Secrets[1].VaultCertificates[0].CertificateStore $certStore; + Assert-AreEqual $p.OSProfile.Secrets[1].VaultCertificates[0].CertificateUrl $certUrl; Assert-AreEqual $encodedCustom $p.OSProfile.CustomData; # Verify WinRM @@ -126,18 +139,20 @@ function Test-VirtualMachineProfile # Linux OS $img = "b4590d9e3ed742e4a1d46e5424aa335e__SUSE-Linux-Enterprise-Server-11-SP3-v206"; - $sshPath = "/home/pstestuser/.ssh/authorized_keys"; - $sshPublicKey = "MIIDszCCApugAwIBAgIJALBV9YJCF/tAMA0GCSqGSIb3DQEBBQUAMEUxCzAJBgNV"; - - $sshKey = New-AzureSshPublicKey -KeyData $sshPublicKey -Path $sshPath; - $p = Set-AzureVMOperatingSystem -VM $p -Linux -ComputerName $computerName -Credential $cred -CustomData $custom -Secrets $vaultSG -SSHPublicKeys $sshKey -DisablePasswordAuthentication; + $p = Set-AzureVMOperatingSystem -VM $p -Linux -ComputerName $computerName -Credential $cred -CustomData $custom -DisablePasswordAuthentication; $p = Set-AzureVMSourceImage -VM $p -Name $img; + $sshPath = "/home/pstestuser/.ssh/authorized_keys"; + $sshPublicKey = "MIIDszCCApugAwIBAgIJALBV9YJCF/tAMA0GCSqGSIb3DQEBBQUAMEUxCzAJBgNV"; + $p = Add-AzureVMSshPublicKey -VM $p -KeyData $sshPublicKey -Path $sshPath; + $p = Add-AzureVMSshPublicKey -VM $p -KeyData $sshPublicKey -Path $sshPath; + $p = Add-AzureVMSecret -VM $p -SourceVaultId $referenceUri -CertificateStore $certStore -CertificateUrl $certUrl; + Assert-AreEqual $p.OSProfile.AdminUsername $user; Assert-AreEqual $p.OSProfile.ComputerName $computerName; Assert-AreEqual $p.OSProfile.AdminPassword $password; - Assert-AreEqual $p.StorageProfile.SourceImage.ReferenceUri ('/' + (Get-AzureSubscription -Current).SubscriptionId + '/services/images/' + $img); + Assert-AreEqual $p.StorageProfile.SourceImage.ReferenceUri ('/' + $subid + '/services/images/' + $img); Assert-AreEqual $p.OSProfile.Secrets[0].SourceVault.ReferenceUri $referenceUri; Assert-AreEqual $p.OSProfile.Secrets[0].VaultCertificates[0].CertificateStore $certStore; Assert-AreEqual $p.OSProfile.Secrets[0].VaultCertificates[0].CertificateUrl $certUrl; @@ -146,5 +161,7 @@ function Test-VirtualMachineProfile # Verify SSH configuration Assert-AreEqual $sshPublicKey $p.OSProfile.LinuxConfiguration.SshConfiguration.PublicKeys[0].KeyData; Assert-AreEqual $sshPath $p.OSProfile.LinuxConfiguration.SshConfiguration.PublicKeys[0].Path; + Assert-AreEqual $sshPublicKey $p.OSProfile.LinuxConfiguration.SshConfiguration.PublicKeys[1].KeyData; + Assert-AreEqual $sshPath $p.OSProfile.LinuxConfiguration.SshConfiguration.PublicKeys[1].Path; Assert-AreEqual $true $p.OSProfile.LinuxConfiguration.DisablePasswordAuthentication } diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VirtualMachineTests.cs b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VirtualMachineTests.cs index ca0f2f8e4423..ca6eacc91c72 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VirtualMachineTests.cs +++ b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VirtualMachineTests.cs @@ -25,5 +25,61 @@ public void TestVirtualMachine() { ComputeTestController.NewInstance.RunPsTest("Test-VirtualMachine"); } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestVirtualMachineImageList() + { + ComputeTestController.NewInstance.RunPsTest("Test-VirtualMachineImageList"); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestVirtualMachineList() + { + ComputeTestController.NewInstance.RunPsTest("Test-VirtualMachineList"); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestVirtualMachineSizeAndUsage() + { + ComputeTestController.NewInstance.RunPsTest("Test-VirtualMachineSizeAndUsage"); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestVirtualMachineCapture() + { + ComputeTestController.NewInstance.RunPsTest("Test-VirtualMachineCapture"); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestVirtualMachineDataDisk() + { + ComputeTestController.NewInstance.RunPsTest("Test-VirtualMachineDataDisk"); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestVirtualMachinePIRv2() + { + ComputeTestController.NewInstance.RunPsTest("Test-VirtualMachinePIRv2"); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestVirtualMachinePlan() + { + ComputeTestController.NewInstance.RunPsTest("Test-VirtualMachinePlan"); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestVirtualMachinePlan2() + { + ComputeTestController.NewInstance.RunPsTest("Test-VirtualMachinePlan2"); + } } } diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VirtualMachineTests.ps1 b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VirtualMachineTests.ps1 index 44617aba9408..952fef765d62 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VirtualMachineTests.ps1 +++ b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VirtualMachineTests.ps1 @@ -165,7 +165,8 @@ function Test-VirtualMachine $vm2 = Get-AzureVM -Name $vmname2 -ResourceGroupName $rgname; Assert-NotNull $vm2; - Assert-AreEqual $vm2.AvailabilitySetId $asetId; + # Assert-AreEqual $vm2.AvailabilitySetReference.ReferenceUri $asetId; + # Assert-True { $vm2.ResourceGroupName -eq $rgname } # Remove Remove-AzureVM -Name $vmname2 -ResourceGroupName $rgname -Force; @@ -191,6 +192,11 @@ function Test-VirtualMachineList $s1 = Get-AzureVM -All; $s2 = Get-AzureVM; + if ($s2 -ne $null) + { + Assert-NotNull $s2[0].Id; + } + Assert-ThrowsContains { $s3 = Get-AzureVM -NextLink "http://www.test.com/test"; } "Unexpected character" $passed = $true; @@ -241,12 +247,12 @@ function Test-VirtualMachineImageList $skus = $s3 | select -ExpandProperty Skus; foreach ($sku in $skus) { - $s4 = Get-AzureVMImageVersion -Location $locStr -PublisherName $pub -Offer $offer -Sku $sku; + $s4 = Get-AzureVMImage -Location $locStr -PublisherName $pub -Offer $offer -Sku $sku; if ($s4.Count -gt 0) { $versions = $s4 | select -ExpandProperty Version; - $s6 = Get-AzureVMImageVersion -Location $locStr -PublisherName $pub -Offer $offer -Sku $sku -FilterExpression ('name -eq *'); + $s6 = Get-AzureVMImage -Location $locStr -PublisherName $pub -Offer $offer -Sku $sku -FilterExpression ('name -eq *'); Assert-NotNull $s6; Assert-NotNull $s6.Count -gt 0; $verNames = $s6 | select -ExpandProperty Version; @@ -254,7 +260,7 @@ function Test-VirtualMachineImageList foreach ($ver in $versions) { if ($ver -eq $null -or $ver -eq '') { continue; } - $s6 = Get-AzureVMImage -Location $locStr -PublisherName $pub -Offer $offer -Sku $sku -Version $ver; + $s6 = Get-AzureVMImageDetail -Location $locStr -PublisherName $pub -Offer $offer -Sku $sku -Version $ver; Assert-NotNull $s6; $s6; @@ -289,11 +295,11 @@ function Test-VirtualMachineImageList { foreach ($type in $types) { - $s2 = Get-AzureVMExtensionImageVersion -Location $locStr -PublisherName $pub -Type $type -FilterExpression '*'; + $s2 = Get-AzureVMExtensionImage -Location $locStr -PublisherName $pub -Type $type -FilterExpression '*'; $versions = $s2 | select -ExpandProperty Version; foreach ($ver in $versions) { - $s3 = Get-AzureVMExtensionImage -Location $locStr -PublisherName $pub -Type $type -Version $ver -FilterExpression '*'; + $s3 = Get-AzureVMExtensionImageDetail -Location $locStr -PublisherName $pub -Type $type -Version $ver -FilterExpression '*'; Assert-NotNull $s3; Assert-True { $s3.Version -eq $ver; } @@ -310,11 +316,11 @@ function Test-VirtualMachineImageList # Test Piping $pubNameFilter = '*Microsoft*Windows*Server*'; - $imgs = Get-AzureVMImagePublisher -Location $locStr | where { $_.PublisherName -like $pubNameFilter } | Get-AzureVMImageOffer | Get-AzureVMImageSku | Get-AzureVMImageVersion | Get-AzureVMImage; + $imgs = Get-AzureVMImagePublisher -Location $locStr | where { $_.PublisherName -like $pubNameFilter } | Get-AzureVMImageOffer | Get-AzureVMImageSku | Get-AzureVMImage | Get-AzureVMImageDetail; Assert-True { $imgs.Count -gt 0 }; $pubNameFilter = '*Microsoft.Compute*'; - $extimgs = Get-AzureVMImagePublisher -Location $locStr | where { $_.PublisherName -like $pubNameFilter } | Get-AzureVMExtensionImageType | Get-AzureVMExtensionImageVersion | Get-AzureVMExtensionImage; + $extimgs = Get-AzureVMImagePublisher -Location $locStr | where { $_.PublisherName -like $pubNameFilter } | Get-AzureVMExtensionImageType | Get-AzureVMExtensionImage | Get-AzureVMExtensionImageDetail; Assert-True { $extimgs.Count -gt 0 }; # Negative Tests @@ -326,24 +332,24 @@ function Test-VirtualMachineImageList Assert-ThrowsContains { $s2 = Get-AzureVMImageOffer -Location $locStr -PublisherName $publisherName; } "$publisherName was not found"; $offerName = Get-ComputeTestResourceName; - Assert-ThrowsContains { $s3 = Get-AzureVMImageSku -Location $locStr -PublisherName $publisherName -Offer $offerName; } "$offerName was not found"; + Assert-ThrowsContains { $s3 = Get-AzureVMImageSku -Location $locStr -PublisherName $publisherName -Offer $offerName; } "was not found"; $skusName = Get-ComputeTestResourceName; - Assert-ThrowsContains { $s4 = Get-AzureVMImageVersion -Location $locStr -PublisherName $publisherName -Offer $offerName -Skus $skusName; } "$skusName was not found"; + Assert-ThrowsContains { $s4 = Get-AzureVMImage -Location $locStr -PublisherName $publisherName -Offer $offerName -Skus $skusName; } "was not found"; $filter = "name eq 'latest'"; - Assert-ThrowsContains { $s5 = Get-AzureVMImageVersion -Location $locStr -PublisherName $publisherName -Offer $offerName -Skus $skusName -FilterExpression $filter; } "was not found"; + Assert-ThrowsContains { $s5 = Get-AzureVMImage -Location $locStr -PublisherName $publisherName -Offer $offerName -Skus $skusName -FilterExpression $filter; } "was not found"; $version = '1.0.0'; - Assert-ThrowsContains { $s6 = Get-AzureVMImage -Location $locStr -PublisherName $publisherName -Offer $offerName -Skus $skusName -Version $version; } "was not found"; + Assert-ThrowsContains { $s6 = Get-AzureVMImageDetail -Location $locStr -PublisherName $publisherName -Offer $offerName -Skus $skusName -Version $version; } "was not found"; # Extension Images $type = Get-ComputeTestResourceName; - Assert-ThrowsContains { $s7 = Get-AzureVMExtensionImage -Location $locStr -PublisherName $publisherName -Type $type -FilterExpression $filter -Version $version; } "was not found"; + Assert-ThrowsContains { $s7 = Get-AzureVMExtensionImageDetail -Location $locStr -PublisherName $publisherName -Type $type -FilterExpression $filter -Version $version; } "was not found"; Assert-ThrowsContains { $s8 = Get-AzureVMExtensionImageType -Location $locStr -PublisherName $publisherName; } "was not found"; - Assert-ThrowsContains { $s9 = Get-AzureVMExtensionImageVersion -Location $locStr -PublisherName $publisherName -Type $type -FilterExpression $filter; } "was not found"; + Assert-ThrowsContains { $s9 = Get-AzureVMExtensionImage -Location $locStr -PublisherName $publisherName -Type $type -FilterExpression $filter; } "was not found"; $passed = $true; } @@ -366,27 +372,18 @@ function Test-VirtualMachineSizeAndUsage try { # Common - $loc = 'West US'; + $loc = 'eastasia'; New-AzureResourceGroup -Name $rgname -Location $loc; - + # Availability Set $asetName = 'aset' + $rgname; New-AzureAvailabilitySet -ResourceGroupName $rgname -Name $asetName -Location $loc; - - $asets = Get-AzureAvailabilitySet -ResourceGroupName $rgname; - Assert-NotNull $asets; - Assert-AreEqual $asetName $asets[0].Name; - $aset = Get-AzureAvailabilitySet -ResourceGroupName $rgname -Name $asetName; - Assert-NotNull $aset; - Assert-AreEqual $asetName $aset.Name; - - $asetId = ('/subscriptions/' + (Get-AzureSubscription -Current).SubscriptionId + '/resourceGroups/' + $rgname + '/providers/Microsoft.Compute/availabilitySets/' + $asetName); # VM Profile & Hardware - $vmsize = 'Standard_A2'; + $vmsize = 'Standard_A1'; $vmname = 'vm' + $rgname; - $p = New-AzureVMConfig -VMName $vmname -VMSize $vmsize -AvailabilitySetId $asetId; + $p = New-AzureVMConfig -VMName $vmname -VMSize $vmsize -AvailabilitySetId $aset.Id; Assert-AreEqual $p.HardwareProfile.VirtualMachineSize $vmsize; # NRP @@ -447,31 +444,27 @@ function Test-VirtualMachineSizeAndUsage $vhdContainer = "https://$stoname.blob.core.windows.net/test"; $img = 'a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-Datacenter-201503.01-en.us-127GB.vhd'; - $p.StorageProfile.OSDisk = $null; + # $p.StorageProfile.OSDisk = $null; $p = Set-AzureVMOperatingSystem -VM $p -Windows -ComputerName $computerName -Credential $cred; - $p = Set-AzureVMSourceImage -VM $p -Name $img; Assert-AreEqual $p.OSProfile.AdminUsername $user; Assert-AreEqual $p.OSProfile.ComputerName $computerName; Assert-AreEqual $p.OSProfile.AdminPassword $password; - Assert-AreEqual $p.StorageProfile.SourceImage.ReferenceUri ('/' + (Get-AzureSubscription -Current).SubscriptionId + '/services/images/' + $img); - + + # Image Reference; + $p.StorageProfile.SourceImage = $null; + $imgRef = Get-DefaultCRPImage; + $p = Set-AzureVMSourceImage -VM $p -PublisherName $imgRef.PublisherName -Offer $imgRef.Offer -Skus $imgRef.Skus -Version $imgRef.Version; + Assert-NotNull $p.StorageProfile.ImageReference; + Assert-Null $p.StorageProfile.SourceImageId; + # TODO: Remove Data Disks for now $p.StorageProfile.DataDisks = $null; - # Create VM + # Virtual Machine + # TODO: Still need to do retry for New-AzureVM for SA, even it's returned in Get-. New-AzureVM -ResourceGroupName $rgname -Location $loc -Name $vmname -VM $p; - # Get VM - $vm1 = Get-AzureVM -Name $vmname -ResourceGroupName $rgname; - Assert-AreEqual $vm1.Name $vmname; - Assert-AreEqual $vm1.NetworkProfile.NetworkInterfaces.Count 1; - Assert-AreEqual $vm1.NetworkProfile.NetworkInterfaces[0].ReferenceUri $nicId; - Assert-AreEqual $vm1.StorageProfile.SourceImage.ReferenceUri ('/' + (Get-AzureSubscription -Current).SubscriptionId + '/services/images/' + $img); - Assert-AreEqual $vm1.OSProfile.AdminUsername $user; - Assert-AreEqual $vm1.OSProfile.ComputerName $computerName; - Assert-AreEqual $vm1.HardwareProfile.VirtualMachineSize $vmsize; - # Test Sizes $s1 = Get-AzureVMSize -Location ($loc -replace ' '); Assert-NotNull $s1; @@ -481,13 +474,14 @@ function Test-VirtualMachineSizeAndUsage Assert-NotNull $s2; Validate-VirtualMachineSize $vmsize $s2; + $asetName = $aset.Name; $s3 = Get-AzureVMSize -ResourceGroupName $rgname -AvailabilitySetName $asetName; Assert-NotNull $s3; Validate-VirtualMachineSize $vmsize $s3; # Test Usage $u1 = Get-AzureVMUsage -Location ($loc -replace ' '); - Validate-VirtualMachineUsage $u1.Usages; + Validate-VirtualMachineUsage $u1; $passed = $true; } @@ -537,7 +531,6 @@ function Validate-VirtualMachineUsage return $valid; } - <# .SYNOPSIS Test Virtual Machines with PIR v2 @@ -627,7 +620,9 @@ function Test-VirtualMachinePIRv2 # Image Reference; $p.StorageProfile.SourceImage = $null; $imgRef = Get-DefaultCRPImage; - $p = Set-AzureVMSourceImage -VM $p -ImageReference $imgRef; + $p = ($imgRef | Set-AzureVMSourceImage -VM $p); + Assert-NotNull $p.StorageProfile.ImageReference; + Assert-Null $p.StorageProfile.SourceImageId; # TODO: Remove Data Disks for now $p.StorageProfile.DataDisks = $null; @@ -637,7 +632,7 @@ function Test-VirtualMachinePIRv2 New-AzureVM -ResourceGroupName $rgname -Location $loc -Name $vmname -VM $p; # Remove - Remove-AzureVM -Name $vmname2 -ResourceGroupName $rgname -Force; + # Remove-AzureVM -ResourceGroupName $rgname -Name $vmname -Force; } finally { @@ -645,3 +640,368 @@ function Test-VirtualMachinePIRv2 Clean-ResourceGroup $rgname } } + +<# +.SYNOPSIS +Test Virtual Machines Capture +#> +function Test-VirtualMachineCapture +{ + # Setup + $rgname = Get-ComputeTestResourceName + + try + { + # Common + $loc = 'eastasia'; + New-AzureResourceGroup -Name $rgname -Location $loc; + + # VM Profile & Hardware + $vmsize = 'Standard_A4'; + $vmname = 'vm' + $rgname; + $p = New-AzureVMConfig -VMName $vmname -VMSize $vmsize; + Assert-AreEqual $p.HardwareProfile.VirtualMachineSize $vmsize; + + # NRP + $subnet = New-AzureVirtualNetworkSubnetConfig -Name ('subnet' + $rgname) -AddressPrefix "10.0.0.0/24"; + $vnet = New-AzureVirtualNetwork -Force -Name ('vnet' + $rgname) -ResourceGroupName $rgname -Location $loc -AddressPrefix "10.0.0.0/16" -DnsServer "10.1.1.1" -Subnet $subnet; + $vnet = Get-AzureVirtualNetwork -Name ('vnet' + $rgname) -ResourceGroupName $rgname; + $subnetId = $vnet.Subnets[0].Id; + $pubip = New-AzurePublicIpAddress -Force -Name ('pubip' + $rgname) -ResourceGroupName $rgname -Location $loc -AllocationMethod Dynamic -DomainNameLabel ('pubip' + $rgname); + $pubip = Get-AzurePublicIpAddress -Name ('pubip' + $rgname) -ResourceGroupName $rgname; + $pubipId = $pubip.Id; + $nic = New-AzureNetworkInterface -Force -Name ('nic' + $rgname) -ResourceGroupName $rgname -Location $loc -SubnetId $subnetId -PublicIpAddressId $pubip.Id; + $nic = Get-AzureNetworkInterface -Name ('nic' + $rgname) -ResourceGroupName $rgname; + $nicId = $nic.Id; + + $p = Add-AzureVMNetworkInterface -VM $p -Id $nicId; + Assert-AreEqual $p.NetworkProfile.NetworkInterfaces.Count 1; + Assert-AreEqual $p.NetworkProfile.NetworkInterfaces[0].ReferenceUri $nicId; + + # Storage Account (SA) + $stoname = 'sto' + $rgname; + $stotype = 'Standard_GRS'; + New-AzureStorageAccount -ResourceGroupName $rgname -Name $stoname -Location $loc -Type $stotype; + $stoaccount = Get-AzureStorageAccount -ResourceGroupName $rgname -Name $stoname; + + $osDiskName = 'osDisk'; + $osDiskCaching = 'ReadWrite'; + $osDiskVhdUri = "https://$stoname.blob.core.windows.net/test/os.vhd"; + $dataDiskVhdUri1 = "https://$stoname.blob.core.windows.net/test/data1.vhd"; + $dataDiskVhdUri2 = "https://$stoname.blob.core.windows.net/test/data2.vhd"; + $dataDiskVhdUri3 = "https://$stoname.blob.core.windows.net/test/data3.vhd"; + + $p = Set-AzureVMOSDisk -VM $p -Name $osDiskName -VhdUri $osDiskVhdUri -Caching $osDiskCaching -CreateOption FromImage; + + $p = Add-AzureVMDataDisk -VM $p -Name 'testDataDisk1' -Caching 'ReadOnly' -DiskSizeInGB 10 -Lun 1 -VhdUri $dataDiskVhdUri1 -CreateOption Empty; + $p = Add-AzureVMDataDisk -VM $p -Name 'testDataDisk2' -Caching 'ReadOnly' -DiskSizeInGB 11 -Lun 2 -VhdUri $dataDiskVhdUri2 -CreateOption Empty; + $p = Add-AzureVMDataDisk -VM $p -Name 'testDataDisk3' -Caching 'ReadOnly' -DiskSizeInGB 12 -Lun 3 -VhdUri $dataDiskVhdUri3 -CreateOption Empty; + $p = Remove-AzureVMDataDisk -VM $p -Name 'testDataDisk3'; + + Assert-AreEqual $p.StorageProfile.OSDisk.Caching $osDiskCaching; + Assert-AreEqual $p.StorageProfile.OSDisk.Name $osDiskName; + Assert-AreEqual $p.StorageProfile.OSDisk.VirtualHardDisk.Uri $osDiskVhdUri; + Assert-AreEqual $p.StorageProfile.DataDisks.Count 2; + Assert-AreEqual $p.StorageProfile.DataDisks[0].Caching 'ReadOnly'; + Assert-AreEqual $p.StorageProfile.DataDisks[0].DiskSizeGB 10; + Assert-AreEqual $p.StorageProfile.DataDisks[0].Lun 1; + Assert-AreEqual $p.StorageProfile.DataDisks[0].VirtualHardDisk.Uri $dataDiskVhdUri1; + Assert-AreEqual $p.StorageProfile.DataDisks[1].Caching 'ReadOnly'; + Assert-AreEqual $p.StorageProfile.DataDisks[1].DiskSizeGB 11; + Assert-AreEqual $p.StorageProfile.DataDisks[1].Lun 2; + Assert-AreEqual $p.StorageProfile.DataDisks[1].VirtualHardDisk.Uri $dataDiskVhdUri2; + + # OS & Image + $user = "Foo12"; + $password = 'BaR@123' + $rgname; + $securePassword = ConvertTo-SecureString $password -AsPlainText -Force; + $cred = New-Object System.Management.Automation.PSCredential ($user, $securePassword); + $computerName = 'test'; + $vhdContainer = "https://$stoname.blob.core.windows.net/test"; + $img = 'a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-Datacenter-201503.01-en.us-127GB.vhd'; + + # $p.StorageProfile.OSDisk = $null; + $p = Set-AzureVMOperatingSystem -VM $p -Windows -ComputerName $computerName -Credential $cred; + + Assert-AreEqual $p.OSProfile.AdminUsername $user; + Assert-AreEqual $p.OSProfile.ComputerName $computerName; + Assert-AreEqual $p.OSProfile.AdminPassword $password; + + # Image Reference; + $p.StorageProfile.SourceImage = $null; + $imgRef = Get-DefaultCRPImage; + $p = ($imgRef | Set-AzureVMSourceImage -VM $p); + + # TODO: Remove Data Disks for now + $p.StorageProfile.DataDisks = $null; + + # Virtual Machine + # TODO: Still need to do retry for New-AzureVM for SA, even it's returned in Get-. + New-AzureVM -ResourceGroupName $rgname -Location $loc -Name $vmname -VM $p; + + # Stop the VM before Capture + Stop-AzureVM -ResourceGroupName $rgname -Name $vmname -Force; + + Set-AzureVM -Generalize -ResourceGroupName $rgname -Name $vmname; + + $dest = Get-ComputeTestResourceName; + Save-AzureVMImage -ResourceGroupName $rgname -VMName $vmname -DestinationContainerName $dest -VHDNamePrefix 'pslib' -Overwrite; + + # Remove + Remove-AzureVM -ResourceGroupName $rgname -Name $vmname -Force; + } + finally + { + # Cleanup + Clean-ResourceGroup $rgname + } +} + +<# +.SYNOPSIS +Test Virtual Machines Data Disks +#> +function Test-VirtualMachineDataDisk +{ + # Setup + $rgname = Get-ComputeTestResourceName + + try + { + # Common + $loc = 'eastasia'; + New-AzureResourceGroup -Name $rgname -Location $loc; + + # VM Profile & Hardware + $vmsize = 'Standard_A0'; + $vmname = 'vm' + $rgname; + $p = New-AzureVMConfig -VMName $vmname -VMSize $vmsize; + # NRP + $subnet = New-AzureVirtualNetworkSubnetConfig -Name ('subnet' + $rgname) -AddressPrefix "10.0.0.0/24"; + $vnet = New-AzureVirtualNetwork -Force -Name ('vnet' + $rgname) -ResourceGroupName $rgname -Location $loc -AddressPrefix "10.0.0.0/16" -DnsServer "10.1.1.1" -Subnet $subnet; + $vnet = Get-AzureVirtualNetwork -Name ('vnet' + $rgname) -ResourceGroupName $rgname; + $subnetId = $vnet.Subnets[0].Id; + $pubip = New-AzurePublicIpAddress -Force -Name ('pubip' + $rgname) -ResourceGroupName $rgname -Location $loc -AllocationMethod Dynamic -DomainNameLabel ('pubip' + $rgname); + $pubip = Get-AzurePublicIpAddress -Name ('pubip' + $rgname) -ResourceGroupName $rgname; + $pubipId = $pubip.Id; + $nic = New-AzureNetworkInterface -Force -Name ('nic' + $rgname) -ResourceGroupName $rgname -Location $loc -SubnetId $subnetId -PublicIpAddressId $pubip.Id; + $nic = Get-AzureNetworkInterface -Name ('nic' + $rgname) -ResourceGroupName $rgname; + $nicId = $nic.Id; + + $p = Add-AzureVMNetworkInterface -VM $p -Id $nicId; + + # Storage Account (SA) + $stoname = 'sto' + $rgname; + $stotype = 'Standard_GRS'; + New-AzureStorageAccount -ResourceGroupName $rgname -Name $stoname -Location $loc -Type $stotype; + $stoaccount = Get-AzureStorageAccount -ResourceGroupName $rgname -Name $stoname; + + $osDiskName = 'osDisk'; + $osDiskCaching = 'ReadWrite'; + $osDiskVhdUri = "https://$stoname.blob.core.windows.net/test/os.vhd"; + $dataDiskVhdUri1 = "https://$stoname.blob.core.windows.net/test/data1.vhd"; + $dataDiskVhdUri2 = "https://$stoname.blob.core.windows.net/test/data2.vhd"; + $dataDiskVhdUri3 = "https://$stoname.blob.core.windows.net/test/data3.vhd"; + + $p = Set-AzureVMOSDisk -VM $p -Name $osDiskName -VhdUri $osDiskVhdUri -Caching $osDiskCaching -CreateOption FromImage; + + $p = Add-AzureVMDataDisk -VM $p -Name 'testDataDisk1' -Caching 'ReadOnly' -DiskSizeInGB 10 -Lun 1 -VhdUri $dataDiskVhdUri1 -CreateOption Empty; + $p = Add-AzureVMDataDisk -VM $p -Name 'testDataDisk2' -Caching 'ReadOnly' -DiskSizeInGB 11 -Lun 2 -VhdUri $dataDiskVhdUri2 -CreateOption Empty; + $p = Add-AzureVMDataDisk -VM $p -Name 'testDataDisk3' -Caching 'ReadOnly' -DiskSizeInGB 12 -Lun 3 -VhdUri $dataDiskVhdUri3 -CreateOption Empty; + $p = Remove-AzureVMDataDisk -VM $p -Name 'testDataDisk3'; + + # OS & Image + $user = "Foo12"; + $password = 'BaR@123' + $rgname; + $securePassword = ConvertTo-SecureString $password -AsPlainText -Force; + $cred = New-Object System.Management.Automation.PSCredential ($user, $securePassword); + $computerName = 'test'; + $vhdContainer = "https://$stoname.blob.core.windows.net/test"; + $img = 'a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-Datacenter-201503.01-en.us-127GB.vhd'; + + # $p.StorageProfile.OSDisk = $null; + $p = Set-AzureVMOperatingSystem -VM $p -Windows -ComputerName $computerName -Credential $cred; + + # Image Reference; + $p.StorageProfile.SourceImage = $null; + $imgRef = Get-DefaultCRPImage; + $p = ($imgRef | Set-AzureVMSourceImage -VM $p); + + # Negative Tests on A0 Size + 2 Data Disks + Assert-ThrowsContains { New-AzureVM -ResourceGroupName $rgname -Location $loc -Name $vmname -VM $p; } "The maximum number of data disks allowed to be attached to a VM is 1."; + } + finally + { + # Cleanup + Clean-ResourceGroup $rgname + } +} + + +<# +.SYNOPSIS +Test Virtual Machines Plan +#> +function Test-VirtualMachinePlan +{ + # Setup + $rgname = Get-ComputeTestResourceName + + try + { + # Common + $loc = 'eastasia'; + New-AzureResourceGroup -Name $rgname -Location $loc; + + # VM Profile & Hardware + $vmsize = 'Standard_A0'; + $vmname = 'vm' + $rgname; + $p = New-AzureVMConfig -VMName $vmname -VMSize $vmsize; + # NRP + $subnet = New-AzureVirtualNetworkSubnetConfig -Name ('subnet' + $rgname) -AddressPrefix "10.0.0.0/24"; + $vnet = New-AzureVirtualNetwork -Force -Name ('vnet' + $rgname) -ResourceGroupName $rgname -Location $loc -AddressPrefix "10.0.0.0/16" -DnsServer "10.1.1.1" -Subnet $subnet; + $vnet = Get-AzureVirtualNetwork -Name ('vnet' + $rgname) -ResourceGroupName $rgname; + $subnetId = $vnet.Subnets[0].Id; + $pubip = New-AzurePublicIpAddress -Force -Name ('pubip' + $rgname) -ResourceGroupName $rgname -Location $loc -AllocationMethod Dynamic -DomainNameLabel ('pubip' + $rgname); + $pubip = Get-AzurePublicIpAddress -Name ('pubip' + $rgname) -ResourceGroupName $rgname; + $pubipId = $pubip.Id; + $nic = New-AzureNetworkInterface -Force -Name ('nic' + $rgname) -ResourceGroupName $rgname -Location $loc -SubnetId $subnetId -PublicIpAddressId $pubip.Id; + $nic = Get-AzureNetworkInterface -Name ('nic' + $rgname) -ResourceGroupName $rgname; + $nicId = $nic.Id; + + $p = Add-AzureVMNetworkInterface -VM $p -Id $nicId; + + # Storage Account (SA) + $stoname = 'sto' + $rgname; + $stotype = 'Standard_GRS'; + New-AzureStorageAccount -ResourceGroupName $rgname -Name $stoname -Location $loc -Type $stotype; + $stoaccount = Get-AzureStorageAccount -ResourceGroupName $rgname -Name $stoname; + + $osDiskName = 'osDisk'; + $osDiskCaching = 'ReadWrite'; + $osDiskVhdUri = "https://$stoname.blob.core.windows.net/test/os.vhd"; + $dataDiskVhdUri1 = "https://$stoname.blob.core.windows.net/test/data1.vhd"; + $dataDiskVhdUri2 = "https://$stoname.blob.core.windows.net/test/data2.vhd"; + $dataDiskVhdUri3 = "https://$stoname.blob.core.windows.net/test/data3.vhd"; + + $p = Set-AzureVMOSDisk -VM $p -Name $osDiskName -VhdUri $osDiskVhdUri -Caching $osDiskCaching -CreateOption FromImage; + + # OS & Image + $user = "Foo12"; + $password = 'BaR@123' + $rgname; + $securePassword = ConvertTo-SecureString $password -AsPlainText -Force; + $cred = New-Object System.Management.Automation.PSCredential ($user, $securePassword); + $computerName = 'test'; + $vhdContainer = "https://$stoname.blob.core.windows.net/test"; + $img = 'a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-Datacenter-201503.01-en.us-127GB.vhd'; + + # $p.StorageProfile.OSDisk = $null; + $p = Set-AzureVMOperatingSystem -VM $p -Windows -ComputerName $computerName -Credential $cred; + + # Image Reference; + $p.StorageProfile.SourceImage = $null; + $imgRef = Get-DefaultCRPImage; + $p = ($imgRef | Set-AzureVMSourceImage -VM $p); + + $plan = Get-ComputeTestResourceName; + $p.Plan = New-Object Microsoft.Azure.Management.Compute.Models.Plan; + $p.Plan.Name = $plan; + $p.Plan.Publisher = $plan; + $p.Plan.Product = $plan; + $p.Plan.PromotionCode = $plan; + + # Negative Tests on non-existing Plan + Assert-ThrowsContains { New-AzureVM -ResourceGroupName $rgname -Location $loc -Name $vmname -VM $p; } "User failed validation to purchase resources"; + } + finally + { + # Cleanup + Clean-ResourceGroup $rgname + } +} + + + +<# +.SYNOPSIS +Test Virtual Machines Plan 2 +#> +function Test-VirtualMachinePlan2 +{ + # Setup + $rgname = Get-ComputeTestResourceName + + try + { + # Common + $loc = 'eastasia'; + New-AzureResourceGroup -Name $rgname -Location $loc; + + # VM Profile & Hardware + $vmsize = 'Standard_A0'; + $vmname = 'vm' + $rgname; + $p = New-AzureVMConfig -VMName $vmname -VMSize $vmsize; + # NRP + $subnet = New-AzureVirtualNetworkSubnetConfig -Name ('subnet' + $rgname) -AddressPrefix "10.0.0.0/24"; + $vnet = New-AzureVirtualNetwork -Force -Name ('vnet' + $rgname) -ResourceGroupName $rgname -Location $loc -AddressPrefix "10.0.0.0/16" -DnsServer "10.1.1.1" -Subnet $subnet; + $vnet = Get-AzureVirtualNetwork -Name ('vnet' + $rgname) -ResourceGroupName $rgname; + $subnetId = $vnet.Subnets[0].Id; + $pubip = New-AzurePublicIpAddress -Force -Name ('pubip' + $rgname) -ResourceGroupName $rgname -Location $loc -AllocationMethod Dynamic -DomainNameLabel ('pubip' + $rgname); + $pubip = Get-AzurePublicIpAddress -Name ('pubip' + $rgname) -ResourceGroupName $rgname; + $pubipId = $pubip.Id; + $nic = New-AzureNetworkInterface -Force -Name ('nic' + $rgname) -ResourceGroupName $rgname -Location $loc -SubnetId $subnetId -PublicIpAddressId $pubip.Id; + $nic = Get-AzureNetworkInterface -Name ('nic' + $rgname) -ResourceGroupName $rgname; + $nicId = $nic.Id; + + $p = Add-AzureVMNetworkInterface -VM $p -Id $nicId; + + # Storage Account (SA) + $stoname = 'sto' + $rgname; + $stotype = 'Standard_GRS'; + New-AzureStorageAccount -ResourceGroupName $rgname -Name $stoname -Location $loc -Type $stotype; + $stoaccount = Get-AzureStorageAccount -ResourceGroupName $rgname -Name $stoname; + + $osDiskName = 'osDisk'; + $osDiskCaching = 'ReadWrite'; + $osDiskVhdUri = "https://$stoname.blob.core.windows.net/test/os.vhd"; + + $p = Set-AzureVMOSDisk -VM $p -Name $osDiskName -VhdUri $osDiskVhdUri -Caching $osDiskCaching -CreateOption FromImage; + + # OS & Image + $user = "Foo12"; + $password = 'BaR@123' + $rgname; + $securePassword = ConvertTo-SecureString $password -AsPlainText -Force; + $cred = New-Object System.Management.Automation.PSCredential ($user, $securePassword); + $computerName = 'test'; + $vhdContainer = "https://$stoname.blob.core.windows.net/test"; + $img = 'a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-Datacenter-201503.01-en.us-127GB.vhd'; + + # $p.StorageProfile.OSDisk = $null; + $p = Set-AzureVMOperatingSystem -VM $p -Windows -ComputerName $computerName -Credential $cred; + + # Image Reference + $p.StorageProfile.SourceImage = $null; + + # Pick a VMM Image + $vmmImgPubName = 'a10networks'; + $vmmImgOfferName = 'a10-vthunder-adc'; + $vmmImgSkusName = 'vthunder_byol'; + $vmmImgVerName = '1.0.0'; + $imgRef = Get-AzureVMImageDetail -PublisherName $vmmImgPubName -Location $loc -Offer $vmmImgOfferName -Skus $vmmImgSkusName -Version $vmmImgVerName; + $plan = $imgRef.PurchasePlan; + $p = Set-AzureVMSourceImage -VM $p -PublisherName $imgRef.PublisherName -Offer $imgRef.Offer -Skus $imgRef.Skus -Version $imgRef.Version; + $p.Plan = New-Object Microsoft.Azure.Management.Compute.Models.Plan; + $p.Plan.Name = $plan.Name; + $p.Plan.Publisher = $plan.Publisher; + $p.Plan.Product = $plan.Product; + $p.Plan.PromotionCode = $null; + $p.OSProfile.WindowsConfiguration = $null; + + New-AzureVM -ResourceGroupName $rgname -Location $loc -Name $vmname -VM $p; + } + finally + { + # Cleanup + Clean-ResourceGroup $rgname + } +} \ No newline at end of file diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineExtensionTests/TestVirtualMachineAccessExtension.json b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineExtensionTests/TestVirtualMachineAccessExtension.json new file mode 100644 index 000000000000..e32faae82039 --- /dev/null +++ b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineExtensionTests/TestVirtualMachineAccessExtension.json @@ -0,0 +1,5631 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/pstestrg3690?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnMzY5MD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "104" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31936" + ], + "x-ms-request-id": [ + "580cd22b-0bd2-47b6-8f55-6479f73dc3d7" + ], + "x-ms-correlation-request-id": [ + "580cd22b-0bd2-47b6-8f55-6479f73dc3d7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T100512Z:580cd22b-0bd2-47b6-8f55-6479f73dc3d7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 10:05:12 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/pstestrg3690?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnMzY5MD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31999" + ], + "x-ms-request-id": [ + "8e536808-27c8-4666-83d0-bac9b2b22b10" + ], + "x-ms-correlation-request-id": [ + "8e536808-27c8-4666-83d0-bac9b2b22b10" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T102509Z:8e536808-27c8-4666-83d0-bac9b2b22b10" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 10:25:09 GMT" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/pstestrg3690?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnMzY5MD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"East Asia\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "31" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690\",\r\n \"name\": \"pstestrg3690\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "179" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-request-id": [ + "6aea95c6-62a5-46b6-b41f-a197afa720c9" + ], + "x-ms-correlation-request-id": [ + "6aea95c6-62a5-46b6-b41f-a197afa720c9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T100514Z:6aea95c6-62a5-46b6-b41f-a197afa720c9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 10:05:13 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzY5MC9yZXNvdXJjZXM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31935" + ], + "x-ms-request-id": [ + "5fea3a7c-5c00-46c1-b0fe-22cdcaea6ce8" + ], + "x-ms-correlation-request-id": [ + "5fea3a7c-5c00-46c1-b0fe-22cdcaea6ce8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T100514Z:5fea3a7c-5c00-46c1-b0fe-22cdcaea6ce8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 10:05:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/pstestrg3690/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnMzY5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcGVybWlzc2lvbnM/YXBpLXZlcnNpb249MjAxNC0wNy0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "45" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:f2dada49-021e-44c3-8ea5-7a4417a6856c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31987" + ], + "x-ms-correlation-request-id": [ + "79c09a6e-4280-49f9-ac2d-f2c50aae42da" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T100514Z:79c09a6e-4280-49f9-ac2d-f2c50aae42da" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 10:05:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Network/virtualnetworks/vnetpstestrg3690?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzY5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzM2OTA/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "69" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "281399db-b826-461d-a6c4-8a3e5555bfa3" + ], + "x-ms-correlation-request-id": [ + "281399db-b826-461d-a6c4-8a3e5555bfa3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T100515Z:281399db-b826-461d-a6c4-8a3e5555bfa3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 10:05:15 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Network/virtualnetworks/vnetpstestrg3690?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzY5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzM2OTA/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vnetpstestrg3690\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Network/virtualNetworks/vnetpstestrg3690\",\r\n \"etag\": \"W/\\\"d06f92e2-e65c-4d9d-a2d5-68c0ad9332eb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\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 \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg3690\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Network/virtualNetworks/vnetpstestrg3690/subnets/subnetpstestrg3690\",\r\n \"etag\": \"W/\\\"d06f92e2-e65c-4d9d-a2d5-68c0ad9332eb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"East Asia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "963" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ef71efa3-d3ac-42d4-a143-c67776007ae0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"d06f92e2-e65c-4d9d-a2d5-68c0ad9332eb\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31993" + ], + "x-ms-correlation-request-id": [ + "5a31b548-1e22-4c5f-89a0-12df4df01b69" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T100522Z:5a31b548-1e22-4c5f-89a0-12df4df01b69" + ], + "Date": [ + "Wed, 22 Apr 2015 10:05:21 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Network/virtualnetworks/vnetpstestrg3690?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzY5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzM2OTA/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vnetpstestrg3690\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Network/virtualNetworks/vnetpstestrg3690\",\r\n \"etag\": \"W/\\\"d06f92e2-e65c-4d9d-a2d5-68c0ad9332eb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\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 \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg3690\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Network/virtualNetworks/vnetpstestrg3690/subnets/subnetpstestrg3690\",\r\n \"etag\": \"W/\\\"d06f92e2-e65c-4d9d-a2d5-68c0ad9332eb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"East Asia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "963" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "1fd62a73-41b1-4096-9040-9398a9545ce0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"d06f92e2-e65c-4d9d-a2d5-68c0ad9332eb\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31992" + ], + "x-ms-correlation-request-id": [ + "ab81965a-7ff4-4d80-b8b4-861d32f21660" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T100522Z:ab81965a-7ff4-4d80-b8b4-861d32f21660" + ], + "Date": [ + "Wed, 22 Apr 2015 10:05:22 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Network/virtualnetworks/vnetpstestrg3690?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzY5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzM2OTA/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "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 \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": []\r\n },\r\n \"name\": \"subnetpstestrg3690\"\r\n }\r\n ]\r\n },\r\n \"name\": \"vnetpstestrg3690\",\r\n \"type\": \"microsoft.network/virtualNetworks\",\r\n \"location\": \"East Asia\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "503" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vnetpstestrg3690\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Network/virtualNetworks/vnetpstestrg3690\",\r\n \"etag\": \"W/\\\"16a8d26c-13c0-4abd-8fab-6a23f8e1b9ab\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\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 \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg3690\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Network/virtualNetworks/vnetpstestrg3690/subnets/subnetpstestrg3690\",\r\n \"etag\": \"W/\\\"16a8d26c-13c0-4abd-8fab-6a23f8e1b9ab\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"East Asia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "961" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "32e653df-02e1-46e5-ae8e-22e9d0f8ff0f" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/eastasia/operations/32e653df-02e1-46e5-ae8e-22e9d0f8ff0f?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "437635ef-39d6-4236-859d-730c401e9d0a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T100521Z:437635ef-39d6-4236-859d-730c401e9d0a" + ], + "Date": [ + "Wed, 22 Apr 2015 10:05:20 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/eastasia/operations/32e653df-02e1-46e5-ae8e-22e9d0f8ff0f?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy8zMmU2NTNkZi0wMmUxLTQ2ZTUtYWU4ZS0yMmU5ZDBmOGZmMGY/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-05-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a329cd8c-d076-45a9-a65b-ab52dc799341" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31994" + ], + "x-ms-correlation-request-id": [ + "b2b63c66-6e68-4f77-be6c-d73e6263d1c7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T100521Z:b2b63c66-6e68-4f77-be6c-d73e6263d1c7" + ], + "Date": [ + "Wed, 22 Apr 2015 10:05:21 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Network/publicIPAddresses/pubippstestrg3690/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzY5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHViaXBwc3Rlc3RyZzM2OTAvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "69" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "fcd0055d-a970-4443-9455-aa93edea771e" + ], + "x-ms-correlation-request-id": [ + "fcd0055d-a970-4443-9455-aa93edea771e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T100522Z:fcd0055d-a970-4443-9455-aa93edea771e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 10:05:22 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Network/publicIPAddresses/pubippstestrg3690/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzY5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHViaXBwc3Rlc3RyZzM2OTAvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pubippstestrg3690\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Network/publicIPAddresses/pubippstestrg3690\",\r\n \"etag\": \"W/\\\"d183b710-8317-4c3d-81ec-6d057ba0440f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubippstestrg3690\",\r\n \"fqdn\": \"pubippstestrg3690.eastasia.cloudapp.azure.com.\"\r\n }\r\n },\r\n \"location\": \"East Asia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "556" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "3bddc230-bc9d-4c13-aa6a-9490b91d58f0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"d183b710-8317-4c3d-81ec-6d057ba0440f\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31989" + ], + "x-ms-correlation-request-id": [ + "1df66e25-e156-4707-b3b7-031064e3a160" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T100529Z:1df66e25-e156-4707-b3b7-031064e3a160" + ], + "Date": [ + "Wed, 22 Apr 2015 10:05:28 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Network/publicIPAddresses/pubippstestrg3690/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzY5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHViaXBwc3Rlc3RyZzM2OTAvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pubippstestrg3690\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Network/publicIPAddresses/pubippstestrg3690\",\r\n \"etag\": \"W/\\\"d183b710-8317-4c3d-81ec-6d057ba0440f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubippstestrg3690\",\r\n \"fqdn\": \"pubippstestrg3690.eastasia.cloudapp.azure.com.\"\r\n }\r\n },\r\n \"location\": \"East Asia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "556" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "2185fb21-b4ab-4e73-8487-7fc40d91dbad" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"d183b710-8317-4c3d-81ec-6d057ba0440f\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31988" + ], + "x-ms-correlation-request-id": [ + "d3588eca-df07-49f3-9718-9b72e35f0077" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T100529Z:d3588eca-df07-49f3-9718-9b72e35f0077" + ], + "Date": [ + "Wed, 22 Apr 2015 10:05:28 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Network/publicIPAddresses/pubippstestrg3690/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzY5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHViaXBwc3Rlc3RyZzM2OTAvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubippstestrg3690\"\r\n }\r\n },\r\n \"name\": \"pubippstestrg3690\",\r\n \"type\": \"microsoft.network/publicIPAddresses\",\r\n \"location\": \"East Asia\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "257" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pubippstestrg3690\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Network/publicIPAddresses/pubippstestrg3690\",\r\n \"etag\": \"W/\\\"cdb4c220-abb8-48a2-8b87-38d7da99197e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubippstestrg3690\",\r\n \"fqdn\": \"pubippstestrg3690.eastasia.cloudapp.azure.com.\"\r\n }\r\n },\r\n \"location\": \"East Asia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "555" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "026ff67a-598d-4283-925c-700e0f9093ec" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/eastasia/operations/026ff67a-598d-4283-925c-700e0f9093ec?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "84dfc670-9384-4e4d-9cff-16ffa28de65b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T100528Z:84dfc670-9384-4e4d-9cff-16ffa28de65b" + ], + "Date": [ + "Wed, 22 Apr 2015 10:05:27 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/eastasia/operations/026ff67a-598d-4283-925c-700e0f9093ec?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy8wMjZmZjY3YS01OThkLTQyODMtOTI1Yy03MDBlMGY5MDkzZWM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-05-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "db915db2-f2f3-4773-ba42-8bd6bd02520e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31990" + ], + "x-ms-correlation-request-id": [ + "1c386474-cb6d-479d-955c-690a278ca3ec" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T100528Z:1c386474-cb6d-479d-955c-690a278ca3ec" + ], + "Date": [ + "Wed, 22 Apr 2015 10:05:28 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Network/networkInterfaces/nicpstestrg3690?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzY5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljcHN0ZXN0cmczNjkwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "69" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "98a2ee48-75a6-4014-9635-52218f3f5182" + ], + "x-ms-correlation-request-id": [ + "98a2ee48-75a6-4014-9635-52218f3f5182" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T100529Z:98a2ee48-75a6-4014-9635-52218f3f5182" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 10:05:28 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Network/networkInterfaces/nicpstestrg3690?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzY5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljcHN0ZXN0cmczNjkwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"nicpstestrg3690\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Network/networkInterfaces/nicpstestrg3690\",\r\n \"etag\": \"W/\\\"cc1da9d9-6c92-4a13-a4bd-d66c8187f357\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Network/networkInterfaces/nicpstestrg3690/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"cc1da9d9-6c92-4a13-a4bd-d66c8187f357\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Network/publicIPAddresses/pubippstestrg3690\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Network/virtualNetworks/vnetpstestrg3690/subnets/subnetpstestrg3690\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"East Asia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1303" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "23e409dd-7f36-4eda-a043-ab533f0316bd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"cc1da9d9-6c92-4a13-a4bd-d66c8187f357\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31985" + ], + "x-ms-correlation-request-id": [ + "2245a138-e444-43d6-93a0-94f215658f58" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T100534Z:2245a138-e444-43d6-93a0-94f215658f58" + ], + "Date": [ + "Wed, 22 Apr 2015 10:05:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Network/networkInterfaces/nicpstestrg3690?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzY5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljcHN0ZXN0cmczNjkwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"nicpstestrg3690\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Network/networkInterfaces/nicpstestrg3690\",\r\n \"etag\": \"W/\\\"cc1da9d9-6c92-4a13-a4bd-d66c8187f357\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Network/networkInterfaces/nicpstestrg3690/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"cc1da9d9-6c92-4a13-a4bd-d66c8187f357\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Network/publicIPAddresses/pubippstestrg3690\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Network/virtualNetworks/vnetpstestrg3690/subnets/subnetpstestrg3690\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"East Asia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1303" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "3b49ef24-f313-4695-b2c2-2eda813296f3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"cc1da9d9-6c92-4a13-a4bd-d66c8187f357\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31984" + ], + "x-ms-correlation-request-id": [ + "c573dddb-3efc-4683-b44a-02b99ca5c9e4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T100534Z:c573dddb-3efc-4683-b44a-02b99ca5c9e4" + ], + "Date": [ + "Wed, 22 Apr 2015 10:05:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Network/networkInterfaces/nicpstestrg3690?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzY5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljcHN0ZXN0cmczNjkwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Network/virtualNetworks/vnetpstestrg3690/subnets/subnetpstestrg3690\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Network/publicIPAddresses/pubippstestrg3690\"\r\n },\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": []\r\n },\r\n \"name\": \"ipconfig1\"\r\n }\r\n ],\r\n \"primary\": false\r\n },\r\n \"name\": \"nicpstestrg3690\",\r\n \"type\": \"microsoft.network/networkInterfaces\",\r\n \"location\": \"East Asia\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "860" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"nicpstestrg3690\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Network/networkInterfaces/nicpstestrg3690\",\r\n \"etag\": \"W/\\\"cc1da9d9-6c92-4a13-a4bd-d66c8187f357\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Network/networkInterfaces/nicpstestrg3690/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"cc1da9d9-6c92-4a13-a4bd-d66c8187f357\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Network/publicIPAddresses/pubippstestrg3690\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Network/virtualNetworks/vnetpstestrg3690/subnets/subnetpstestrg3690\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"East Asia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1303" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "a0e94f10-d459-494b-8ce7-c6e1bb9c7f91" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/eastasia/operations/a0e94f10-d459-494b-8ce7-c6e1bb9c7f91?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "aaa9616a-5be9-4e8a-8ffd-9a0c182d375c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T100533Z:aaa9616a-5be9-4e8a-8ffd-9a0c182d375c" + ], + "Date": [ + "Wed, 22 Apr 2015 10:05:33 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/eastasia/operations/a0e94f10-d459-494b-8ce7-c6e1bb9c7f91?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9hMGU5NGYxMC1kNDU5LTQ5NGItOGNlNy1jNmUxYmI5YzdmOTE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-05-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "0e1be1ad-d029-4b12-ad31-f51f21543910" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31986" + ], + "x-ms-correlation-request-id": [ + "53a97361-aed9-44b4-a9a0-1e7499027b09" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T100534Z:53a97361-aed9-44b4-a9a0-1e7499027b09" + ], + "Date": [ + "Wed, 22 Apr 2015 10:05:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Storage/storageAccounts/stopstestrg3690?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzY5MC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMzY5MD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"East Asia\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "91" + ], + "x-ms-client-request-id": [ + "1962d9be-efbf-44c3-a7cd-718d567c0de0" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "25" + ], + "x-ms-request-id": [ + "3c768198-d1f0-4eec-81aa-9451fdb20b0d" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/3c768198-d1f0-4eec-81aa-9451fdb20b0d?monitor=true&api-version=2015-05-01-preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "3e97fb97-616a-4ba4-9cca-5d8d7444be5c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T100541Z:3e97fb97-616a-4ba4-9cca-5d8d7444be5c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Wed, 22 Apr 2015 10:05:41 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/3c768198-d1f0-4eec-81aa-9451fdb20b0d?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzNjNzY4MTk4LWQxZjAtNGVlYy04MWFhLTk0NTFmZGIyMGIwZD9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6155948c-ef09-4aaa-b62a-a0603cab6cd6" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "25" + ], + "x-ms-request-id": [ + "8f0070b7-2072-4e58-a88b-7c5daaa787ee" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/3c768198-d1f0-4eec-81aa-9451fdb20b0d?monitor=true&api-version=2015-05-01-preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31934" + ], + "x-ms-correlation-request-id": [ + "0e86757a-a8b5-4881-af00-317e75463246" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T100542Z:0e86757a-a8b5-4881-af00-317e75463246" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Wed, 22 Apr 2015 10:05:42 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/3c768198-d1f0-4eec-81aa-9451fdb20b0d?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzNjNzY4MTk4LWQxZjAtNGVlYy04MWFhLTk0NTFmZGIyMGIwZD9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f2f96a97-dc47-42d6-8802-32360601549e" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n },\r\n \"location\": \"East Asia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "68" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "06c2545b-3fd9-4eb4-a4da-713e1ded655d" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31933" + ], + "x-ms-correlation-request-id": [ + "a0b97d46-6de9-497d-bae7-87704d745507" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T100607Z:a0b97d46-6de9-497d-bae7-87704d745507" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Wed, 22 Apr 2015 10:06:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Storage/storageAccounts/stopstestrg3690?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzY5MC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMzY5MD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bb62f01a-4adc-4def-be9a-ef1a0f0c4e8f" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Storage/storageAccounts/stopstestrg3690\",\r\n \"name\": \"stopstestrg3690\",\r\n \"location\": \"East Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stopstestrg3690.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg3690.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg3690.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"East Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"Southeast Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-04-22T10:05:39.493588Z\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "683" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "6f1bde42-a17d-4a8f-a8c5-941df16aacfb" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31932" + ], + "x-ms-correlation-request-id": [ + "c9a514fc-bc47-4fcf-8939-306b277d1e52" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T100608Z:c9a514fc-bc47-4fcf-8939-306b277d1e52" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Wed, 22 Apr 2015 10:06:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Storage/storageAccounts/stopstestrg3690?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzY5MC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMzY5MD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "614629f1-0a36-445e-b9f6-c6854ac2216d" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Storage/storageAccounts/stopstestrg3690\",\r\n \"name\": \"stopstestrg3690\",\r\n \"location\": \"East Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stopstestrg3690.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg3690.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg3690.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"East Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"Southeast Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-04-22T10:05:39.493588Z\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "683" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "73010f0b-5273-4170-b7cd-281564e01e16" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31931" + ], + "x-ms-correlation-request-id": [ + "c48155c9-96c3-4fe5-b417-8e644b4bf8f1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T100608Z:c48155c9-96c3-4fe5-b417-8e644b4bf8f1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Wed, 22 Apr 2015 10:06:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Storage/storageAccounts/stopstestrg3690/listKeys?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzY5MC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMzY5MC9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "989dc5a7-7596-4b96-b9e1-7350cf731f96" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"key1\": \"Y7GcPbFQgRM80XtfPT2EOthW0CISRFh7i+StgssOM2uDcUtgWMpQc+lF5fe0dgJO/UL2tSc0XPsbiAuB+stkDg==\",\r\n \"key2\": \"ESBSPUgIVFy7YcO9HAe1XtQW1oeZU7+v81G4gl0j0UCcDwGqmZK1bQLK+zJVfzPh7bqBzuKHjTOQrdawXMvWew==\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "7ee79d09-9f6d-46a4-bff2-402360695c00" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "1ecd9996-8677-4015-82a0-d34bad0e58ac" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T100608Z:1ecd9996-8677-4015-82a0-d34bad0e58ac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Wed, 22 Apr 2015 10:06:08 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Compute/virtualMachines/vmpstestrg3690?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzY5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtcHN0ZXN0cmczNjkwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"sourceImage\": {\r\n \"id\": \"/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/services/images/a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-Datacenter-201503.01-en.us-127GB.vhd\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"osDisk\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg3690.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"createOption\": \"FromImage\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"testDataDisk1\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg3690.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"createOption\": \"Empty\"\r\n },\r\n {\r\n \"lun\": 2,\r\n \"diskSizeGB\": 11,\r\n \"name\": \"testDataDisk2\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg3690.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"createOption\": \"Empty\"\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123pstestrg3690\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true\r\n }\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Network/networkInterfaces/nicpstestrg3690\"\r\n }\r\n ]\r\n }\r\n },\r\n \"name\": \"vmpstestrg3690\",\r\n \"location\": \"East Asia\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "1746" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"sourceImage\": {\r\n \"id\": \"/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/services/images/a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-Datacenter-201503.01-en.us-127GB.vhd\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg3690.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg3690.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\"\r\n },\r\n {\r\n \"lun\": 2,\r\n \"diskSizeGB\": 11,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg3690.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\"\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Network/networkInterfaces/nicpstestrg3690\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Compute/virtualMachines/vmpstestrg3690\",\r\n \"name\": \"vmpstestrg3690\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {}\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/536dafea-2c00-482a-96de-b13465920ce3?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "536dafea-2c00-482a-96de-b13465920ce3" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "ebf02364-e4df-4f03-958b-ae760dc36439" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T100619Z:ebf02364-e4df-4f03-958b-ae760dc36439" + ], + "Date": [ + "Wed, 22 Apr 2015 10:06:19 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/536dafea-2c00-482a-96de-b13465920ce3?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy81MzZkYWZlYS0yYzAwLTQ4MmEtOTZkZS1iMTM0NjU5MjBjZTM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"536dafea-2c00-482a-96de-b13465920ce3\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T03:06:13.4643678-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "fc78aba7-4dbf-4d4f-91a4-13388689d2f2" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31997" + ], + "x-ms-correlation-request-id": [ + "727b8fc1-2e12-47b4-b7ce-3ba68d81c1cb" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T100620Z:727b8fc1-2e12-47b4-b7ce-3ba68d81c1cb" + ], + "Date": [ + "Wed, 22 Apr 2015 10:06:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/536dafea-2c00-482a-96de-b13465920ce3?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy81MzZkYWZlYS0yYzAwLTQ4MmEtOTZkZS1iMTM0NjU5MjBjZTM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"536dafea-2c00-482a-96de-b13465920ce3\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T03:06:13.4643678-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "4d4bfaa2-528f-4671-a3be-d15c1fdac54e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31996" + ], + "x-ms-correlation-request-id": [ + "05ad06dd-08e2-415c-bc48-c2a71c31be30" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T100650Z:05ad06dd-08e2-415c-bc48-c2a71c31be30" + ], + "Date": [ + "Wed, 22 Apr 2015 10:06:50 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/536dafea-2c00-482a-96de-b13465920ce3?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy81MzZkYWZlYS0yYzAwLTQ4MmEtOTZkZS1iMTM0NjU5MjBjZTM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"536dafea-2c00-482a-96de-b13465920ce3\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T03:06:13.4643678-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "9d72ff20-7823-43ca-9980-d85b10cc4ada" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31995" + ], + "x-ms-correlation-request-id": [ + "34737c55-3fed-4dfe-a7ca-556030ef0c4c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T100721Z:34737c55-3fed-4dfe-a7ca-556030ef0c4c" + ], + "Date": [ + "Wed, 22 Apr 2015 10:07:21 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/536dafea-2c00-482a-96de-b13465920ce3?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy81MzZkYWZlYS0yYzAwLTQ4MmEtOTZkZS1iMTM0NjU5MjBjZTM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"536dafea-2c00-482a-96de-b13465920ce3\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T03:06:13.4643678-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a748f754-7d8d-48a5-b73d-fbaf05880af7" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31994" + ], + "x-ms-correlation-request-id": [ + "75a51f93-0763-4c93-9bbd-9c8ccc9440c2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T100753Z:75a51f93-0763-4c93-9bbd-9c8ccc9440c2" + ], + "Date": [ + "Wed, 22 Apr 2015 10:07:52 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/536dafea-2c00-482a-96de-b13465920ce3?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy81MzZkYWZlYS0yYzAwLTQ4MmEtOTZkZS1iMTM0NjU5MjBjZTM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"536dafea-2c00-482a-96de-b13465920ce3\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T03:06:13.4643678-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "14f9cd2c-88c4-41b4-b121-24b452de7349" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31993" + ], + "x-ms-correlation-request-id": [ + "aff717e0-cbf0-47af-9829-980ed218bba7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T100824Z:aff717e0-cbf0-47af-9829-980ed218bba7" + ], + "Date": [ + "Wed, 22 Apr 2015 10:08:24 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/536dafea-2c00-482a-96de-b13465920ce3?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy81MzZkYWZlYS0yYzAwLTQ4MmEtOTZkZS1iMTM0NjU5MjBjZTM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"536dafea-2c00-482a-96de-b13465920ce3\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T03:06:13.4643678-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c78c27a6-2239-4c78-9ed3-81052c4b5589" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31992" + ], + "x-ms-correlation-request-id": [ + "ff3a3955-16df-45d6-b4ea-df4cf1d11a39" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T100855Z:ff3a3955-16df-45d6-b4ea-df4cf1d11a39" + ], + "Date": [ + "Wed, 22 Apr 2015 10:08:55 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/536dafea-2c00-482a-96de-b13465920ce3?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy81MzZkYWZlYS0yYzAwLTQ4MmEtOTZkZS1iMTM0NjU5MjBjZTM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"536dafea-2c00-482a-96de-b13465920ce3\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T03:06:13.4643678-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "367ae746-cecb-4af4-8186-93328362dfeb" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31991" + ], + "x-ms-correlation-request-id": [ + "c6aafc5c-6f5b-47d6-b398-088d200bb398" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T100927Z:c6aafc5c-6f5b-47d6-b398-088d200bb398" + ], + "Date": [ + "Wed, 22 Apr 2015 10:09:27 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/536dafea-2c00-482a-96de-b13465920ce3?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy81MzZkYWZlYS0yYzAwLTQ4MmEtOTZkZS1iMTM0NjU5MjBjZTM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"536dafea-2c00-482a-96de-b13465920ce3\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T03:06:13.4643678-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "66047251-a6d5-4be7-9da0-2095f194e9ad" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31990" + ], + "x-ms-correlation-request-id": [ + "3141569b-b583-49df-85d1-d865187eb430" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T100958Z:3141569b-b583-49df-85d1-d865187eb430" + ], + "Date": [ + "Wed, 22 Apr 2015 10:09:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/536dafea-2c00-482a-96de-b13465920ce3?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy81MzZkYWZlYS0yYzAwLTQ4MmEtOTZkZS1iMTM0NjU5MjBjZTM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"536dafea-2c00-482a-96de-b13465920ce3\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T03:06:13.4643678-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "fbc84ea2-fd1e-4d76-9e94-8719bc525afe" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31989" + ], + "x-ms-correlation-request-id": [ + "9a2634fa-fd6e-4b41-990a-856126cc5bf2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T101030Z:9a2634fa-fd6e-4b41-990a-856126cc5bf2" + ], + "Date": [ + "Wed, 22 Apr 2015 10:10:29 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/536dafea-2c00-482a-96de-b13465920ce3?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy81MzZkYWZlYS0yYzAwLTQ4MmEtOTZkZS1iMTM0NjU5MjBjZTM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"536dafea-2c00-482a-96de-b13465920ce3\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-04-22T03:06:13.4643678-07:00\",\r\n \"endTime\": \"2015-04-22T03:10:38.054705-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "190" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "8a35a054-6ea3-4a92-8609-b32d3d4617d4" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31988" + ], + "x-ms-correlation-request-id": [ + "07d5abe4-6c00-4aa0-9a94-2a3437f195f4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T101101Z:07d5abe4-6c00-4aa0-9a94-2a3437f195f4" + ], + "Date": [ + "Wed, 22 Apr 2015 10:11:00 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Compute/virtualMachines/vmpstestrg3690/extensions/csetest?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzY5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtcHN0ZXN0cmczNjkwL2V4dGVuc2lvbnMvY3NldGVzdD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"VMAccessAgent\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"userName\": \"Bar12\"\r\n },\r\n \"protectedSettings\": {\r\n \"password\": \"FoO@123pstestrg3690\"\r\n }\r\n },\r\n \"name\": \"csetest\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"East Asia\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "424" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"VMAccessAgent\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"userName\": \"Bar12\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Compute/virtualMachines/vmpstestrg3690/extensions/csetest\",\r\n \"name\": \"csetest\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {}\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "539" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/78f04e35-1d76-4854-92e2-7c5472bd39b1?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "78f04e35-1d76-4854-92e2-7c5472bd39b1" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "dba30c89-2dce-4311-b058-31c72ead2294" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T101109Z:dba30c89-2dce-4311-b058-31c72ead2294" + ], + "Date": [ + "Wed, 22 Apr 2015 10:11:08 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/78f04e35-1d76-4854-92e2-7c5472bd39b1?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy83OGYwNGUzNS0xZDc2LTQ4NTQtOTJlMi03YzU0NzJiZDM5YjE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"78f04e35-1d76-4854-92e2-7c5472bd39b1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T03:11:04.7262676-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "6bf363de-5037-43b4-9d40-3ae697d25a14" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31987" + ], + "x-ms-correlation-request-id": [ + "12834458-2771-4ee8-a8af-64aee9b40426" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T101110Z:12834458-2771-4ee8-a8af-64aee9b40426" + ], + "Date": [ + "Wed, 22 Apr 2015 10:11:10 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/78f04e35-1d76-4854-92e2-7c5472bd39b1?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy83OGYwNGUzNS0xZDc2LTQ4NTQtOTJlMi03YzU0NzJiZDM5YjE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"78f04e35-1d76-4854-92e2-7c5472bd39b1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T03:11:04.7262676-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "73e2edbc-4566-429f-b0a7-47dcc4cfcba4" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31986" + ], + "x-ms-correlation-request-id": [ + "75d72708-4007-476b-a384-4698c3b5786f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T101141Z:75d72708-4007-476b-a384-4698c3b5786f" + ], + "Date": [ + "Wed, 22 Apr 2015 10:11:41 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/78f04e35-1d76-4854-92e2-7c5472bd39b1?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy83OGYwNGUzNS0xZDc2LTQ4NTQtOTJlMi03YzU0NzJiZDM5YjE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"78f04e35-1d76-4854-92e2-7c5472bd39b1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T03:11:04.7262676-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "9c665c91-0653-48f5-b770-3782b31f4137" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31985" + ], + "x-ms-correlation-request-id": [ + "30b95c72-91da-4a7b-a3c3-4f546d356a99" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T101212Z:30b95c72-91da-4a7b-a3c3-4f546d356a99" + ], + "Date": [ + "Wed, 22 Apr 2015 10:12:11 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/78f04e35-1d76-4854-92e2-7c5472bd39b1?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy83OGYwNGUzNS0xZDc2LTQ4NTQtOTJlMi03YzU0NzJiZDM5YjE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"78f04e35-1d76-4854-92e2-7c5472bd39b1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T03:11:04.7262676-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "bacb745a-3c38-4eb7-86aa-6eb61d6af379" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31984" + ], + "x-ms-correlation-request-id": [ + "91a15835-e6f2-40b7-b8ec-c7c51e2a0bb6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T101243Z:91a15835-e6f2-40b7-b8ec-c7c51e2a0bb6" + ], + "Date": [ + "Wed, 22 Apr 2015 10:12:43 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/78f04e35-1d76-4854-92e2-7c5472bd39b1?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy83OGYwNGUzNS0xZDc2LTQ4NTQtOTJlMi03YzU0NzJiZDM5YjE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"78f04e35-1d76-4854-92e2-7c5472bd39b1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T03:11:04.7262676-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "4484f033-091d-429f-9ff1-2c059916572b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31983" + ], + "x-ms-correlation-request-id": [ + "6422cbd5-0927-4369-ab83-edac07d0148e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T101314Z:6422cbd5-0927-4369-ab83-edac07d0148e" + ], + "Date": [ + "Wed, 22 Apr 2015 10:13:14 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/78f04e35-1d76-4854-92e2-7c5472bd39b1?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy83OGYwNGUzNS0xZDc2LTQ4NTQtOTJlMi03YzU0NzJiZDM5YjE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"78f04e35-1d76-4854-92e2-7c5472bd39b1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T03:11:04.7262676-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f32a6db3-6e85-4f33-9335-515d01eced14" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31982" + ], + "x-ms-correlation-request-id": [ + "be8a7064-1854-4ff1-b59d-62982b2ba2be" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T101345Z:be8a7064-1854-4ff1-b59d-62982b2ba2be" + ], + "Date": [ + "Wed, 22 Apr 2015 10:13:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/78f04e35-1d76-4854-92e2-7c5472bd39b1?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy83OGYwNGUzNS0xZDc2LTQ4NTQtOTJlMi03YzU0NzJiZDM5YjE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"78f04e35-1d76-4854-92e2-7c5472bd39b1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T03:11:04.7262676-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f3162be2-47aa-40e9-947c-5cc6fe6fef57" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31981" + ], + "x-ms-correlation-request-id": [ + "0b6bf13c-5079-49d0-81f2-7e1cb7ed60f6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T101416Z:0b6bf13c-5079-49d0-81f2-7e1cb7ed60f6" + ], + "Date": [ + "Wed, 22 Apr 2015 10:14:16 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/78f04e35-1d76-4854-92e2-7c5472bd39b1?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy83OGYwNGUzNS0xZDc2LTQ4NTQtOTJlMi03YzU0NzJiZDM5YjE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"78f04e35-1d76-4854-92e2-7c5472bd39b1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T03:11:04.7262676-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "85b1da7e-c268-4806-91ab-49a1532b849a" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31980" + ], + "x-ms-correlation-request-id": [ + "cde81f25-e24d-4106-8c3d-9cb36c4cc612" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T101448Z:cde81f25-e24d-4106-8c3d-9cb36c4cc612" + ], + "Date": [ + "Wed, 22 Apr 2015 10:14:47 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/78f04e35-1d76-4854-92e2-7c5472bd39b1?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy83OGYwNGUzNS0xZDc2LTQ4NTQtOTJlMi03YzU0NzJiZDM5YjE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"78f04e35-1d76-4854-92e2-7c5472bd39b1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T03:11:04.7262676-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "491c7c2b-1334-41fe-a85a-bccc316191b7" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31979" + ], + "x-ms-correlation-request-id": [ + "9df09fc1-5088-464a-977d-07789ff1608f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T101519Z:9df09fc1-5088-464a-977d-07789ff1608f" + ], + "Date": [ + "Wed, 22 Apr 2015 10:15:18 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/78f04e35-1d76-4854-92e2-7c5472bd39b1?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy83OGYwNGUzNS0xZDc2LTQ4NTQtOTJlMi03YzU0NzJiZDM5YjE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"78f04e35-1d76-4854-92e2-7c5472bd39b1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T03:11:04.7262676-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "5b1647a2-4cd8-4f07-bf44-fc49ebeff19b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31978" + ], + "x-ms-correlation-request-id": [ + "bcf305c4-5f55-46cf-891b-c18f555b5e38" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T101550Z:bcf305c4-5f55-46cf-891b-c18f555b5e38" + ], + "Date": [ + "Wed, 22 Apr 2015 10:15:50 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/78f04e35-1d76-4854-92e2-7c5472bd39b1?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy83OGYwNGUzNS0xZDc2LTQ4NTQtOTJlMi03YzU0NzJiZDM5YjE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"78f04e35-1d76-4854-92e2-7c5472bd39b1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T03:11:04.7262676-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "aa88b4d2-8b5b-45d5-b36f-c48922632cef" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31977" + ], + "x-ms-correlation-request-id": [ + "ec5f2f53-85a5-40a8-be75-81aac5009fa4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T101621Z:ec5f2f53-85a5-40a8-be75-81aac5009fa4" + ], + "Date": [ + "Wed, 22 Apr 2015 10:16:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/78f04e35-1d76-4854-92e2-7c5472bd39b1?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy83OGYwNGUzNS0xZDc2LTQ4NTQtOTJlMi03YzU0NzJiZDM5YjE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"78f04e35-1d76-4854-92e2-7c5472bd39b1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T03:11:04.7262676-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "bcfe31c9-e9c3-4ada-9907-a61319413605" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31976" + ], + "x-ms-correlation-request-id": [ + "a5a2e806-0de7-4091-b71d-c60b77144b7b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T101652Z:a5a2e806-0de7-4091-b71d-c60b77144b7b" + ], + "Date": [ + "Wed, 22 Apr 2015 10:16:51 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/78f04e35-1d76-4854-92e2-7c5472bd39b1?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy83OGYwNGUzNS0xZDc2LTQ4NTQtOTJlMi03YzU0NzJiZDM5YjE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"78f04e35-1d76-4854-92e2-7c5472bd39b1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T03:11:04.7262676-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "7d6073c2-965e-4b72-9e80-e19e3e9378b4" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31975" + ], + "x-ms-correlation-request-id": [ + "27358073-cc46-4d61-a972-b359f24e6214" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T101723Z:27358073-cc46-4d61-a972-b359f24e6214" + ], + "Date": [ + "Wed, 22 Apr 2015 10:17:22 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/78f04e35-1d76-4854-92e2-7c5472bd39b1?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy83OGYwNGUzNS0xZDc2LTQ4NTQtOTJlMi03YzU0NzJiZDM5YjE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"78f04e35-1d76-4854-92e2-7c5472bd39b1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T03:11:04.7262676-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3e99c0be-5d26-4882-999e-03dc8c1af0bb" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31974" + ], + "x-ms-correlation-request-id": [ + "efadde68-7bb3-44c0-81c9-4973bb2ab25d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T101754Z:efadde68-7bb3-44c0-81c9-4973bb2ab25d" + ], + "Date": [ + "Wed, 22 Apr 2015 10:17:53 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/78f04e35-1d76-4854-92e2-7c5472bd39b1?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy83OGYwNGUzNS0xZDc2LTQ4NTQtOTJlMi03YzU0NzJiZDM5YjE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"78f04e35-1d76-4854-92e2-7c5472bd39b1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T03:11:04.7262676-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "970569a7-4638-4839-b081-9005f13da732" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31973" + ], + "x-ms-correlation-request-id": [ + "6faba1a5-0ccf-4370-852e-141871e33f31" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T101825Z:6faba1a5-0ccf-4370-852e-141871e33f31" + ], + "Date": [ + "Wed, 22 Apr 2015 10:18:25 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/78f04e35-1d76-4854-92e2-7c5472bd39b1?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy83OGYwNGUzNS0xZDc2LTQ4NTQtOTJlMi03YzU0NzJiZDM5YjE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"78f04e35-1d76-4854-92e2-7c5472bd39b1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T03:11:04.7262676-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "943f88e7-a2a5-4a7d-a2cc-8edf52a66319" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31972" + ], + "x-ms-correlation-request-id": [ + "9cb46406-eabc-4972-84de-b6b3ead58f1f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T101856Z:9cb46406-eabc-4972-84de-b6b3ead58f1f" + ], + "Date": [ + "Wed, 22 Apr 2015 10:18:55 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/78f04e35-1d76-4854-92e2-7c5472bd39b1?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy83OGYwNGUzNS0xZDc2LTQ4NTQtOTJlMi03YzU0NzJiZDM5YjE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"78f04e35-1d76-4854-92e2-7c5472bd39b1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T03:11:04.7262676-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b3f219a9-21a2-42d1-9ef0-0fa1c691e43f" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31971" + ], + "x-ms-correlation-request-id": [ + "66d9ce99-39dc-4a30-a313-e9a8cbcc3ec4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T101927Z:66d9ce99-39dc-4a30-a313-e9a8cbcc3ec4" + ], + "Date": [ + "Wed, 22 Apr 2015 10:19:26 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/78f04e35-1d76-4854-92e2-7c5472bd39b1?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy83OGYwNGUzNS0xZDc2LTQ4NTQtOTJlMi03YzU0NzJiZDM5YjE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"78f04e35-1d76-4854-92e2-7c5472bd39b1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T03:11:04.7262676-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f6e54f45-6e58-46c4-a3ed-7fd3c468745f" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31970" + ], + "x-ms-correlation-request-id": [ + "6194551b-045c-40cd-846b-072fe6be1cc7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T101957Z:6194551b-045c-40cd-846b-072fe6be1cc7" + ], + "Date": [ + "Wed, 22 Apr 2015 10:19:57 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/78f04e35-1d76-4854-92e2-7c5472bd39b1?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy83OGYwNGUzNS0xZDc2LTQ4NTQtOTJlMi03YzU0NzJiZDM5YjE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"78f04e35-1d76-4854-92e2-7c5472bd39b1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T03:11:04.7262676-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a777cec7-02cb-4dc6-a383-9063672ede29" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31971" + ], + "x-ms-correlation-request-id": [ + "4276139c-3ce4-4444-a53c-0ae05e7c2e9c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T102029Z:4276139c-3ce4-4444-a53c-0ae05e7c2e9c" + ], + "Date": [ + "Wed, 22 Apr 2015 10:20:28 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/78f04e35-1d76-4854-92e2-7c5472bd39b1?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy83OGYwNGUzNS0xZDc2LTQ4NTQtOTJlMi03YzU0NzJiZDM5YjE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"78f04e35-1d76-4854-92e2-7c5472bd39b1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T03:11:04.7262676-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "0ff0b6c6-ebc7-4724-93c8-fd0e673a0683" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31970" + ], + "x-ms-correlation-request-id": [ + "a6b5d3e9-dbbc-48a0-a51b-060a2772d7f0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T102100Z:a6b5d3e9-dbbc-48a0-a51b-060a2772d7f0" + ], + "Date": [ + "Wed, 22 Apr 2015 10:20:59 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/78f04e35-1d76-4854-92e2-7c5472bd39b1?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy83OGYwNGUzNS0xZDc2LTQ4NTQtOTJlMi03YzU0NzJiZDM5YjE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"78f04e35-1d76-4854-92e2-7c5472bd39b1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T03:11:04.7262676-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "6efaaccf-4241-421c-b2f3-ca582e8bccbd" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31969" + ], + "x-ms-correlation-request-id": [ + "b297df04-c48e-4927-a873-1240738a2375" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T102131Z:b297df04-c48e-4927-a873-1240738a2375" + ], + "Date": [ + "Wed, 22 Apr 2015 10:21:30 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/78f04e35-1d76-4854-92e2-7c5472bd39b1?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy83OGYwNGUzNS0xZDc2LTQ4NTQtOTJlMi03YzU0NzJiZDM5YjE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"78f04e35-1d76-4854-92e2-7c5472bd39b1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T03:11:04.7262676-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "180b9993-967e-4d95-98ff-832b1ef423cb" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31968" + ], + "x-ms-correlation-request-id": [ + "707aa796-bdb6-4f49-8432-4433350ea488" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T102201Z:707aa796-bdb6-4f49-8432-4433350ea488" + ], + "Date": [ + "Wed, 22 Apr 2015 10:22:01 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/78f04e35-1d76-4854-92e2-7c5472bd39b1?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy83OGYwNGUzNS0xZDc2LTQ4NTQtOTJlMi03YzU0NzJiZDM5YjE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"78f04e35-1d76-4854-92e2-7c5472bd39b1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T03:11:04.7262676-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "90b38b50-be42-4ab3-b2ea-800c215cc4d4" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31967" + ], + "x-ms-correlation-request-id": [ + "1b3a5103-72c4-4762-b845-b5240b3cd3a0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T102232Z:1b3a5103-72c4-4762-b845-b5240b3cd3a0" + ], + "Date": [ + "Wed, 22 Apr 2015 10:22:32 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/78f04e35-1d76-4854-92e2-7c5472bd39b1?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy83OGYwNGUzNS0xZDc2LTQ4NTQtOTJlMi03YzU0NzJiZDM5YjE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"78f04e35-1d76-4854-92e2-7c5472bd39b1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T03:11:04.7262676-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "5423581e-60e7-4026-8774-c685a5f110f7" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31966" + ], + "x-ms-correlation-request-id": [ + "cd067eb4-410c-464f-af85-62b83fba409a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T102303Z:cd067eb4-410c-464f-af85-62b83fba409a" + ], + "Date": [ + "Wed, 22 Apr 2015 10:23:03 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/78f04e35-1d76-4854-92e2-7c5472bd39b1?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy83OGYwNGUzNS0xZDc2LTQ4NTQtOTJlMi03YzU0NzJiZDM5YjE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"78f04e35-1d76-4854-92e2-7c5472bd39b1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T03:11:04.7262676-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "416bca77-59f7-4219-889c-0811f48d998c" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31965" + ], + "x-ms-correlation-request-id": [ + "e9f2adc0-0e5f-47bb-95d1-db749b3aac20" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T102334Z:e9f2adc0-0e5f-47bb-95d1-db749b3aac20" + ], + "Date": [ + "Wed, 22 Apr 2015 10:23:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/78f04e35-1d76-4854-92e2-7c5472bd39b1?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy83OGYwNGUzNS0xZDc2LTQ4NTQtOTJlMi03YzU0NzJiZDM5YjE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"78f04e35-1d76-4854-92e2-7c5472bd39b1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T03:11:04.7262676-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "1ef053de-d945-4b46-92d3-e66e8d987fd2" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31964" + ], + "x-ms-correlation-request-id": [ + "c1a0d311-58df-4ac1-93ec-dbe51a8f3361" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T102405Z:c1a0d311-58df-4ac1-93ec-dbe51a8f3361" + ], + "Date": [ + "Wed, 22 Apr 2015 10:24:05 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/78f04e35-1d76-4854-92e2-7c5472bd39b1?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy83OGYwNGUzNS0xZDc2LTQ4NTQtOTJlMi03YzU0NzJiZDM5YjE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"78f04e35-1d76-4854-92e2-7c5472bd39b1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T03:11:04.7262676-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d0e0514d-8616-4d1f-bfd2-70b70d7fcb43" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31963" + ], + "x-ms-correlation-request-id": [ + "24844684-36e5-4072-ac6f-fb435b4be93e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T102436Z:24844684-36e5-4072-ac6f-fb435b4be93e" + ], + "Date": [ + "Wed, 22 Apr 2015 10:24:35 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/78f04e35-1d76-4854-92e2-7c5472bd39b1?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy83OGYwNGUzNS0xZDc2LTQ4NTQtOTJlMi03YzU0NzJiZDM5YjE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"78f04e35-1d76-4854-92e2-7c5472bd39b1\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-04-22T03:11:04.7262676-07:00\",\r\n \"endTime\": \"2015-04-22T03:24:39.2635094-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "bd02082f-0172-4ec5-9cc1-60bcee6e1fce" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31962" + ], + "x-ms-correlation-request-id": [ + "84bf9dc4-17df-461a-9ffc-995290f8c8dd" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T102507Z:84bf9dc4-17df-461a-9ffc-995290f8c8dd" + ], + "Date": [ + "Wed, 22 Apr 2015 10:25:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Compute/virtualMachines/vmpstestrg3690/extensions/csetest?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzY5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtcHN0ZXN0cmczNjkwL2V4dGVuc2lvbnMvY3NldGVzdD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"VMAccessAgent\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"userName\": \"Bar12\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Compute/virtualMachines/vmpstestrg3690/extensions/csetest\",\r\n \"name\": \"csetest\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {}\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "540" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "2e88ce69-5902-43f2-bd0b-51da35baf67c" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31961" + ], + "x-ms-correlation-request-id": [ + "f9aec008-d6e1-40b0-8ff4-b92dcae812fd" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T102508Z:f9aec008-d6e1-40b0-8ff4-b92dcae812fd" + ], + "Date": [ + "Wed, 22 Apr 2015 10:25:08 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Compute/virtualMachines/vmpstestrg3690/extensions/csetest?$expand=instanceView&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzY5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtcHN0ZXN0cmczNjkwL2V4dGVuc2lvbnMvY3NldGVzdD8kZXhwYW5kPWluc3RhbmNlVmlldyZhcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"VMAccessAgent\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"userName\": \"Bar12\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"name\": \"csetest\",\r\n \"type\": \"Microsoft.Compute.VMAccessAgent\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"message\": \"Succesfully updated build-in Admin account and enabled Remote Desktop connection to the machine\"\r\n }\r\n ]\r\n }\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Compute/virtualMachines/vmpstestrg3690/extensions/csetest\",\r\n \"name\": \"csetest\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {}\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "987" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "7103cd3e-61bf-4895-9d49-bd8a2c1ab74f" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31960" + ], + "x-ms-correlation-request-id": [ + "f8fa703d-bf24-4d8e-a147-9f0d53607914" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T102508Z:f8fa703d-bf24-4d8e-a147-9f0d53607914" + ], + "Date": [ + "Wed, 22 Apr 2015 10:25:08 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Compute/virtualMachines/vmpstestrg3690?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzY5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtcHN0ZXN0cmczNjkwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"sourceImage\": {\r\n \"id\": \"/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/services/images/a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-Datacenter-201503.01-en.us-127GB.vhd\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg3690.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg3690.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\"\r\n },\r\n {\r\n \"lun\": 2,\r\n \"diskSizeGB\": 11,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg3690.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\"\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Network/networkInterfaces/nicpstestrg3690\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"VMAccessAgent\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"userName\": \"Bar12\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Compute/virtualMachines/vmpstestrg3690/extensions/csetest\",\r\n \"name\": \"csetest\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {}\r\n }\r\n ],\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg3690/providers/Microsoft.Compute/virtualMachines/vmpstestrg3690\",\r\n \"name\": \"vmpstestrg3690\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {}\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2586" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "dc4adc0c-69bf-477a-b98d-e1b0056c5421" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31959" + ], + "x-ms-correlation-request-id": [ + "ceb94305-3010-41ac-8525-0572a251ebf6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T102509Z:ceb94305-3010-41ac-8525-0572a251ebf6" + ], + "Date": [ + "Wed, 22 Apr 2015 10:25:09 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/pstestrg3690?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnMzY5MD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-request-id": [ + "a716a498-fb1b-4437-ae87-47c74106a146" + ], + "x-ms-correlation-request-id": [ + "a716a498-fb1b-4437-ae87-47c74106a146" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T102512Z:a716a498-fb1b-4437-ae87-47c74106a146" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 10:25:11 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0yT1RBdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31998" + ], + "x-ms-request-id": [ + "cba0d7c2-5c94-4e2e-985a-ab933d3565af" + ], + "x-ms-correlation-request-id": [ + "cba0d7c2-5c94-4e2e-985a-ab933d3565af" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T102513Z:cba0d7c2-5c94-4e2e-985a-ab933d3565af" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 10:25:12 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0yT1RBdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31997" + ], + "x-ms-request-id": [ + "c342f210-080c-4bf3-9d7f-25dbe30bb85e" + ], + "x-ms-correlation-request-id": [ + "c342f210-080c-4bf3-9d7f-25dbe30bb85e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T102528Z:c342f210-080c-4bf3-9d7f-25dbe30bb85e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 10:25:28 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0yT1RBdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31996" + ], + "x-ms-request-id": [ + "6f81cf29-e0c0-49a1-88c3-81283b1d221c" + ], + "x-ms-correlation-request-id": [ + "6f81cf29-e0c0-49a1-88c3-81283b1d221c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T102544Z:6f81cf29-e0c0-49a1-88c3-81283b1d221c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 10:25:43 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0yT1RBdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31995" + ], + "x-ms-request-id": [ + "e130db13-3585-4f23-93a3-e77a85e4bb19" + ], + "x-ms-correlation-request-id": [ + "e130db13-3585-4f23-93a3-e77a85e4bb19" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T102559Z:e130db13-3585-4f23-93a3-e77a85e4bb19" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 10:25:59 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0yT1RBdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31994" + ], + "x-ms-request-id": [ + "038dabc1-ea6a-4444-b167-62264882bc42" + ], + "x-ms-correlation-request-id": [ + "038dabc1-ea6a-4444-b167-62264882bc42" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T102614Z:038dabc1-ea6a-4444-b167-62264882bc42" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 10:26:14 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0yT1RBdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31993" + ], + "x-ms-request-id": [ + "ed897e4c-33c6-48ca-a747-5ddbd2ae7ed1" + ], + "x-ms-correlation-request-id": [ + "ed897e4c-33c6-48ca-a747-5ddbd2ae7ed1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T102630Z:ed897e4c-33c6-48ca-a747-5ddbd2ae7ed1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 10:26:29 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0yT1RBdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31992" + ], + "x-ms-request-id": [ + "c5062928-e998-467d-a02c-0f15649c79be" + ], + "x-ms-correlation-request-id": [ + "c5062928-e998-467d-a02c-0f15649c79be" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T102645Z:c5062928-e998-467d-a02c-0f15649c79be" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 10:26:44 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0yT1RBdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31991" + ], + "x-ms-request-id": [ + "2e9d1c81-0681-4ac3-87d8-2d1e0a26e75f" + ], + "x-ms-correlation-request-id": [ + "2e9d1c81-0681-4ac3-87d8-2d1e0a26e75f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T102700Z:2e9d1c81-0681-4ac3-87d8-2d1e0a26e75f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 10:27:00 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0yT1RBdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31990" + ], + "x-ms-request-id": [ + "c76c387c-a65d-46ce-a5fa-3e8b8de56ff6" + ], + "x-ms-correlation-request-id": [ + "c76c387c-a65d-46ce-a5fa-3e8b8de56ff6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T102716Z:c76c387c-a65d-46ce-a5fa-3e8b8de56ff6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 10:27:15 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0yT1RBdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31989" + ], + "x-ms-request-id": [ + "50b18876-068a-4a26-9f77-ce3467acd2b1" + ], + "x-ms-correlation-request-id": [ + "50b18876-068a-4a26-9f77-ce3467acd2b1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T102731Z:50b18876-068a-4a26-9f77-ce3467acd2b1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 10:27:31 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0yT1RBdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31988" + ], + "x-ms-request-id": [ + "0e5915f9-6534-4ad4-b6b2-d243b3ce3d34" + ], + "x-ms-correlation-request-id": [ + "0e5915f9-6534-4ad4-b6b2-d243b3ce3d34" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T102746Z:0e5915f9-6534-4ad4-b6b2-d243b3ce3d34" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 10:27:46 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0yT1RBdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31987" + ], + "x-ms-request-id": [ + "043e4700-ad40-47c7-a517-3e06153c7502" + ], + "x-ms-correlation-request-id": [ + "043e4700-ad40-47c7-a517-3e06153c7502" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T102802Z:043e4700-ad40-47c7-a517-3e06153c7502" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 10:28:01 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0yT1RBdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31986" + ], + "x-ms-request-id": [ + "f02164ae-a272-4f53-90a2-84e1786b990f" + ], + "x-ms-correlation-request-id": [ + "f02164ae-a272-4f53-90a2-84e1786b990f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T102817Z:f02164ae-a272-4f53-90a2-84e1786b990f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 10:28:17 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0yT1RBdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31985" + ], + "x-ms-request-id": [ + "13bba71e-bd36-4b11-8cf1-17c90d3d1680" + ], + "x-ms-correlation-request-id": [ + "13bba71e-bd36-4b11-8cf1-17c90d3d1680" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T102833Z:13bba71e-bd36-4b11-8cf1-17c90d3d1680" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 10:28:32 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0yT1RBdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31984" + ], + "x-ms-request-id": [ + "6348347d-a019-484c-b042-d1530c6ba3b1" + ], + "x-ms-correlation-request-id": [ + "6348347d-a019-484c-b042-d1530c6ba3b1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T102848Z:6348347d-a019-484c-b042-d1530c6ba3b1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 10:28:47 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0yT1RBdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31983" + ], + "x-ms-request-id": [ + "fb6e793c-0ac7-4411-8acf-59bb10cc8956" + ], + "x-ms-correlation-request-id": [ + "fb6e793c-0ac7-4411-8acf-59bb10cc8956" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T102903Z:fb6e793c-0ac7-4411-8acf-59bb10cc8956" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 10:29:03 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0yT1RBdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31982" + ], + "x-ms-request-id": [ + "6fb55b57-568e-44ee-8748-2054e4380cf4" + ], + "x-ms-correlation-request-id": [ + "6fb55b57-568e-44ee-8748-2054e4380cf4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T102919Z:6fb55b57-568e-44ee-8748-2054e4380cf4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 10:29:19 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0yT1RBdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31981" + ], + "x-ms-request-id": [ + "da381a9b-7b68-4cd9-8f92-5fd56ca5236a" + ], + "x-ms-correlation-request-id": [ + "da381a9b-7b68-4cd9-8f92-5fd56ca5236a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T102934Z:da381a9b-7b68-4cd9-8f92-5fd56ca5236a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 10:29:34 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0yT1RBdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31980" + ], + "x-ms-request-id": [ + "2020e48e-a2dc-4226-8709-65b4c2deea1d" + ], + "x-ms-correlation-request-id": [ + "2020e48e-a2dc-4226-8709-65b4c2deea1d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T102949Z:2020e48e-a2dc-4226-8709-65b4c2deea1d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 10:29:49 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0yT1RBdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31979" + ], + "x-ms-request-id": [ + "548eff9e-f1d9-41aa-bb06-c7fea40c77de" + ], + "x-ms-correlation-request-id": [ + "548eff9e-f1d9-41aa-bb06-c7fea40c77de" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T103005Z:548eff9e-f1d9-41aa-bb06-c7fea40c77de" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 10:30:04 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0yT1RBdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31978" + ], + "x-ms-request-id": [ + "bc193457-7282-4ec2-8c81-7ff811b8a552" + ], + "x-ms-correlation-request-id": [ + "bc193457-7282-4ec2-8c81-7ff811b8a552" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T103020Z:bc193457-7282-4ec2-8c81-7ff811b8a552" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 10:30:20 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0yT1RBdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31977" + ], + "x-ms-request-id": [ + "484792ce-dc10-4252-9709-70d88075d7a2" + ], + "x-ms-correlation-request-id": [ + "484792ce-dc10-4252-9709-70d88075d7a2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T103035Z:484792ce-dc10-4252-9709-70d88075d7a2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 10:30:35 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0yT1RBdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31976" + ], + "x-ms-request-id": [ + "35e4a6f2-0250-4f2d-9b34-53f899fb613c" + ], + "x-ms-correlation-request-id": [ + "35e4a6f2-0250-4f2d-9b34-53f899fb613c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T103051Z:35e4a6f2-0250-4f2d-9b34-53f899fb613c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 10:30:50 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0yT1RBdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31975" + ], + "x-ms-request-id": [ + "253c0642-bf03-44a6-a583-2d18c6de25cb" + ], + "x-ms-correlation-request-id": [ + "253c0642-bf03-44a6-a583-2d18c6de25cb" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T103106Z:253c0642-bf03-44a6-a583-2d18c6de25cb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 10:31:06 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0yT1RBdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31974" + ], + "x-ms-request-id": [ + "164009ee-fc5f-4d89-aebc-656db1c09975" + ], + "x-ms-correlation-request-id": [ + "164009ee-fc5f-4d89-aebc-656db1c09975" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T103122Z:164009ee-fc5f-4d89-aebc-656db1c09975" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 10:31:22 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0yT1RBdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31973" + ], + "x-ms-request-id": [ + "0211d29d-78a1-44cd-9090-a9bee6155cb6" + ], + "x-ms-correlation-request-id": [ + "0211d29d-78a1-44cd-9090-a9bee6155cb6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T103137Z:0211d29d-78a1-44cd-9090-a9bee6155cb6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 10:31:36 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0yT1RBdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31972" + ], + "x-ms-request-id": [ + "6ce6fb0d-b7f0-4ed8-a8fb-0f6deba87cea" + ], + "x-ms-correlation-request-id": [ + "6ce6fb0d-b7f0-4ed8-a8fb-0f6deba87cea" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T103152Z:6ce6fb0d-b7f0-4ed8-a8fb-0f6deba87cea" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 10:31:52 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0yT1RBdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31971" + ], + "x-ms-request-id": [ + "d9def07b-c862-423b-8c5e-33cbd37bda44" + ], + "x-ms-correlation-request-id": [ + "d9def07b-c862-423b-8c5e-33cbd37bda44" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T103208Z:d9def07b-c862-423b-8c5e-33cbd37bda44" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 10:32:07 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0yT1RBdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31970" + ], + "x-ms-request-id": [ + "5a5f4320-7221-4e75-a90e-4ba21defc845" + ], + "x-ms-correlation-request-id": [ + "5a5f4320-7221-4e75-a90e-4ba21defc845" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T103223Z:5a5f4320-7221-4e75-a90e-4ba21defc845" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 10:32:22 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0yT1RBdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31969" + ], + "x-ms-request-id": [ + "5872a39a-d435-41c3-962c-782881c7385c" + ], + "x-ms-correlation-request-id": [ + "5872a39a-d435-41c3-962c-782881c7385c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T103238Z:5872a39a-d435-41c3-962c-782881c7385c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 10:32:38 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0yT1RBdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31968" + ], + "x-ms-request-id": [ + "4f632e4f-593f-400a-900d-063964f28527" + ], + "x-ms-correlation-request-id": [ + "4f632e4f-593f-400a-900d-063964f28527" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T103254Z:4f632e4f-593f-400a-900d-063964f28527" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 10:32:53 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0yT1RBdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31967" + ], + "x-ms-request-id": [ + "eb577859-fc1f-49d4-ad82-74c7b286af1f" + ], + "x-ms-correlation-request-id": [ + "eb577859-fc1f-49d4-ad82-74c7b286af1f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T103309Z:eb577859-fc1f-49d4-ad82-74c7b286af1f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 10:33:08 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0yT1RBdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31966" + ], + "x-ms-request-id": [ + "693d9ba1-83a8-466a-9979-ecf972a569a4" + ], + "x-ms-correlation-request-id": [ + "693d9ba1-83a8-466a-9979-ecf972a569a4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T103325Z:693d9ba1-83a8-466a-9979-ecf972a569a4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 10:33:24 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0yT1RBdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31965" + ], + "x-ms-request-id": [ + "d5881f9d-7fbd-43ab-a98f-325453e1cba6" + ], + "x-ms-correlation-request-id": [ + "d5881f9d-7fbd-43ab-a98f-325453e1cba6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T103340Z:d5881f9d-7fbd-43ab-a98f-325453e1cba6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 10:33:40 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2OTAtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0yT1RBdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31964" + ], + "x-ms-request-id": [ + "281c2ef0-f7aa-4c8d-8ec3-d4038033a1a3" + ], + "x-ms-correlation-request-id": [ + "281c2ef0-f7aa-4c8d-8ec3-d4038033a1a3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T103355Z:281c2ef0-f7aa-4c8d-8ec3-d4038033a1a3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 10:33:54 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "Test-VirtualMachineAccessExtension": [ + "pstestrg3690" + ] + }, + "Variables": { + "SubscriptionId": "24fb23e3-6ba3-41f0-9b6e-e41131d5d61e", + "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "Domain": "microsoft.com" + } +} \ No newline at end of file diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineExtensionTests/TestVirtualMachineCustomScriptExtension.json b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineExtensionTests/TestVirtualMachineCustomScriptExtension.json new file mode 100644 index 000000000000..6d0dc30ca63c --- /dev/null +++ b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineExtensionTests/TestVirtualMachineCustomScriptExtension.json @@ -0,0 +1,6203 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/pstestrg672?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNjcyP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "103" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31999" + ], + "x-ms-request-id": [ + "2a30a50a-04ea-42ef-baff-7c60f0c2ee1b" + ], + "x-ms-correlation-request-id": [ + "2a30a50a-04ea-42ef-baff-7c60f0c2ee1b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T174842Z:2a30a50a-04ea-42ef-baff-7c60f0c2ee1b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 17:48:41 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/pstestrg672?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNjcyP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31998" + ], + "x-ms-request-id": [ + "06998e2e-d780-4651-a8b1-37017f12ef14" + ], + "x-ms-correlation-request-id": [ + "06998e2e-d780-4651-a8b1-37017f12ef14" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T181430Z:06998e2e-d780-4651-a8b1-37017f12ef14" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 18:14:30 GMT" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/pstestrg672?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNjcyP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"East Asia\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "31" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672\",\r\n \"name\": \"pstestrg672\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "177" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "7af4eab5-4b7d-48f0-9f08-010f265717d2" + ], + "x-ms-correlation-request-id": [ + "7af4eab5-4b7d-48f0-9f08-010f265717d2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T174845Z:7af4eab5-4b7d-48f0-9f08-010f265717d2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 17:48:44 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNjcyL3Jlc291cmNlcz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31998" + ], + "x-ms-request-id": [ + "5fbe16bd-0f04-4e34-b823-065f388a5e84" + ], + "x-ms-correlation-request-id": [ + "5fbe16bd-0f04-4e34-b823-065f388a5e84" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T174845Z:5fbe16bd-0f04-4e34-b823-065f388a5e84" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 17:48:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/pstestrg672/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNjcyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXV0aG9yaXphdGlvbi9wZXJtaXNzaW9ucz9hcGktdmVyc2lvbj0yMDE0LTA3LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "45" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:e31d2cad-9a6a-4262-b61e-23170a84de34" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31999" + ], + "x-ms-correlation-request-id": [ + "976ad34a-7a52-4d6d-894e-fcfdd8eb7607" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T174847Z:976ad34a-7a52-4d6d-894e-fcfdd8eb7607" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 17:48:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Network/virtualnetworks/vnetpstestrg672?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNjcyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsbmV0d29ya3Mvdm5ldHBzdGVzdHJnNjcyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "69" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "6ff814c3-3bed-468c-abd8-2b06811eb8b2" + ], + "x-ms-correlation-request-id": [ + "6ff814c3-3bed-468c-abd8-2b06811eb8b2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T174902Z:6ff814c3-3bed-468c-abd8-2b06811eb8b2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 17:49:02 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Network/virtualnetworks/vnetpstestrg672?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNjcyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsbmV0d29ya3Mvdm5ldHBzdGVzdHJnNjcyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vnetpstestrg672\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Network/virtualNetworks/vnetpstestrg672\",\r\n \"etag\": \"W/\\\"1caf1941-f028-4ee8-89a6-423999bbc65d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\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 \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg672\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Network/virtualNetworks/vnetpstestrg672/subnets/subnetpstestrg672\",\r\n \"etag\": \"W/\\\"1caf1941-f028-4ee8-89a6-423999bbc65d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"East Asia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "956" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "8f3184b9-8bc4-4edb-b0a8-f444f583a786" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"1caf1941-f028-4ee8-89a6-423999bbc65d\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31997" + ], + "x-ms-correlation-request-id": [ + "5e86ea8b-17f1-4222-9b75-698382c56c66" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T174910Z:5e86ea8b-17f1-4222-9b75-698382c56c66" + ], + "Date": [ + "Wed, 22 Apr 2015 17:49:10 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Network/virtualnetworks/vnetpstestrg672?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNjcyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsbmV0d29ya3Mvdm5ldHBzdGVzdHJnNjcyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vnetpstestrg672\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Network/virtualNetworks/vnetpstestrg672\",\r\n \"etag\": \"W/\\\"1caf1941-f028-4ee8-89a6-423999bbc65d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\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 \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg672\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Network/virtualNetworks/vnetpstestrg672/subnets/subnetpstestrg672\",\r\n \"etag\": \"W/\\\"1caf1941-f028-4ee8-89a6-423999bbc65d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"East Asia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "956" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "9e70a3c7-50c8-4851-95c3-036e91b16256" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"1caf1941-f028-4ee8-89a6-423999bbc65d\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31996" + ], + "x-ms-correlation-request-id": [ + "a0c381ea-ab63-401c-a615-87ac64fe61fa" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T174910Z:a0c381ea-ab63-401c-a615-87ac64fe61fa" + ], + "Date": [ + "Wed, 22 Apr 2015 17:49:10 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Network/virtualnetworks/vnetpstestrg672?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNjcyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsbmV0d29ya3Mvdm5ldHBzdGVzdHJnNjcyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "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 \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": []\r\n },\r\n \"name\": \"subnetpstestrg672\"\r\n }\r\n ]\r\n },\r\n \"name\": \"vnetpstestrg672\",\r\n \"type\": \"microsoft.network/virtualNetworks\",\r\n \"location\": \"East Asia\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "501" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vnetpstestrg672\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Network/virtualNetworks/vnetpstestrg672\",\r\n \"etag\": \"W/\\\"f4615e54-33a6-48f6-af88-83dd65374b36\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\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 \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg672\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Network/virtualNetworks/vnetpstestrg672/subnets/subnetpstestrg672\",\r\n \"etag\": \"W/\\\"f4615e54-33a6-48f6-af88-83dd65374b36\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"East Asia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "954" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "c864505d-1796-453c-9d29-17f5c68b8f97" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/eastasia/operations/c864505d-1796-453c-9d29-17f5c68b8f97?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "8bd181ac-90fa-4b22-ad04-1b5d317eee94" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T174909Z:8bd181ac-90fa-4b22-ad04-1b5d317eee94" + ], + "Date": [ + "Wed, 22 Apr 2015 17:49:09 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/eastasia/operations/c864505d-1796-453c-9d29-17f5c68b8f97?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9jODY0NTA1ZC0xNzk2LTQ1M2MtOWQyOS0xN2Y1YzY4YjhmOTc/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-05-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e0be7485-5bb1-4423-b15e-6aa7a7818e28" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31998" + ], + "x-ms-correlation-request-id": [ + "d9127f69-eed2-41ba-8f1a-acf598a9f818" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T174910Z:d9127f69-eed2-41ba-8f1a-acf598a9f818" + ], + "Date": [ + "Wed, 22 Apr 2015 17:49:10 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Network/publicIPAddresses/pubippstestrg672/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNjcyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9wdWJpcHBzdGVzdHJnNjcyLz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "69" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "fd826a3e-4405-49ad-81ae-050c3295eaee" + ], + "x-ms-correlation-request-id": [ + "fd826a3e-4405-49ad-81ae-050c3295eaee" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T174911Z:fd826a3e-4405-49ad-81ae-050c3295eaee" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 17:49:10 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Network/publicIPAddresses/pubippstestrg672/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNjcyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9wdWJpcHBzdGVzdHJnNjcyLz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pubippstestrg672\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Network/publicIPAddresses/pubippstestrg672\",\r\n \"etag\": \"W/\\\"2c5b2aeb-6f96-4753-9bfc-6c8377ca2bd1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubippstestrg672\",\r\n \"fqdn\": \"pubippstestrg672.eastasia.cloudapp.azure.com.\"\r\n }\r\n },\r\n \"location\": \"East Asia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "551" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "9dc60422-4ed5-452a-bb7e-7270323b1b41" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"2c5b2aeb-6f96-4753-9bfc-6c8377ca2bd1\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31993" + ], + "x-ms-correlation-request-id": [ + "738a65ef-12c0-4bb8-aeda-0a908a0885ca" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T174918Z:738a65ef-12c0-4bb8-aeda-0a908a0885ca" + ], + "Date": [ + "Wed, 22 Apr 2015 17:49:17 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Network/publicIPAddresses/pubippstestrg672/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNjcyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9wdWJpcHBzdGVzdHJnNjcyLz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pubippstestrg672\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Network/publicIPAddresses/pubippstestrg672\",\r\n \"etag\": \"W/\\\"2c5b2aeb-6f96-4753-9bfc-6c8377ca2bd1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubippstestrg672\",\r\n \"fqdn\": \"pubippstestrg672.eastasia.cloudapp.azure.com.\"\r\n }\r\n },\r\n \"location\": \"East Asia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "551" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "1e029bc3-33c5-4b84-9d95-eaeceafa129b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"2c5b2aeb-6f96-4753-9bfc-6c8377ca2bd1\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31992" + ], + "x-ms-correlation-request-id": [ + "f668d234-92cd-41ea-b74a-adffcae22a99" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T174918Z:f668d234-92cd-41ea-b74a-adffcae22a99" + ], + "Date": [ + "Wed, 22 Apr 2015 17:49:17 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Network/publicIPAddresses/pubippstestrg672/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNjcyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9wdWJpcHBzdGVzdHJnNjcyLz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubippstestrg672\"\r\n }\r\n },\r\n \"name\": \"pubippstestrg672\",\r\n \"type\": \"microsoft.network/publicIPAddresses\",\r\n \"location\": \"East Asia\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "255" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pubippstestrg672\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Network/publicIPAddresses/pubippstestrg672\",\r\n \"etag\": \"W/\\\"49e255d4-697e-4ed6-9edf-a2e1a0adb78a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubippstestrg672\",\r\n \"fqdn\": \"pubippstestrg672.eastasia.cloudapp.azure.com.\"\r\n }\r\n },\r\n \"location\": \"East Asia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "550" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "5c66a6a8-61b8-4308-aac6-62fe70bccb8f" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/eastasia/operations/5c66a6a8-61b8-4308-aac6-62fe70bccb8f?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "8840b783-27f1-4192-8e43-50772df71bff" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T174917Z:8840b783-27f1-4192-8e43-50772df71bff" + ], + "Date": [ + "Wed, 22 Apr 2015 17:49:16 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/eastasia/operations/5c66a6a8-61b8-4308-aac6-62fe70bccb8f?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy81YzY2YTZhOC02MWI4LTQzMDgtYWFjNi02MmZlNzBiY2NiOGY/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-05-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "bfac120a-2269-41da-899d-1eace54d84e5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31994" + ], + "x-ms-correlation-request-id": [ + "b941c852-cf7b-40f0-ab49-7b022aaaf1bd" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T174917Z:b941c852-cf7b-40f0-ab49-7b022aaaf1bd" + ], + "Date": [ + "Wed, 22 Apr 2015 17:49:17 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Network/networkInterfaces/nicpstestrg672?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNjcyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWNwc3Rlc3RyZzY3Mj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "69" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "3b68a91f-738e-4be6-970a-7a1b883989b7" + ], + "x-ms-correlation-request-id": [ + "3b68a91f-738e-4be6-970a-7a1b883989b7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T174918Z:3b68a91f-738e-4be6-970a-7a1b883989b7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 17:49:17 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Network/networkInterfaces/nicpstestrg672?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNjcyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWNwc3Rlc3RyZzY3Mj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"nicpstestrg672\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Network/networkInterfaces/nicpstestrg672\",\r\n \"etag\": \"W/\\\"bf93a2a6-b665-4acd-8e83-b645522d0321\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Network/networkInterfaces/nicpstestrg672/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"bf93a2a6-b665-4acd-8e83-b645522d0321\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Network/publicIPAddresses/pubippstestrg672\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Network/virtualNetworks/vnetpstestrg672/subnets/subnetpstestrg672\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"East Asia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1293" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "acb19f97-5896-4959-af24-4d68d4336e90" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"bf93a2a6-b665-4acd-8e83-b645522d0321\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31989" + ], + "x-ms-correlation-request-id": [ + "823ec0e8-8175-46ca-9ce0-2de75ca0a0c6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T174924Z:823ec0e8-8175-46ca-9ce0-2de75ca0a0c6" + ], + "Date": [ + "Wed, 22 Apr 2015 17:49:24 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Network/networkInterfaces/nicpstestrg672?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNjcyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWNwc3Rlc3RyZzY3Mj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"nicpstestrg672\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Network/networkInterfaces/nicpstestrg672\",\r\n \"etag\": \"W/\\\"bf93a2a6-b665-4acd-8e83-b645522d0321\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Network/networkInterfaces/nicpstestrg672/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"bf93a2a6-b665-4acd-8e83-b645522d0321\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Network/publicIPAddresses/pubippstestrg672\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Network/virtualNetworks/vnetpstestrg672/subnets/subnetpstestrg672\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"East Asia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1293" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c16edcfb-cd4f-4eae-96d4-7cdd8b982e40" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"bf93a2a6-b665-4acd-8e83-b645522d0321\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31988" + ], + "x-ms-correlation-request-id": [ + "8fad07c6-c8fc-4c51-aca3-68cf471a7539" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T174925Z:8fad07c6-c8fc-4c51-aca3-68cf471a7539" + ], + "Date": [ + "Wed, 22 Apr 2015 17:49:24 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Network/networkInterfaces/nicpstestrg672?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNjcyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWNwc3Rlc3RyZzY3Mj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Network/virtualNetworks/vnetpstestrg672/subnets/subnetpstestrg672\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Network/publicIPAddresses/pubippstestrg672\"\r\n },\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": []\r\n },\r\n \"name\": \"ipconfig1\"\r\n }\r\n ],\r\n \"primary\": false\r\n },\r\n \"name\": \"nicpstestrg672\",\r\n \"type\": \"microsoft.network/networkInterfaces\",\r\n \"location\": \"East Asia\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "854" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"nicpstestrg672\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Network/networkInterfaces/nicpstestrg672\",\r\n \"etag\": \"W/\\\"bf93a2a6-b665-4acd-8e83-b645522d0321\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Network/networkInterfaces/nicpstestrg672/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"bf93a2a6-b665-4acd-8e83-b645522d0321\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Network/publicIPAddresses/pubippstestrg672\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Network/virtualNetworks/vnetpstestrg672/subnets/subnetpstestrg672\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"East Asia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1293" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "85266675-c7ac-4261-b796-15308e0b30d9" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/eastasia/operations/85266675-c7ac-4261-b796-15308e0b30d9?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "274f3ce3-1449-4cff-b0e6-78ced2d7d414" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T174923Z:274f3ce3-1449-4cff-b0e6-78ced2d7d414" + ], + "Date": [ + "Wed, 22 Apr 2015 17:49:23 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/eastasia/operations/85266675-c7ac-4261-b796-15308e0b30d9?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy84NTI2NjY3NS1jN2FjLTQyNjEtYjc5Ni0xNTMwOGUwYjMwZDk/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-05-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "4ad83bbe-7827-4645-9e9c-24200715c8dc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31990" + ], + "x-ms-correlation-request-id": [ + "f8467f34-32c5-4610-9ce0-8219f13e67ef" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T174924Z:f8467f34-32c5-4610-9ce0-8219f13e67ef" + ], + "Date": [ + "Wed, 22 Apr 2015 17:49:24 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Storage/storageAccounts/stopstestrg672?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNjcyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvc3RvcHN0ZXN0cmc2NzI/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"East Asia\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "91" + ], + "x-ms-client-request-id": [ + "e69116a2-b911-4036-bc3e-00a9057a959f" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "25" + ], + "x-ms-request-id": [ + "b79060c5-fdf1-44e5-9e10-b141a9c75ee4" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/b79060c5-fdf1-44e5-9e10-b141a9c75ee4?monitor=true&api-version=2015-05-01-preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "6ab14655-51fb-4e67-8a83-3ca374fa7769" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T174920Z:6ab14655-51fb-4e67-8a83-3ca374fa7769" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Wed, 22 Apr 2015 17:49:19 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/b79060c5-fdf1-44e5-9e10-b141a9c75ee4?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2I3OTA2MGM1LWZkZjEtNDRlNS05ZTEwLWIxNDFhOWM3NWVlND9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d40c0b87-ddcb-4924-833d-d5af53d7162f" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "25" + ], + "x-ms-request-id": [ + "122c3841-1fd9-4781-a52f-d475caadca23" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/b79060c5-fdf1-44e5-9e10-b141a9c75ee4?monitor=true&api-version=2015-05-01-preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31997" + ], + "x-ms-correlation-request-id": [ + "df065780-34be-4523-9f3b-f9837d631605" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T174920Z:df065780-34be-4523-9f3b-f9837d631605" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Wed, 22 Apr 2015 17:49:20 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/b79060c5-fdf1-44e5-9e10-b141a9c75ee4?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2I3OTA2MGM1LWZkZjEtNDRlNS05ZTEwLWIxNDFhOWM3NWVlND9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7dddedc3-24a3-4ef9-9a79-1e82478b8fd2" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n },\r\n \"location\": \"East Asia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "68" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "f5061268-995a-4763-ba8d-641a0bb308ce" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31996" + ], + "x-ms-correlation-request-id": [ + "527d02e5-5798-4592-abdb-dfbaed1fa353" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T174945Z:527d02e5-5798-4592-abdb-dfbaed1fa353" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Wed, 22 Apr 2015 17:49:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Storage/storageAccounts/stopstestrg672?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNjcyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvc3RvcHN0ZXN0cmc2NzI/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0bbc1cfc-1b88-4a87-8dcc-a2b287d8407c" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Storage/storageAccounts/stopstestrg672\",\r\n \"name\": \"stopstestrg672\",\r\n \"location\": \"East Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stopstestrg672.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg672.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg672.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"East Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"Southeast Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-04-22T17:49:16.8292833Z\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "677" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e60b03dd-1d1d-45ff-ba2d-6fb68b719d35" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31995" + ], + "x-ms-correlation-request-id": [ + "3953fd3a-9923-477b-85a1-6325aa834ba1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T174946Z:3953fd3a-9923-477b-85a1-6325aa834ba1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Wed, 22 Apr 2015 17:49:45 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Storage/storageAccounts/stopstestrg672?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNjcyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvc3RvcHN0ZXN0cmc2NzI/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fae8e28b-9ecf-4832-a866-b690f29af54b" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Storage/storageAccounts/stopstestrg672\",\r\n \"name\": \"stopstestrg672\",\r\n \"location\": \"East Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stopstestrg672.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg672.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg672.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"East Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"Southeast Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-04-22T17:49:16.8292833Z\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "677" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e68afeac-d9fe-4569-bf51-5667780623e6" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31994" + ], + "x-ms-correlation-request-id": [ + "89c81b0a-9580-4d73-b3d4-faf6eccc0efa" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T174946Z:89c81b0a-9580-4d73-b3d4-faf6eccc0efa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Wed, 22 Apr 2015 17:49:45 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Storage/storageAccounts/stopstestrg672/listKeys?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNjcyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvc3RvcHN0ZXN0cmc2NzIvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "73be9f29-c000-439b-b9a1-a8c70cde46b5" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"key1\": \"q2PtMD6MPdqsoJLllbr+gagraH8ykh4Q/RZGhotlabsQ1Ju+MgOLTg8k+iUJ0OP4jZM8ba6yBNk+RfzTdze+wg==\",\r\n \"key2\": \"K1vTzzLKix5gBm710X4CKcx2NsvhUvUeB4Pv8mWhC5jSayp+2oBZ813MQ/bs9Vv5r+7TwHDVH3GoBsw0NMEfYA==\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "0afebd97-47a1-48a4-b81e-fabdf849473e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "dd974c73-d90a-4775-a893-9d5b06b53075" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T174946Z:dd974c73-d90a-4775-a893-9d5b06b53075" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Wed, 22 Apr 2015 17:49:45 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Compute/virtualMachines/vmpstestrg672?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNjcyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvdm1wc3Rlc3RyZzY3Mj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"sourceImage\": {\r\n \"id\": \"/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/services/images/a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-Datacenter-201503.01-en.us-127GB.vhd\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"osDisk\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg672.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"createOption\": \"FromImage\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"testDataDisk1\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg672.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"createOption\": \"Empty\"\r\n },\r\n {\r\n \"lun\": 2,\r\n \"diskSizeGB\": 11,\r\n \"name\": \"testDataDisk2\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg672.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"createOption\": \"Empty\"\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123pstestrg672\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true\r\n }\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Network/networkInterfaces/nicpstestrg672\"\r\n }\r\n ]\r\n }\r\n },\r\n \"name\": \"vmpstestrg672\",\r\n \"location\": \"East Asia\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "1739" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"sourceImage\": {\r\n \"id\": \"/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/services/images/a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-Datacenter-201503.01-en.us-127GB.vhd\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg672.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg672.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\"\r\n },\r\n {\r\n \"lun\": 2,\r\n \"diskSizeGB\": 11,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg672.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\"\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Network/networkInterfaces/nicpstestrg672\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Compute/virtualMachines/vmpstestrg672\",\r\n \"name\": \"vmpstestrg672\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {}\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1951" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/70d5a3b6-890f-425e-b9b8-4fa3f30a8c7b?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "70d5a3b6-890f-425e-b9b8-4fa3f30a8c7b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "82e7f6e8-c4d9-4318-b66c-a8231a41f010" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T174957Z:82e7f6e8-c4d9-4318-b66c-a8231a41f010" + ], + "Date": [ + "Wed, 22 Apr 2015 17:49:57 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/70d5a3b6-890f-425e-b9b8-4fa3f30a8c7b?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy83MGQ1YTNiNi04OTBmLTQyNWUtYjliOC00ZmEzZjMwYThjN2I/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"70d5a3b6-890f-425e-b9b8-4fa3f30a8c7b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T10:49:52.3152431-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "9b5cea72-0580-470b-88f0-f85f1e8dbb9b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31999" + ], + "x-ms-correlation-request-id": [ + "aaf329d6-8fd8-4b77-9bab-51cd6fdbbf2e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T174958Z:aaf329d6-8fd8-4b77-9bab-51cd6fdbbf2e" + ], + "Date": [ + "Wed, 22 Apr 2015 17:49:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/70d5a3b6-890f-425e-b9b8-4fa3f30a8c7b?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy83MGQ1YTNiNi04OTBmLTQyNWUtYjliOC00ZmEzZjMwYThjN2I/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"70d5a3b6-890f-425e-b9b8-4fa3f30a8c7b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T10:49:52.3152431-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "45b69a21-079c-407b-ad44-2a1da077c0b1" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31998" + ], + "x-ms-correlation-request-id": [ + "d0d94295-cecb-454c-8c40-ae223c7f5d02" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T175029Z:d0d94295-cecb-454c-8c40-ae223c7f5d02" + ], + "Date": [ + "Wed, 22 Apr 2015 17:50:28 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/70d5a3b6-890f-425e-b9b8-4fa3f30a8c7b?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy83MGQ1YTNiNi04OTBmLTQyNWUtYjliOC00ZmEzZjMwYThjN2I/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"70d5a3b6-890f-425e-b9b8-4fa3f30a8c7b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T10:49:52.3152431-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d87366eb-0e69-45fc-b1e5-48a7fc9c35c5" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31997" + ], + "x-ms-correlation-request-id": [ + "de7264dd-7c54-4fab-9d50-d5509a6b08e3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T175100Z:de7264dd-7c54-4fab-9d50-d5509a6b08e3" + ], + "Date": [ + "Wed, 22 Apr 2015 17:50:59 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/70d5a3b6-890f-425e-b9b8-4fa3f30a8c7b?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy83MGQ1YTNiNi04OTBmLTQyNWUtYjliOC00ZmEzZjMwYThjN2I/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"70d5a3b6-890f-425e-b9b8-4fa3f30a8c7b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T10:49:52.3152431-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3e3fc423-61e9-47a9-9c10-ce5243104a77" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31996" + ], + "x-ms-correlation-request-id": [ + "2b83bcd1-ad97-4a27-9f24-0a76ab189be1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T175131Z:2b83bcd1-ad97-4a27-9f24-0a76ab189be1" + ], + "Date": [ + "Wed, 22 Apr 2015 17:51:31 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/70d5a3b6-890f-425e-b9b8-4fa3f30a8c7b?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy83MGQ1YTNiNi04OTBmLTQyNWUtYjliOC00ZmEzZjMwYThjN2I/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"70d5a3b6-890f-425e-b9b8-4fa3f30a8c7b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T10:49:52.3152431-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a2d4d3b1-aa3c-4ec5-9641-e42c2e3f52a8" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31995" + ], + "x-ms-correlation-request-id": [ + "a9354fdc-1454-4374-9fac-746c7e05c8d4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T175202Z:a9354fdc-1454-4374-9fac-746c7e05c8d4" + ], + "Date": [ + "Wed, 22 Apr 2015 17:52:01 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/70d5a3b6-890f-425e-b9b8-4fa3f30a8c7b?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy83MGQ1YTNiNi04OTBmLTQyNWUtYjliOC00ZmEzZjMwYThjN2I/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"70d5a3b6-890f-425e-b9b8-4fa3f30a8c7b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T10:49:52.3152431-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "1ba8b766-5788-4053-bc00-b111d6301d6c" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31994" + ], + "x-ms-correlation-request-id": [ + "04136a86-2c70-49eb-be8f-461fb4512268" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T175233Z:04136a86-2c70-49eb-be8f-461fb4512268" + ], + "Date": [ + "Wed, 22 Apr 2015 17:52:32 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/70d5a3b6-890f-425e-b9b8-4fa3f30a8c7b?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy83MGQ1YTNiNi04OTBmLTQyNWUtYjliOC00ZmEzZjMwYThjN2I/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"70d5a3b6-890f-425e-b9b8-4fa3f30a8c7b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T10:49:52.3152431-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c28c6db4-1b00-4f21-ba60-3e1a6f073d93" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31993" + ], + "x-ms-correlation-request-id": [ + "ae211332-e003-4b9b-b8cb-745bc029eca5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T175304Z:ae211332-e003-4b9b-b8cb-745bc029eca5" + ], + "Date": [ + "Wed, 22 Apr 2015 17:53:03 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/70d5a3b6-890f-425e-b9b8-4fa3f30a8c7b?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy83MGQ1YTNiNi04OTBmLTQyNWUtYjliOC00ZmEzZjMwYThjN2I/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"70d5a3b6-890f-425e-b9b8-4fa3f30a8c7b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T10:49:52.3152431-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "975aec59-d4f7-4da5-a3db-a29f27eabde4" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31992" + ], + "x-ms-correlation-request-id": [ + "33909fe4-41c2-4727-9148-aee4c8e42ab4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T175335Z:33909fe4-41c2-4727-9148-aee4c8e42ab4" + ], + "Date": [ + "Wed, 22 Apr 2015 17:53:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/70d5a3b6-890f-425e-b9b8-4fa3f30a8c7b?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy83MGQ1YTNiNi04OTBmLTQyNWUtYjliOC00ZmEzZjMwYThjN2I/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"70d5a3b6-890f-425e-b9b8-4fa3f30a8c7b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T10:49:52.3152431-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "4612b609-275f-4383-85c4-fe9c8d89ae8a" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31991" + ], + "x-ms-correlation-request-id": [ + "e20ca1e0-02f4-44f3-ad82-08102949ad82" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T175406Z:e20ca1e0-02f4-44f3-ad82-08102949ad82" + ], + "Date": [ + "Wed, 22 Apr 2015 17:54:06 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/70d5a3b6-890f-425e-b9b8-4fa3f30a8c7b?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy83MGQ1YTNiNi04OTBmLTQyNWUtYjliOC00ZmEzZjMwYThjN2I/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"70d5a3b6-890f-425e-b9b8-4fa3f30a8c7b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T10:49:52.3152431-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d671fff8-911b-428a-a0ce-b6dd4bc35f5f" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31990" + ], + "x-ms-correlation-request-id": [ + "6b0d97f1-0770-46af-9578-155468fb04f6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T175437Z:6b0d97f1-0770-46af-9578-155468fb04f6" + ], + "Date": [ + "Wed, 22 Apr 2015 17:54:37 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/70d5a3b6-890f-425e-b9b8-4fa3f30a8c7b?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy83MGQ1YTNiNi04OTBmLTQyNWUtYjliOC00ZmEzZjMwYThjN2I/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"70d5a3b6-890f-425e-b9b8-4fa3f30a8c7b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T10:49:52.3152431-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f59525e8-979b-4a65-b3ff-c74bbd4ea2b6" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31989" + ], + "x-ms-correlation-request-id": [ + "c9ecdcee-f75c-4cdb-84b5-f5663d2db3fb" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T175508Z:c9ecdcee-f75c-4cdb-84b5-f5663d2db3fb" + ], + "Date": [ + "Wed, 22 Apr 2015 17:55:08 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/70d5a3b6-890f-425e-b9b8-4fa3f30a8c7b?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy83MGQ1YTNiNi04OTBmLTQyNWUtYjliOC00ZmEzZjMwYThjN2I/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"70d5a3b6-890f-425e-b9b8-4fa3f30a8c7b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T10:49:52.3152431-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "6b41550c-1bb3-45ed-a7d9-ce30023bae78" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31988" + ], + "x-ms-correlation-request-id": [ + "edede42b-d48e-4079-bd9f-30a134d02480" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T175539Z:edede42b-d48e-4079-bd9f-30a134d02480" + ], + "Date": [ + "Wed, 22 Apr 2015 17:55:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/70d5a3b6-890f-425e-b9b8-4fa3f30a8c7b?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy83MGQ1YTNiNi04OTBmLTQyNWUtYjliOC00ZmEzZjMwYThjN2I/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"70d5a3b6-890f-425e-b9b8-4fa3f30a8c7b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T10:49:52.3152431-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "14c2c0fe-b4cc-4bd7-890e-31a7e0e09c5c" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31987" + ], + "x-ms-correlation-request-id": [ + "aaffbbd2-ac42-4d48-b7b1-510a9f3ebb3e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T175610Z:aaffbbd2-ac42-4d48-b7b1-510a9f3ebb3e" + ], + "Date": [ + "Wed, 22 Apr 2015 17:56:09 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/70d5a3b6-890f-425e-b9b8-4fa3f30a8c7b?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy83MGQ1YTNiNi04OTBmLTQyNWUtYjliOC00ZmEzZjMwYThjN2I/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"70d5a3b6-890f-425e-b9b8-4fa3f30a8c7b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T10:49:52.3152431-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3cfde5dc-2af6-475c-8b08-f910394026d3" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31986" + ], + "x-ms-correlation-request-id": [ + "42e5d651-8fbb-4d5c-841c-2a5461244ec9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T175641Z:42e5d651-8fbb-4d5c-841c-2a5461244ec9" + ], + "Date": [ + "Wed, 22 Apr 2015 17:56:41 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/70d5a3b6-890f-425e-b9b8-4fa3f30a8c7b?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy83MGQ1YTNiNi04OTBmLTQyNWUtYjliOC00ZmEzZjMwYThjN2I/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"70d5a3b6-890f-425e-b9b8-4fa3f30a8c7b\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T10:49:52.3152431-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "6a121e41-f42b-47ea-b29d-efc6343e3faa" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31985" + ], + "x-ms-correlation-request-id": [ + "cc06b545-d71f-4c87-b0be-e6e100d1a2d6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T175712Z:cc06b545-d71f-4c87-b0be-e6e100d1a2d6" + ], + "Date": [ + "Wed, 22 Apr 2015 17:57:11 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/70d5a3b6-890f-425e-b9b8-4fa3f30a8c7b?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy83MGQ1YTNiNi04OTBmLTQyNWUtYjliOC00ZmEzZjMwYThjN2I/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"70d5a3b6-890f-425e-b9b8-4fa3f30a8c7b\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-04-22T10:49:52.3152431-07:00\",\r\n \"endTime\": \"2015-04-22T10:57:32.9812303-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "9a0e9991-eda6-4dd7-95e9-4e79532ce96d" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31984" + ], + "x-ms-correlation-request-id": [ + "32ba7e71-c654-4163-b099-c585c6cc50ab" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T175743Z:32ba7e71-c654-4163-b099-c585c6cc50ab" + ], + "Date": [ + "Wed, 22 Apr 2015 17:57:43 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Compute/virtualMachines/vmpstestrg672/extensions/csetest?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNjcyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvdm1wc3Rlc3RyZzY3Mi9leHRlbnNpb25zL2NzZXRlc3Q/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"CustomScriptExtension\",\r\n \"typeHandlerVersion\": \"1.1\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"commandToExecute\": \"powershell -ExecutionPolicy Unrestricted -file a.exe \",\r\n \"fileUris\": [\r\n \"https://stopstestrg672.blob.core.windows.net/script/a.exe?sv=2014-02-14&sr=b&sig=bBK9Cji4DKFUHOWwW4ZfqOI4n44cYWSq14NP3YdL24U%3D&se=2015-04-23T17%3A57%3A43Z&sp=r\"\r\n ]\r\n },\r\n \"protectedSettings\": {\r\n \"storageAccountName\": \"stopstestrg672\",\r\n \"storageAccountKey\": \"q2PtMD6MPdqsoJLllbr+gagraH8ykh4Q/RZGhotlabsQ1Ju+MgOLTg8k+iUJ0OP4jZM8ba6yBNk+RfzTdze+wg==\"\r\n }\r\n },\r\n \"name\": \"csetest\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"East Asia\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "816" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"CustomScriptExtension\",\r\n \"typeHandlerVersion\": \"1.1\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"commandToExecute\": \"powershell -ExecutionPolicy Unrestricted -file a.exe \",\r\n \"fileUris\": [\r\n \"https://stopstestrg672.blob.core.windows.net/script/a.exe?sv=2014-02-14&sr=b&sig=bBK9Cji4DKFUHOWwW4ZfqOI4n44cYWSq14NP3YdL24U%3D&se=2015-04-23T17%3A57%3A43Z&sp=r\"\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Compute/virtualMachines/vmpstestrg672/extensions/csetest\",\r\n \"name\": \"csetest\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {}\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "777" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/f8d17ade-b4e0-4726-a2e5-3d73b1ee8808?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f8d17ade-b4e0-4726-a2e5-3d73b1ee8808" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "5410759e-a07e-4fcd-ac56-ddc220d43ac9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T175755Z:5410759e-a07e-4fcd-ac56-ddc220d43ac9" + ], + "Date": [ + "Wed, 22 Apr 2015 17:57:54 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/f8d17ade-b4e0-4726-a2e5-3d73b1ee8808?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9mOGQxN2FkZS1iNGUwLTQ3MjYtYTJlNS0zZDczYjFlZTg4MDg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f8d17ade-b4e0-4726-a2e5-3d73b1ee8808\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T10:57:48.9653576-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3d9e27bc-0894-4dd7-8066-b8400125ed21" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31983" + ], + "x-ms-correlation-request-id": [ + "7e32f9c2-4b8a-450e-bcbb-eaffa342b252" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T175756Z:7e32f9c2-4b8a-450e-bcbb-eaffa342b252" + ], + "Date": [ + "Wed, 22 Apr 2015 17:57:55 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/f8d17ade-b4e0-4726-a2e5-3d73b1ee8808?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9mOGQxN2FkZS1iNGUwLTQ3MjYtYTJlNS0zZDczYjFlZTg4MDg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f8d17ade-b4e0-4726-a2e5-3d73b1ee8808\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T10:57:48.9653576-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "9a19d0d9-b927-4865-9b74-27cc774b36f7" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31982" + ], + "x-ms-correlation-request-id": [ + "6973d2c6-f222-408b-92d2-910c121f41b3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T175827Z:6973d2c6-f222-408b-92d2-910c121f41b3" + ], + "Date": [ + "Wed, 22 Apr 2015 17:58:26 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/f8d17ade-b4e0-4726-a2e5-3d73b1ee8808?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9mOGQxN2FkZS1iNGUwLTQ3MjYtYTJlNS0zZDczYjFlZTg4MDg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f8d17ade-b4e0-4726-a2e5-3d73b1ee8808\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T10:57:48.9653576-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "4461c82e-1162-416d-ab65-1b839c8e25d4" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31981" + ], + "x-ms-correlation-request-id": [ + "52496619-cdec-4cc1-90bb-657b679ae048" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T175858Z:52496619-cdec-4cc1-90bb-657b679ae048" + ], + "Date": [ + "Wed, 22 Apr 2015 17:58:57 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/f8d17ade-b4e0-4726-a2e5-3d73b1ee8808?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9mOGQxN2FkZS1iNGUwLTQ3MjYtYTJlNS0zZDczYjFlZTg4MDg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f8d17ade-b4e0-4726-a2e5-3d73b1ee8808\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T10:57:48.9653576-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "bde17e83-6103-4174-a2eb-16c18f954b6d" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31980" + ], + "x-ms-correlation-request-id": [ + "491b0a48-b4bb-4764-8b19-6faa03360f5f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T175929Z:491b0a48-b4bb-4764-8b19-6faa03360f5f" + ], + "Date": [ + "Wed, 22 Apr 2015 17:59:29 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/f8d17ade-b4e0-4726-a2e5-3d73b1ee8808?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9mOGQxN2FkZS1iNGUwLTQ3MjYtYTJlNS0zZDczYjFlZTg4MDg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f8d17ade-b4e0-4726-a2e5-3d73b1ee8808\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T10:57:48.9653576-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f32cc749-7ba4-488e-921c-2e43186ea70f" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31979" + ], + "x-ms-correlation-request-id": [ + "0d2e71c2-f875-468b-b1b9-e5a714ed555d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T180000Z:0d2e71c2-f875-468b-b1b9-e5a714ed555d" + ], + "Date": [ + "Wed, 22 Apr 2015 17:59:59 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/f8d17ade-b4e0-4726-a2e5-3d73b1ee8808?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9mOGQxN2FkZS1iNGUwLTQ3MjYtYTJlNS0zZDczYjFlZTg4MDg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f8d17ade-b4e0-4726-a2e5-3d73b1ee8808\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T10:57:48.9653576-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "cd1349d1-d4a5-4cba-845c-48b2fc789b68" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31978" + ], + "x-ms-correlation-request-id": [ + "277ebe90-556a-442b-a9a1-b46feb8a16a7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T180031Z:277ebe90-556a-442b-a9a1-b46feb8a16a7" + ], + "Date": [ + "Wed, 22 Apr 2015 18:00:30 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/f8d17ade-b4e0-4726-a2e5-3d73b1ee8808?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9mOGQxN2FkZS1iNGUwLTQ3MjYtYTJlNS0zZDczYjFlZTg4MDg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f8d17ade-b4e0-4726-a2e5-3d73b1ee8808\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T10:57:48.9653576-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "5104460a-24ec-4efc-a03c-56dbee6a67b5" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31977" + ], + "x-ms-correlation-request-id": [ + "8107e7aa-d9f5-43df-b8b7-de0424048182" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T180102Z:8107e7aa-d9f5-43df-b8b7-de0424048182" + ], + "Date": [ + "Wed, 22 Apr 2015 18:01:02 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/f8d17ade-b4e0-4726-a2e5-3d73b1ee8808?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9mOGQxN2FkZS1iNGUwLTQ3MjYtYTJlNS0zZDczYjFlZTg4MDg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f8d17ade-b4e0-4726-a2e5-3d73b1ee8808\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T10:57:48.9653576-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b8d6ae20-39e7-45fc-acd5-a5a918c9a99b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31976" + ], + "x-ms-correlation-request-id": [ + "bd77ec38-29f6-4acb-8638-a35a35ffc0ff" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T180133Z:bd77ec38-29f6-4acb-8638-a35a35ffc0ff" + ], + "Date": [ + "Wed, 22 Apr 2015 18:01:33 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/f8d17ade-b4e0-4726-a2e5-3d73b1ee8808?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9mOGQxN2FkZS1iNGUwLTQ3MjYtYTJlNS0zZDczYjFlZTg4MDg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f8d17ade-b4e0-4726-a2e5-3d73b1ee8808\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T10:57:48.9653576-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c22991e8-fff0-4fa1-82ec-e7313fa39fd7" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31975" + ], + "x-ms-correlation-request-id": [ + "8576cb4c-7e63-4325-9816-4878ac3772c9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T180204Z:8576cb4c-7e63-4325-9816-4878ac3772c9" + ], + "Date": [ + "Wed, 22 Apr 2015 18:02:03 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/f8d17ade-b4e0-4726-a2e5-3d73b1ee8808?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9mOGQxN2FkZS1iNGUwLTQ3MjYtYTJlNS0zZDczYjFlZTg4MDg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f8d17ade-b4e0-4726-a2e5-3d73b1ee8808\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T10:57:48.9653576-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "0b9e2649-bf24-453f-bdfd-11e6e69afc07" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31974" + ], + "x-ms-correlation-request-id": [ + "f0022ff7-9066-4d94-9e18-5389f35c7382" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T180235Z:f0022ff7-9066-4d94-9e18-5389f35c7382" + ], + "Date": [ + "Wed, 22 Apr 2015 18:02:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/f8d17ade-b4e0-4726-a2e5-3d73b1ee8808?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9mOGQxN2FkZS1iNGUwLTQ3MjYtYTJlNS0zZDczYjFlZTg4MDg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f8d17ade-b4e0-4726-a2e5-3d73b1ee8808\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T10:57:48.9653576-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "e1a955b2-781d-4ec8-81d7-d9c6eaacead4" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31973" + ], + "x-ms-correlation-request-id": [ + "acf3361d-0563-4b4f-9ee7-60297deadc91" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T180306Z:acf3361d-0563-4b4f-9ee7-60297deadc91" + ], + "Date": [ + "Wed, 22 Apr 2015 18:03:05 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/f8d17ade-b4e0-4726-a2e5-3d73b1ee8808?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9mOGQxN2FkZS1iNGUwLTQ3MjYtYTJlNS0zZDczYjFlZTg4MDg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f8d17ade-b4e0-4726-a2e5-3d73b1ee8808\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T10:57:48.9653576-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "00e8f77d-f68e-498d-a483-b138aed07eca" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31972" + ], + "x-ms-correlation-request-id": [ + "7bcd42ea-836d-4e15-b0c6-1c4b4008b4e4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T180337Z:7bcd42ea-836d-4e15-b0c6-1c4b4008b4e4" + ], + "Date": [ + "Wed, 22 Apr 2015 18:03:36 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/f8d17ade-b4e0-4726-a2e5-3d73b1ee8808?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9mOGQxN2FkZS1iNGUwLTQ3MjYtYTJlNS0zZDczYjFlZTg4MDg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f8d17ade-b4e0-4726-a2e5-3d73b1ee8808\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T10:57:48.9653576-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "9d335991-e6e3-4dec-9f83-dcefe90b0331" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31971" + ], + "x-ms-correlation-request-id": [ + "975b0ac6-e4d9-4d48-aefc-6e21b8f07da3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T180407Z:975b0ac6-e4d9-4d48-aefc-6e21b8f07da3" + ], + "Date": [ + "Wed, 22 Apr 2015 18:04:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/f8d17ade-b4e0-4726-a2e5-3d73b1ee8808?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9mOGQxN2FkZS1iNGUwLTQ3MjYtYTJlNS0zZDczYjFlZTg4MDg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f8d17ade-b4e0-4726-a2e5-3d73b1ee8808\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T10:57:48.9653576-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "996d5006-8c4c-4e73-b275-690084c56037" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31970" + ], + "x-ms-correlation-request-id": [ + "3bd16e7a-3a1d-4804-86d7-f1f9a0cac219" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T180438Z:3bd16e7a-3a1d-4804-86d7-f1f9a0cac219" + ], + "Date": [ + "Wed, 22 Apr 2015 18:04:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/f8d17ade-b4e0-4726-a2e5-3d73b1ee8808?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9mOGQxN2FkZS1iNGUwLTQ3MjYtYTJlNS0zZDczYjFlZTg4MDg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f8d17ade-b4e0-4726-a2e5-3d73b1ee8808\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T10:57:48.9653576-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "aab61a17-128f-47f2-96a9-8dd4ed2a36c4" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31969" + ], + "x-ms-correlation-request-id": [ + "df99c922-e4b8-46e4-9c37-b7657a13463d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T180509Z:df99c922-e4b8-46e4-9c37-b7657a13463d" + ], + "Date": [ + "Wed, 22 Apr 2015 18:05:09 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/f8d17ade-b4e0-4726-a2e5-3d73b1ee8808?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9mOGQxN2FkZS1iNGUwLTQ3MjYtYTJlNS0zZDczYjFlZTg4MDg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f8d17ade-b4e0-4726-a2e5-3d73b1ee8808\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T10:57:48.9653576-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "6d67ff88-1d93-4205-bf4f-8c74f25c077b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31968" + ], + "x-ms-correlation-request-id": [ + "bfbe090d-e525-4fb6-9f46-70ae85c090fa" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T180541Z:bfbe090d-e525-4fb6-9f46-70ae85c090fa" + ], + "Date": [ + "Wed, 22 Apr 2015 18:05:40 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/f8d17ade-b4e0-4726-a2e5-3d73b1ee8808?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9mOGQxN2FkZS1iNGUwLTQ3MjYtYTJlNS0zZDczYjFlZTg4MDg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f8d17ade-b4e0-4726-a2e5-3d73b1ee8808\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T10:57:48.9653576-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "e5a15654-a1fa-4743-86cc-2f47a23dcaef" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31967" + ], + "x-ms-correlation-request-id": [ + "bfbc0c3d-a922-4b48-952c-0c4ab5e77138" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T180612Z:bfbc0c3d-a922-4b48-952c-0c4ab5e77138" + ], + "Date": [ + "Wed, 22 Apr 2015 18:06:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/f8d17ade-b4e0-4726-a2e5-3d73b1ee8808?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9mOGQxN2FkZS1iNGUwLTQ3MjYtYTJlNS0zZDczYjFlZTg4MDg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f8d17ade-b4e0-4726-a2e5-3d73b1ee8808\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T10:57:48.9653576-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "610c0be3-7569-400f-9f76-9feda285a543" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31966" + ], + "x-ms-correlation-request-id": [ + "08fb495f-4aa9-4c75-a3bb-0cf71288b3c4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T180642Z:08fb495f-4aa9-4c75-a3bb-0cf71288b3c4" + ], + "Date": [ + "Wed, 22 Apr 2015 18:06:41 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/f8d17ade-b4e0-4726-a2e5-3d73b1ee8808?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9mOGQxN2FkZS1iNGUwLTQ3MjYtYTJlNS0zZDczYjFlZTg4MDg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f8d17ade-b4e0-4726-a2e5-3d73b1ee8808\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T10:57:48.9653576-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "46fc3092-043d-4372-8087-c6fa4ba95533" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31965" + ], + "x-ms-correlation-request-id": [ + "5795bbec-7a95-4eb9-b78f-8184144a88dc" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T180713Z:5795bbec-7a95-4eb9-b78f-8184144a88dc" + ], + "Date": [ + "Wed, 22 Apr 2015 18:07:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/f8d17ade-b4e0-4726-a2e5-3d73b1ee8808?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9mOGQxN2FkZS1iNGUwLTQ3MjYtYTJlNS0zZDczYjFlZTg4MDg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f8d17ade-b4e0-4726-a2e5-3d73b1ee8808\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T10:57:48.9653576-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "eb80b6c4-0088-436f-ab7d-cf1cbcfab921" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31964" + ], + "x-ms-correlation-request-id": [ + "f60d9854-7669-4470-bab7-aa3c4331e894" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T180744Z:f60d9854-7669-4470-bab7-aa3c4331e894" + ], + "Date": [ + "Wed, 22 Apr 2015 18:07:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/f8d17ade-b4e0-4726-a2e5-3d73b1ee8808?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9mOGQxN2FkZS1iNGUwLTQ3MjYtYTJlNS0zZDczYjFlZTg4MDg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f8d17ade-b4e0-4726-a2e5-3d73b1ee8808\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T10:57:48.9653576-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "260b4db1-5ce4-4878-b9b5-43481fa39d2f" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31963" + ], + "x-ms-correlation-request-id": [ + "df567a27-0fbe-4b6d-b71c-76035392ce0c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T180815Z:df567a27-0fbe-4b6d-b71c-76035392ce0c" + ], + "Date": [ + "Wed, 22 Apr 2015 18:08:15 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/f8d17ade-b4e0-4726-a2e5-3d73b1ee8808?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9mOGQxN2FkZS1iNGUwLTQ3MjYtYTJlNS0zZDczYjFlZTg4MDg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f8d17ade-b4e0-4726-a2e5-3d73b1ee8808\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T10:57:48.9653576-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d6ab5ea2-9ca7-4c92-9e01-221995def684" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31962" + ], + "x-ms-correlation-request-id": [ + "74e7eed2-8da4-4fd1-b4cc-94bdd68debf7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T180847Z:74e7eed2-8da4-4fd1-b4cc-94bdd68debf7" + ], + "Date": [ + "Wed, 22 Apr 2015 18:08:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/f8d17ade-b4e0-4726-a2e5-3d73b1ee8808?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9mOGQxN2FkZS1iNGUwLTQ3MjYtYTJlNS0zZDczYjFlZTg4MDg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f8d17ade-b4e0-4726-a2e5-3d73b1ee8808\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T10:57:48.9653576-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "bcc1de75-68e7-4667-b2ed-4ff9539f1a82" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31961" + ], + "x-ms-correlation-request-id": [ + "00f294ea-2f23-4178-9adb-e7ec28037891" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T180918Z:00f294ea-2f23-4178-9adb-e7ec28037891" + ], + "Date": [ + "Wed, 22 Apr 2015 18:09:17 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/f8d17ade-b4e0-4726-a2e5-3d73b1ee8808?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9mOGQxN2FkZS1iNGUwLTQ3MjYtYTJlNS0zZDczYjFlZTg4MDg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f8d17ade-b4e0-4726-a2e5-3d73b1ee8808\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T10:57:48.9653576-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "e87211c4-53d6-4acc-8e07-7c909d68154b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31960" + ], + "x-ms-correlation-request-id": [ + "6300b1a1-49be-427e-8cf4-80e13b20c3f0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T180949Z:6300b1a1-49be-427e-8cf4-80e13b20c3f0" + ], + "Date": [ + "Wed, 22 Apr 2015 18:09:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/f8d17ade-b4e0-4726-a2e5-3d73b1ee8808?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9mOGQxN2FkZS1iNGUwLTQ3MjYtYTJlNS0zZDczYjFlZTg4MDg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f8d17ade-b4e0-4726-a2e5-3d73b1ee8808\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T10:57:48.9653576-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f167c21a-2a02-4452-9b53-ce1a6109352c" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31959" + ], + "x-ms-correlation-request-id": [ + "2169fad3-eb16-453e-9b20-b3dc529133fb" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T181019Z:2169fad3-eb16-453e-9b20-b3dc529133fb" + ], + "Date": [ + "Wed, 22 Apr 2015 18:10:19 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/f8d17ade-b4e0-4726-a2e5-3d73b1ee8808?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9mOGQxN2FkZS1iNGUwLTQ3MjYtYTJlNS0zZDczYjFlZTg4MDg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f8d17ade-b4e0-4726-a2e5-3d73b1ee8808\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T10:57:48.9653576-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "517a87b9-f9ed-48a6-9eb5-49d442b100e6" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31958" + ], + "x-ms-correlation-request-id": [ + "4fe45f18-7038-4f31-b787-d3e5747cd806" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T181050Z:4fe45f18-7038-4f31-b787-d3e5747cd806" + ], + "Date": [ + "Wed, 22 Apr 2015 18:10:50 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/f8d17ade-b4e0-4726-a2e5-3d73b1ee8808?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9mOGQxN2FkZS1iNGUwLTQ3MjYtYTJlNS0zZDczYjFlZTg4MDg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f8d17ade-b4e0-4726-a2e5-3d73b1ee8808\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T10:57:48.9653576-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "be7cf188-6e10-4c89-9333-d7eb2362bb48" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31957" + ], + "x-ms-correlation-request-id": [ + "25f3d694-1422-4050-8da0-1afccb4d76c4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T181121Z:25f3d694-1422-4050-8da0-1afccb4d76c4" + ], + "Date": [ + "Wed, 22 Apr 2015 18:11:21 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/f8d17ade-b4e0-4726-a2e5-3d73b1ee8808?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9mOGQxN2FkZS1iNGUwLTQ3MjYtYTJlNS0zZDczYjFlZTg4MDg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f8d17ade-b4e0-4726-a2e5-3d73b1ee8808\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T10:57:48.9653576-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "867d027f-c693-4f25-ad64-f6d2628fd8b5" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31956" + ], + "x-ms-correlation-request-id": [ + "b22d9ef4-babf-49cf-a73f-cb9d4efbfa86" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T181152Z:b22d9ef4-babf-49cf-a73f-cb9d4efbfa86" + ], + "Date": [ + "Wed, 22 Apr 2015 18:11:51 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/f8d17ade-b4e0-4726-a2e5-3d73b1ee8808?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9mOGQxN2FkZS1iNGUwLTQ3MjYtYTJlNS0zZDczYjFlZTg4MDg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f8d17ade-b4e0-4726-a2e5-3d73b1ee8808\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T10:57:48.9653576-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "08227186-f162-4d00-9417-bae6de3e2406" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31955" + ], + "x-ms-correlation-request-id": [ + "3df1ec97-2b4d-475e-9809-5f04f212949d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T181223Z:3df1ec97-2b4d-475e-9809-5f04f212949d" + ], + "Date": [ + "Wed, 22 Apr 2015 18:12:23 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/f8d17ade-b4e0-4726-a2e5-3d73b1ee8808?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9mOGQxN2FkZS1iNGUwLTQ3MjYtYTJlNS0zZDczYjFlZTg4MDg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f8d17ade-b4e0-4726-a2e5-3d73b1ee8808\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T10:57:48.9653576-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "5299b597-fb68-4115-be3c-56e485266152" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31954" + ], + "x-ms-correlation-request-id": [ + "cbee11cb-a7a5-4890-b4f7-d1cc6704ea88" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T181254Z:cbee11cb-a7a5-4890-b4f7-d1cc6704ea88" + ], + "Date": [ + "Wed, 22 Apr 2015 18:12:54 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/f8d17ade-b4e0-4726-a2e5-3d73b1ee8808?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9mOGQxN2FkZS1iNGUwLTQ3MjYtYTJlNS0zZDczYjFlZTg4MDg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f8d17ade-b4e0-4726-a2e5-3d73b1ee8808\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T10:57:48.9653576-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "9685a4cd-12e9-4f9e-b88b-064645e939e7" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31953" + ], + "x-ms-correlation-request-id": [ + "1cf0a476-1095-454b-b40e-499c4b2f2fbe" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T181325Z:1cf0a476-1095-454b-b40e-499c4b2f2fbe" + ], + "Date": [ + "Wed, 22 Apr 2015 18:13:24 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/f8d17ade-b4e0-4726-a2e5-3d73b1ee8808?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9mOGQxN2FkZS1iNGUwLTQ3MjYtYTJlNS0zZDczYjFlZTg4MDg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f8d17ade-b4e0-4726-a2e5-3d73b1ee8808\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-22T10:57:48.9653576-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "fb7c3947-601b-4230-a20f-0e312adfa5da" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31952" + ], + "x-ms-correlation-request-id": [ + "245122ad-e5e2-45a8-96a2-f983a28888cc" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T181356Z:245122ad-e5e2-45a8-96a2-f983a28888cc" + ], + "Date": [ + "Wed, 22 Apr 2015 18:13:55 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastasia/operations/f8d17ade-b4e0-4726-a2e5-3d73b1ee8808?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9mOGQxN2FkZS1iNGUwLTQ3MjYtYTJlNS0zZDczYjFlZTg4MDg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f8d17ade-b4e0-4726-a2e5-3d73b1ee8808\",\r\n \"status\": \"Failed\",\r\n \"startTime\": \"2015-04-22T10:57:48.9653576-07:00\",\r\n \"endTime\": \"2015-04-22T11:14:19.3127245-07:00\",\r\n \"error\": {\r\n \"code\": \"VMExtensionProvisioningError\",\r\n \"message\": \"VM has reported a failure when processing extension 'csetest'. Error message: \\\"Failed to download all specified files. Exiting...\\\".\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "405" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "734a8ed9-1677-4aad-9cec-e4f042b6b47f" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31951" + ], + "x-ms-correlation-request-id": [ + "1e63c2d7-5b70-413d-883b-5f152be5ed43" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T181427Z:1e63c2d7-5b70-413d-883b-5f152be5ed43" + ], + "Date": [ + "Wed, 22 Apr 2015 18:14:26 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Compute/virtualMachines/vmpstestrg672/extensions/csetest?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNjcyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvdm1wc3Rlc3RyZzY3Mi9leHRlbnNpb25zL2NzZXRlc3Q/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"CustomScriptExtension\",\r\n \"typeHandlerVersion\": \"1.1\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"commandToExecute\": \"powershell -ExecutionPolicy Unrestricted -file a.exe \",\r\n \"fileUris\": [\r\n \"https://stopstestrg672.blob.core.windows.net/script/a.exe?sv=2014-02-14&sr=b&sig=bBK9Cji4DKFUHOWwW4ZfqOI4n44cYWSq14NP3YdL24U%3D&se=2015-04-23T17%3A57%3A43Z&sp=r\"\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Compute/virtualMachines/vmpstestrg672/extensions/csetest\",\r\n \"name\": \"csetest\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {}\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "775" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d684703c-446b-457d-9d94-61ccd143760c" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31950" + ], + "x-ms-correlation-request-id": [ + "5c509409-722d-46f0-9d6a-743f71fee4ae" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T181428Z:5c509409-722d-46f0-9d6a-743f71fee4ae" + ], + "Date": [ + "Wed, 22 Apr 2015 18:14:27 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Compute/virtualMachines/vmpstestrg672/extensions/csetest?$expand=instanceView&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNjcyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvdm1wc3Rlc3RyZzY3Mi9leHRlbnNpb25zL2NzZXRlc3Q/JGV4cGFuZD1pbnN0YW5jZVZpZXcmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"CustomScriptExtension\",\r\n \"typeHandlerVersion\": \"1.1\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"commandToExecute\": \"powershell -ExecutionPolicy Unrestricted -file a.exe \",\r\n \"fileUris\": [\r\n \"https://stopstestrg672.blob.core.windows.net/script/a.exe?sv=2014-02-14&sr=b&sig=bBK9Cji4DKFUHOWwW4ZfqOI4n44cYWSq14NP3YdL24U%3D&se=2015-04-23T17%3A57%3A43Z&sp=r\"\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"instanceView\": {\r\n \"name\": \"csetest\",\r\n \"type\": \"Microsoft.Compute.CustomScriptExtension\",\r\n \"typeHandlerVersion\": \"1.1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/failed/3\",\r\n \"level\": \"Error\",\r\n \"displayStatus\": \"Provisioning failed\",\r\n \"message\": \"Failed to download all specified files. Exiting...\"\r\n }\r\n ]\r\n }\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Compute/virtualMachines/vmpstestrg672/extensions/csetest\",\r\n \"name\": \"csetest\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {}\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1182" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "98f0c194-d03a-4d25-b921-9dc910553077" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31949" + ], + "x-ms-correlation-request-id": [ + "fa17094d-4d78-4120-bb49-ccde9d02e555" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T181428Z:fa17094d-4d78-4120-bb49-ccde9d02e555" + ], + "Date": [ + "Wed, 22 Apr 2015 18:14:28 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Compute/virtualMachines/vmpstestrg672?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNjcyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvdm1wc3Rlc3RyZzY3Mj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"sourceImage\": {\r\n \"id\": \"/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/services/images/a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-Datacenter-201503.01-en.us-127GB.vhd\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg672.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"testDataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg672.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\"\r\n },\r\n {\r\n \"lun\": 2,\r\n \"diskSizeGB\": 11,\r\n \"name\": \"testDataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg672.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\"\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Network/networkInterfaces/nicpstestrg672\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"CustomScriptExtension\",\r\n \"typeHandlerVersion\": \"1.1\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"settings\": {\r\n \"commandToExecute\": \"powershell -ExecutionPolicy Unrestricted -file a.exe \",\r\n \"fileUris\": [\r\n \"https://stopstestrg672.blob.core.windows.net/script/a.exe?sv=2014-02-14&sr=b&sig=bBK9Cji4DKFUHOWwW4ZfqOI4n44cYWSq14NP3YdL24U%3D&se=2015-04-23T17%3A57%3A43Z&sp=r\"\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Compute/virtualMachines/vmpstestrg672/extensions/csetest\",\r\n \"name\": \"csetest\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {}\r\n }\r\n ],\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/pstestrg672/providers/Microsoft.Compute/virtualMachines/vmpstestrg672\",\r\n \"name\": \"vmpstestrg672\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {}\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2813" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ddc65efd-a6e1-44e1-ac0f-42468e6780fa" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31948" + ], + "x-ms-correlation-request-id": [ + "3de455b1-d97e-4d32-819d-b92115ef93de" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T181429Z:3de455b1-d97e-4d32-819d-b92115ef93de" + ], + "Date": [ + "Wed, 22 Apr 2015 18:14:28 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/pstestrg672?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNjcyP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "6e1392e9-9063-4778-a812-8279879a9db7" + ], + "x-ms-correlation-request-id": [ + "6e1392e9-9063-4778-a812-8279879a9db7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T181434Z:6e1392e9-9063-4778-a812-8279879a9db7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 18:14:34 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelkzTWkxRlFWTlVRVk5KUVNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRHRnphV0VpZlE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31997" + ], + "x-ms-request-id": [ + "d5680925-6159-4d7d-a700-04be54166edd" + ], + "x-ms-correlation-request-id": [ + "d5680925-6159-4d7d-a700-04be54166edd" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T181435Z:d5680925-6159-4d7d-a700-04be54166edd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 18:14:34 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelkzTWkxRlFWTlVRVk5KUVNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRHRnphV0VpZlE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31996" + ], + "x-ms-request-id": [ + "3d31776d-f080-4b0c-9434-db030989a31e" + ], + "x-ms-correlation-request-id": [ + "3d31776d-f080-4b0c-9434-db030989a31e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T181450Z:3d31776d-f080-4b0c-9434-db030989a31e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 18:14:50 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelkzTWkxRlFWTlVRVk5KUVNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRHRnphV0VpZlE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31995" + ], + "x-ms-request-id": [ + "bf16c53a-1a6c-42c0-a3b6-2ed61f031164" + ], + "x-ms-correlation-request-id": [ + "bf16c53a-1a6c-42c0-a3b6-2ed61f031164" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T181506Z:bf16c53a-1a6c-42c0-a3b6-2ed61f031164" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 18:15:05 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelkzTWkxRlFWTlVRVk5KUVNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRHRnphV0VpZlE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31994" + ], + "x-ms-request-id": [ + "f8dcda6c-2051-49dc-a3e6-c16b38d32252" + ], + "x-ms-correlation-request-id": [ + "f8dcda6c-2051-49dc-a3e6-c16b38d32252" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T181521Z:f8dcda6c-2051-49dc-a3e6-c16b38d32252" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 18:15:20 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelkzTWkxRlFWTlVRVk5KUVNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRHRnphV0VpZlE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31993" + ], + "x-ms-request-id": [ + "7ae0d7a4-cfd0-4921-890d-10230a3abe67" + ], + "x-ms-correlation-request-id": [ + "7ae0d7a4-cfd0-4921-890d-10230a3abe67" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T181536Z:7ae0d7a4-cfd0-4921-890d-10230a3abe67" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 18:15:36 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelkzTWkxRlFWTlVRVk5KUVNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRHRnphV0VpZlE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31992" + ], + "x-ms-request-id": [ + "97624f58-e583-44ab-a1d6-9860392dac38" + ], + "x-ms-correlation-request-id": [ + "97624f58-e583-44ab-a1d6-9860392dac38" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T181552Z:97624f58-e583-44ab-a1d6-9860392dac38" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 18:15:51 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelkzTWkxRlFWTlVRVk5KUVNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRHRnphV0VpZlE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31991" + ], + "x-ms-request-id": [ + "17e84231-a6ec-46ca-982e-c75cb77ebf4b" + ], + "x-ms-correlation-request-id": [ + "17e84231-a6ec-46ca-982e-c75cb77ebf4b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T181607Z:17e84231-a6ec-46ca-982e-c75cb77ebf4b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 18:16:06 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelkzTWkxRlFWTlVRVk5KUVNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRHRnphV0VpZlE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31990" + ], + "x-ms-request-id": [ + "79e77746-caf9-491d-be20-b440ec7927c3" + ], + "x-ms-correlation-request-id": [ + "79e77746-caf9-491d-be20-b440ec7927c3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T181622Z:79e77746-caf9-491d-be20-b440ec7927c3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 18:16:22 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelkzTWkxRlFWTlVRVk5KUVNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRHRnphV0VpZlE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31989" + ], + "x-ms-request-id": [ + "b26fd1f7-2098-4e3f-b793-fb936b5f2616" + ], + "x-ms-correlation-request-id": [ + "b26fd1f7-2098-4e3f-b793-fb936b5f2616" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T181638Z:b26fd1f7-2098-4e3f-b793-fb936b5f2616" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 18:16:38 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelkzTWkxRlFWTlVRVk5KUVNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRHRnphV0VpZlE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31988" + ], + "x-ms-request-id": [ + "d6661782-9617-4464-97d6-3972a01845c0" + ], + "x-ms-correlation-request-id": [ + "d6661782-9617-4464-97d6-3972a01845c0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T181653Z:d6661782-9617-4464-97d6-3972a01845c0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 18:16:52 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelkzTWkxRlFWTlVRVk5KUVNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRHRnphV0VpZlE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31987" + ], + "x-ms-request-id": [ + "e0492d0e-0330-4114-a030-ad05b1445f98" + ], + "x-ms-correlation-request-id": [ + "e0492d0e-0330-4114-a030-ad05b1445f98" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T181708Z:e0492d0e-0330-4114-a030-ad05b1445f98" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 18:17:08 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelkzTWkxRlFWTlVRVk5KUVNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRHRnphV0VpZlE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31986" + ], + "x-ms-request-id": [ + "faf0c5dd-63ab-437c-884f-36d4f6f43d83" + ], + "x-ms-correlation-request-id": [ + "faf0c5dd-63ab-437c-884f-36d4f6f43d83" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T181724Z:faf0c5dd-63ab-437c-884f-36d4f6f43d83" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 18:17:23 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelkzTWkxRlFWTlVRVk5KUVNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRHRnphV0VpZlE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31985" + ], + "x-ms-request-id": [ + "f52da0e0-8ed6-4ac3-8444-8c10072bb3db" + ], + "x-ms-correlation-request-id": [ + "f52da0e0-8ed6-4ac3-8444-8c10072bb3db" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T181739Z:f52da0e0-8ed6-4ac3-8444-8c10072bb3db" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 18:17:38 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelkzTWkxRlFWTlVRVk5KUVNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRHRnphV0VpZlE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31984" + ], + "x-ms-request-id": [ + "fcd159c3-314d-4a7c-be83-096a9d6d47da" + ], + "x-ms-correlation-request-id": [ + "fcd159c3-314d-4a7c-be83-096a9d6d47da" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T181754Z:fcd159c3-314d-4a7c-be83-096a9d6d47da" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 18:17:54 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelkzTWkxRlFWTlVRVk5KUVNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRHRnphV0VpZlE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31983" + ], + "x-ms-request-id": [ + "4adbd61d-3c33-4fd7-808d-d43cfacf9498" + ], + "x-ms-correlation-request-id": [ + "4adbd61d-3c33-4fd7-808d-d43cfacf9498" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T181810Z:4adbd61d-3c33-4fd7-808d-d43cfacf9498" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 18:18:10 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelkzTWkxRlFWTlVRVk5KUVNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRHRnphV0VpZlE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31982" + ], + "x-ms-request-id": [ + "9288b10e-5c8a-4fa4-911c-196af35151a6" + ], + "x-ms-correlation-request-id": [ + "9288b10e-5c8a-4fa4-911c-196af35151a6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T181825Z:9288b10e-5c8a-4fa4-911c-196af35151a6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 18:18:24 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelkzTWkxRlFWTlVRVk5KUVNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRHRnphV0VpZlE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31981" + ], + "x-ms-request-id": [ + "77d7c0d7-d6fe-46b5-829a-98d81c9ea411" + ], + "x-ms-correlation-request-id": [ + "77d7c0d7-d6fe-46b5-829a-98d81c9ea411" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T181841Z:77d7c0d7-d6fe-46b5-829a-98d81c9ea411" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 18:18:40 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelkzTWkxRlFWTlVRVk5KUVNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRHRnphV0VpZlE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31980" + ], + "x-ms-request-id": [ + "a26eafc7-732d-47fe-a596-d3ace4643531" + ], + "x-ms-correlation-request-id": [ + "a26eafc7-732d-47fe-a596-d3ace4643531" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T181856Z:a26eafc7-732d-47fe-a596-d3ace4643531" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 18:18:55 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelkzTWkxRlFWTlVRVk5KUVNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRHRnphV0VpZlE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31979" + ], + "x-ms-request-id": [ + "79bcd5c6-56e0-4a00-aedc-cc6d8f035bc2" + ], + "x-ms-correlation-request-id": [ + "79bcd5c6-56e0-4a00-aedc-cc6d8f035bc2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T181911Z:79bcd5c6-56e0-4a00-aedc-cc6d8f035bc2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 18:19:11 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelkzTWkxRlFWTlVRVk5KUVNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRHRnphV0VpZlE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31978" + ], + "x-ms-request-id": [ + "b61fe5a6-db6f-4565-a9b9-7f770c6dc58c" + ], + "x-ms-correlation-request-id": [ + "b61fe5a6-db6f-4565-a9b9-7f770c6dc58c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T181927Z:b61fe5a6-db6f-4565-a9b9-7f770c6dc58c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 18:19:26 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelkzTWkxRlFWTlVRVk5KUVNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRHRnphV0VpZlE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31977" + ], + "x-ms-request-id": [ + "023e3132-ab61-4867-b023-f447b39e968e" + ], + "x-ms-correlation-request-id": [ + "023e3132-ab61-4867-b023-f447b39e968e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T181942Z:023e3132-ab61-4867-b023-f447b39e968e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 18:19:42 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelkzTWkxRlFWTlVRVk5KUVNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRHRnphV0VpZlE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31976" + ], + "x-ms-request-id": [ + "bd270dd0-003e-45bb-b998-a31628fa7672" + ], + "x-ms-correlation-request-id": [ + "bd270dd0-003e-45bb-b998-a31628fa7672" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T181957Z:bd270dd0-003e-45bb-b998-a31628fa7672" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 18:19:57 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelkzTWkxRlFWTlVRVk5KUVNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRHRnphV0VpZlE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31975" + ], + "x-ms-request-id": [ + "7119111d-b3c0-428c-8ca6-d105c4fb4ad9" + ], + "x-ms-correlation-request-id": [ + "7119111d-b3c0-428c-8ca6-d105c4fb4ad9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T182013Z:7119111d-b3c0-428c-8ca6-d105c4fb4ad9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 18:20:12 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelkzTWkxRlFWTlVRVk5KUVNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRHRnphV0VpZlE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31974" + ], + "x-ms-request-id": [ + "7ed1fe33-7d5a-451d-8ce9-2833d2d8cd62" + ], + "x-ms-correlation-request-id": [ + "7ed1fe33-7d5a-451d-8ce9-2833d2d8cd62" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T182028Z:7ed1fe33-7d5a-451d-8ce9-2833d2d8cd62" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 18:20:28 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelkzTWkxRlFWTlVRVk5KUVNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRHRnphV0VpZlE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31973" + ], + "x-ms-request-id": [ + "162ff140-356a-4951-b32a-59afc7256b10" + ], + "x-ms-correlation-request-id": [ + "162ff140-356a-4951-b32a-59afc7256b10" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T182043Z:162ff140-356a-4951-b32a-59afc7256b10" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 18:20:43 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelkzTWkxRlFWTlVRVk5KUVNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRHRnphV0VpZlE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31972" + ], + "x-ms-request-id": [ + "e0eac056-624e-433c-9ec2-137c5a4bb9e3" + ], + "x-ms-correlation-request-id": [ + "e0eac056-624e-433c-9ec2-137c5a4bb9e3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T182059Z:e0eac056-624e-433c-9ec2-137c5a4bb9e3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 18:20:58 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelkzTWkxRlFWTlVRVk5KUVNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRHRnphV0VpZlE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31971" + ], + "x-ms-request-id": [ + "14246c15-f039-4fa3-b09b-996bd668df89" + ], + "x-ms-correlation-request-id": [ + "14246c15-f039-4fa3-b09b-996bd668df89" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T182114Z:14246c15-f039-4fa3-b09b-996bd668df89" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 18:21:13 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelkzTWkxRlFWTlVRVk5KUVNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRHRnphV0VpZlE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31970" + ], + "x-ms-request-id": [ + "71d7b292-571a-4c41-9d48-b390214aca7c" + ], + "x-ms-correlation-request-id": [ + "71d7b292-571a-4c41-9d48-b390214aca7c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T182130Z:71d7b292-571a-4c41-9d48-b390214aca7c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 18:21:29 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelkzTWkxRlFWTlVRVk5KUVNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRHRnphV0VpZlE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31969" + ], + "x-ms-request-id": [ + "1dbf0ffb-09dc-46d0-b667-19c57364bc9e" + ], + "x-ms-correlation-request-id": [ + "1dbf0ffb-09dc-46d0-b667-19c57364bc9e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T182145Z:1dbf0ffb-09dc-46d0-b667-19c57364bc9e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 18:21:44 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelkzTWkxRlFWTlVRVk5KUVNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRHRnphV0VpZlE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31968" + ], + "x-ms-request-id": [ + "a4b39aec-20e7-4e64-b517-09f1244d9fb0" + ], + "x-ms-correlation-request-id": [ + "a4b39aec-20e7-4e64-b517-09f1244d9fb0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T182200Z:a4b39aec-20e7-4e64-b517-09f1244d9fb0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 18:22:00 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelkzTWkxRlFWTlVRVk5KUVNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRHRnphV0VpZlE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31967" + ], + "x-ms-request-id": [ + "d854eed8-3ee8-4d7a-a0d2-717bfee0f492" + ], + "x-ms-correlation-request-id": [ + "d854eed8-3ee8-4d7a-a0d2-717bfee0f492" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T182216Z:d854eed8-3ee8-4d7a-a0d2-717bfee0f492" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 18:22:15 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelkzTWkxRlFWTlVRVk5KUVNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRHRnphV0VpZlE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31966" + ], + "x-ms-request-id": [ + "c06475b6-f63c-4a98-9340-b6a8843bd8a1" + ], + "x-ms-correlation-request-id": [ + "c06475b6-f63c-4a98-9340-b6a8843bd8a1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T182231Z:c06475b6-f63c-4a98-9340-b6a8843bd8a1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 18:22:30 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelkzTWkxRlFWTlVRVk5KUVNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRHRnphV0VpZlE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31965" + ], + "x-ms-request-id": [ + "6d0f430d-9b0d-4526-8e40-45e4dda7db1b" + ], + "x-ms-correlation-request-id": [ + "6d0f430d-9b0d-4526-8e40-45e4dda7db1b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T182246Z:6d0f430d-9b0d-4526-8e40-45e4dda7db1b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 18:22:46 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelkzTWkxRlFWTlVRVk5KUVNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRHRnphV0VpZlE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31964" + ], + "x-ms-request-id": [ + "1bb6a439-f6f1-459d-b5e7-08c9280c7145" + ], + "x-ms-correlation-request-id": [ + "1bb6a439-f6f1-459d-b5e7-08c9280c7145" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T182302Z:1bb6a439-f6f1-459d-b5e7-08c9280c7145" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 18:23:01 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY3Mi1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelkzTWkxRlFWTlVRVk5KUVNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRHRnphV0VpZlE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31963" + ], + "x-ms-request-id": [ + "cb8ad4fb-aa8a-4c37-b9d1-1cccebbd9614" + ], + "x-ms-correlation-request-id": [ + "cb8ad4fb-aa8a-4c37-b9d1-1cccebbd9614" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T182317Z:cb8ad4fb-aa8a-4c37-b9d1-1cccebbd9614" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 18:23:16 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "Test-VirtualMachineCustomScriptExtension": [ + "pstestrg672" + ] + }, + "Variables": { + "SubscriptionId": "24fb23e3-6ba3-41f0-9b6e-e41131d5d61e", + "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "Domain": "microsoft.com" + } +} \ No newline at end of file diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineNetworkInterfaceTests/TestSingleNetworkInterfaceDnsSettings.json b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineNetworkInterfaceTests/TestSingleNetworkInterfaceDnsSettings.json index 055efd0f55f1..65436adb1228 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineNetworkInterfaceTests/TestSingleNetworkInterfaceDnsSettings.json +++ b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineNetworkInterfaceTests/TestSingleNetworkInterfaceDnsSettings.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourcegroups/pstestrg7990?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNzk5MD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourcegroups/pstestrg7246?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNzI0Nj9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -28,16 +28,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31999" + "31996" ], "x-ms-request-id": [ - "ef436128-cc75-4d14-a526-2332e857217f" + "c847590d-acd1-4816-95b1-942dbd6e293e" ], "x-ms-correlation-request-id": [ - "ef436128-cc75-4d14-a526-2332e857217f" + "c847590d-acd1-4816-95b1-942dbd6e293e" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T010929Z:ef436128-cc75-4d14-a526-2332e857217f" + "NORTHCENTRALUS:20150424T153255Z:c847590d-acd1-4816-95b1-942dbd6e293e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,14 +46,14 @@ "no-cache" ], "Date": [ - "Sat, 18 Apr 2015 01:09:28 GMT" + "Fri, 24 Apr 2015 15:32:55 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourcegroups/pstestrg7990?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNzk5MD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourcegroups/pstestrg7246?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNzI0Nj9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31997" + "31982" ], "x-ms-request-id": [ - "0d68542f-1faa-4f52-b426-cf2a56bf1263" + "7ad814c8-242f-4cbc-8116-b5691492db90" ], "x-ms-correlation-request-id": [ - "0d68542f-1faa-4f52-b426-cf2a56bf1263" + "7ad814c8-242f-4cbc-8116-b5691492db90" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T012024Z:0d68542f-1faa-4f52-b426-cf2a56bf1263" + "NORTHCENTRALUS:20150424T154227Z:7ad814c8-242f-4cbc-8116-b5691492db90" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,31 +91,31 @@ "no-cache" ], "Date": [ - "Sat, 18 Apr 2015 01:20:23 GMT" + "Fri, 24 Apr 2015 15:42:27 GMT" ] }, "StatusCode": 204 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourcegroups/pstestrg7990?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNzk5MD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourcegroups/pstestrg7246?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNzI0Nj9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestBody": "{\r\n \"location\": \"eastasia\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "29" + "30" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7990\",\r\n \"name\": \"pstestrg7990\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7246\",\r\n \"name\": \"pstestrg7246\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "177" + "179" ], "Content-Type": [ "application/json; charset=utf-8" @@ -127,16 +127,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1197" ], "x-ms-request-id": [ - "25a72138-7fb9-4e2f-a974-4e9ce874315d" + "cf163114-9a67-47da-ad08-1eef6b13ce55" ], "x-ms-correlation-request-id": [ - "25a72138-7fb9-4e2f-a974-4e9ce874315d" + "cf163114-9a67-47da-ad08-1eef6b13ce55" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T010929Z:25a72138-7fb9-4e2f-a974-4e9ce874315d" + "NORTHCENTRALUS:20150424T153258Z:cf163114-9a67-47da-ad08-1eef6b13ce55" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -145,14 +145,14 @@ "no-cache" ], "Date": [ - "Sat, 18 Apr 2015 01:09:28 GMT" + "Fri, 24 Apr 2015 15:32:58 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7990/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzk5MC9yZXNvdXJjZXM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7246/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzI0Ni9yZXNvdXJjZXM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -175,16 +175,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31998" + "31995" ], "x-ms-request-id": [ - "78fe20aa-45e1-4949-a1ba-6e7bc0cd3068" + "d6892eaa-0589-4150-b90b-686f3cc6dd21" ], "x-ms-correlation-request-id": [ - "78fe20aa-45e1-4949-a1ba-6e7bc0cd3068" + "d6892eaa-0589-4150-b90b-686f3cc6dd21" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T010930Z:78fe20aa-45e1-4949-a1ba-6e7bc0cd3068" + "NORTHCENTRALUS:20150424T153258Z:d6892eaa-0589-4150-b90b-686f3cc6dd21" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -193,14 +193,14 @@ "no-cache" ], "Date": [ - "Sat, 18 Apr 2015 01:09:30 GMT" + "Fri, 24 Apr 2015 15:32:58 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourcegroups/pstestrg7990/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNzk5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcGVybWlzc2lvbnM/YXBpLXZlcnNpb249MjAxNC0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourcegroups/pstestrg7246/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNzI0Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcGVybWlzc2lvbnM/YXBpLXZlcnNpb249MjAxNC0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -226,16 +226,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:0cb2e91b-1d14-4390-b1a0-22fb296049f0" + "northcentralus:331f3fd1-ec3f-462e-94e9-19fada7312fd" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31999" + "31998" ], "x-ms-correlation-request-id": [ - "f18332ad-8035-4bb2-a4ba-fa2e63240ffb" + "3cf009de-b0ae-4a40-af2c-509da26cf34b" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T010930Z:f18332ad-8035-4bb2-a4ba-fa2e63240ffb" + "NORTHCENTRALUS:20150424T153259Z:3cf009de-b0ae-4a40-af2c-509da26cf34b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -244,14 +244,14 @@ "no-cache" ], "Date": [ - "Sat, 18 Apr 2015 01:09:30 GMT" + "Fri, 24 Apr 2015 15:32:58 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7990/providers/Microsoft.Network/virtualnetworks/vnetpstestrg7990?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzk5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzc5OTA/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7246/providers/Microsoft.Network/virtualnetworks/vnetpstestrg7246?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzI0Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzcyNDY/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -277,13 +277,13 @@ "gateway" ], "x-ms-request-id": [ - "59658c08-f5c8-4a80-860f-75f6817a8326" + "04141412-48d6-427b-a7f1-369803c43305" ], "x-ms-correlation-request-id": [ - "59658c08-f5c8-4a80-860f-75f6817a8326" + "04141412-48d6-427b-a7f1-369803c43305" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T010931Z:59658c08-f5c8-4a80-860f-75f6817a8326" + "NORTHCENTRALUS:20150424T153302Z:04141412-48d6-427b-a7f1-369803c43305" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -292,14 +292,14 @@ "no-cache" ], "Date": [ - "Sat, 18 Apr 2015 01:09:30 GMT" + "Fri, 24 Apr 2015 15:33:02 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7990/providers/Microsoft.Network/virtualnetworks/vnetpstestrg7990?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzk5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzc5OTA/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7246/providers/Microsoft.Network/virtualnetworks/vnetpstestrg7246?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzI0Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzcyNDY/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -307,10 +307,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetpstestrg7990\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7990/providers/Microsoft.Network/virtualNetworks/vnetpstestrg7990\",\r\n \"etag\": \"W/\\\"a37f6c6b-3750-434d-ad88-b6e77e868936\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\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 \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg7990\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7990/providers/Microsoft.Network/virtualNetworks/vnetpstestrg7990/subnets/subnetpstestrg7990\",\r\n \"etag\": \"W/\\\"a37f6c6b-3750-434d-ad88-b6e77e868936\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"vnetpstestrg7246\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7246/providers/Microsoft.Network/virtualNetworks/vnetpstestrg7246\",\r\n \"etag\": \"W/\\\"3dc9568d-fac1-45a7-99a8-948d505fcd0d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\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 \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg7246\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7246/providers/Microsoft.Network/virtualNetworks/vnetpstestrg7246/subnets/subnetpstestrg7246\",\r\n \"etag\": \"W/\\\"3dc9568d-fac1-45a7-99a8-948d505fcd0d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"eastasia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "961" + "962" ], "Content-Type": [ "application/json; charset=utf-8" @@ -322,7 +322,7 @@ "no-cache" ], "x-ms-request-id": [ - "40816d7f-bebc-4f22-8af2-9e8dfd347796" + "d272aaa9-e138-48de-863f-d75c0d3912b2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -331,30 +331,30 @@ "no-cache" ], "ETag": [ - "W/\"a37f6c6b-3750-434d-ad88-b6e77e868936\"" + "W/\"3dc9568d-fac1-45a7-99a8-948d505fcd0d\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31996" + "31984" ], "x-ms-correlation-request-id": [ - "3fe69f07-0bff-4169-8f84-c9696c5b2c27" + "3d550b2f-f9df-4aed-9356-8f2c84c9b083" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T010942Z:3fe69f07-0bff-4169-8f84-c9696c5b2c27" + "NORTHCENTRALUS:20150424T153317Z:3d550b2f-f9df-4aed-9356-8f2c84c9b083" ], "Date": [ - "Sat, 18 Apr 2015 01:09:41 GMT" + "Fri, 24 Apr 2015 15:33:17 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7990/providers/Microsoft.Network/virtualnetworks/vnetpstestrg7990?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzk5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzc5OTA/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7246/providers/Microsoft.Network/virtualnetworks/vnetpstestrg7246?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzI0Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzcyNDY/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,10 +362,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetpstestrg7990\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7990/providers/Microsoft.Network/virtualNetworks/vnetpstestrg7990\",\r\n \"etag\": \"W/\\\"a37f6c6b-3750-434d-ad88-b6e77e868936\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\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 \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg7990\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7990/providers/Microsoft.Network/virtualNetworks/vnetpstestrg7990/subnets/subnetpstestrg7990\",\r\n \"etag\": \"W/\\\"a37f6c6b-3750-434d-ad88-b6e77e868936\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"vnetpstestrg7246\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7246/providers/Microsoft.Network/virtualNetworks/vnetpstestrg7246\",\r\n \"etag\": \"W/\\\"3dc9568d-fac1-45a7-99a8-948d505fcd0d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\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 \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg7246\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7246/providers/Microsoft.Network/virtualNetworks/vnetpstestrg7246/subnets/subnetpstestrg7246\",\r\n \"etag\": \"W/\\\"3dc9568d-fac1-45a7-99a8-948d505fcd0d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"eastasia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "961" + "962" ], "Content-Type": [ "application/json; charset=utf-8" @@ -377,7 +377,7 @@ "no-cache" ], "x-ms-request-id": [ - "70fcd5a0-2c2f-4f16-934c-b7ce12051131" + "8ec22cc0-5d49-41ef-a9bb-cfed5af0b916" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -386,47 +386,47 @@ "no-cache" ], "ETag": [ - "W/\"a37f6c6b-3750-434d-ad88-b6e77e868936\"" + "W/\"3dc9568d-fac1-45a7-99a8-948d505fcd0d\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31995" + "31983" ], "x-ms-correlation-request-id": [ - "dcf33de9-e6fb-4701-b18d-e5a3bc7f7ff7" + "97400aa2-2f23-4563-bc96-efe105d8656a" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T010942Z:dcf33de9-e6fb-4701-b18d-e5a3bc7f7ff7" + "NORTHCENTRALUS:20150424T153318Z:97400aa2-2f23-4563-bc96-efe105d8656a" ], "Date": [ - "Sat, 18 Apr 2015 01:09:42 GMT" + "Fri, 24 Apr 2015 15:33:17 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7990/providers/Microsoft.Network/virtualnetworks/vnetpstestrg7990?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzk5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzc5OTA/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7246/providers/Microsoft.Network/virtualnetworks/vnetpstestrg7246?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzI0Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzcyNDY/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "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 \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": []\r\n },\r\n \"name\": \"subnetpstestrg7990\"\r\n }\r\n ]\r\n },\r\n \"name\": \"vnetpstestrg7990\",\r\n \"type\": \"microsoft.network/virtualNetworks\",\r\n \"location\": \"West US\"\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 \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": []\r\n },\r\n \"name\": \"subnetpstestrg7246\"\r\n }\r\n ]\r\n },\r\n \"name\": \"vnetpstestrg7246\",\r\n \"type\": \"microsoft.network/virtualNetworks\",\r\n \"location\": \"eastasia\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "501" + "502" ], "User-Agent": [ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetpstestrg7990\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7990/providers/Microsoft.Network/virtualNetworks/vnetpstestrg7990\",\r\n \"etag\": \"W/\\\"a432e7e1-cb91-4821-917c-aad848375efb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\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 \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg7990\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7990/providers/Microsoft.Network/virtualNetworks/vnetpstestrg7990/subnets/subnetpstestrg7990\",\r\n \"etag\": \"W/\\\"a432e7e1-cb91-4821-917c-aad848375efb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"vnetpstestrg7246\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7246/providers/Microsoft.Network/virtualNetworks/vnetpstestrg7246\",\r\n \"etag\": \"W/\\\"51387807-1ca1-4188-b5ca-a0285183d1d7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\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 \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg7246\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7246/providers/Microsoft.Network/virtualNetworks/vnetpstestrg7246/subnets/subnetpstestrg7246\",\r\n \"etag\": \"W/\\\"51387807-1ca1-4188-b5ca-a0285183d1d7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"eastasia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "959" + "960" ], "Content-Type": [ "application/json; charset=utf-8" @@ -441,10 +441,10 @@ "10" ], "x-ms-request-id": [ - "8b2c3c51-c95e-4188-bd2f-5f4760074696" + "0be1f80a-3b77-4850-b06a-1d06e63b1245" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/8b2c3c51-c95e-4188-bd2f-5f4760074696?api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/eastasia/operations/0be1f80a-3b77-4850-b06a-1d06e63b1245?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -457,78 +457,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1196" ], "x-ms-correlation-request-id": [ - "9b139a6a-8bd2-4f16-a21a-fc453f4fa9ff" + "98bf0e87-148c-4331-b5eb-3aa8a727a2e1" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T010932Z:9b139a6a-8bd2-4f16-a21a-fc453f4fa9ff" + "NORTHCENTRALUS:20150424T153315Z:98bf0e87-148c-4331-b5eb-3aa8a727a2e1" ], "Date": [ - "Sat, 18 Apr 2015 01:09:31 GMT" + "Fri, 24 Apr 2015 15:33:14 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/8b2c3c51-c95e-4188-bd2f-5f4760074696?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOGIyYzNjNTEtYzk1ZS00MTg4LWJkMmYtNWY0NzYwMDc0Njk2P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2015-05-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "fa44f09c-c898-4f15-8f36-d6c2f7beb5e6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31998" - ], - "x-ms-correlation-request-id": [ - "9e853b66-09be-4ee6-8502-8e31764c5748" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150418T010932Z:9e853b66-09be-4ee6-8502-8e31764c5748" - ], - "Date": [ - "Sat, 18 Apr 2015 01:09:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/8b2c3c51-c95e-4188-bd2f-5f4760074696?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOGIyYzNjNTEtYzk1ZS00MTg4LWJkMmYtNWY0NzYwMDc0Njk2P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/eastasia/operations/0be1f80a-3b77-4850-b06a-1d06e63b1245?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy8wYmUxZjgwYS0zYjc3LTQ4NTAtYjA2YS0xZDA2ZTYzYjEyNDU/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,7 +499,7 @@ "no-cache" ], "x-ms-request-id": [ - "ded560ec-9539-4692-85f0-691352581d71" + "080e7a5f-8eaa-4b5b-a5db-f6603c503907" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -567,23 +512,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31997" + "31985" ], "x-ms-correlation-request-id": [ - "ca1bad3a-0da5-420c-ae5f-304213d5b53a" + "cb6d73e9-991a-4334-bb0b-768c49d3b29d" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T010942Z:ca1bad3a-0da5-420c-ae5f-304213d5b53a" + "NORTHCENTRALUS:20150424T153317Z:cb6d73e9-991a-4334-bb0b-768c49d3b29d" ], "Date": [ - "Sat, 18 Apr 2015 01:09:41 GMT" + "Fri, 24 Apr 2015 15:33:16 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7990/providers/Microsoft.Network/publicIPAddresses/pubippstestrg7990/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzk5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHViaXBwc3Rlc3RyZzc5OTAvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7246/providers/Microsoft.Network/publicIPAddresses/pubippstestrg7246/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzI0Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHViaXBwc3Rlc3RyZzcyNDYvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -609,13 +554,13 @@ "gateway" ], "x-ms-request-id": [ - "b9517a94-79dd-4cff-a66e-4f4f01f2fd65" + "f9b49df5-296d-4761-b04f-468a0c4d3a2d" ], "x-ms-correlation-request-id": [ - "b9517a94-79dd-4cff-a66e-4f4f01f2fd65" + "f9b49df5-296d-4761-b04f-468a0c4d3a2d" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T010942Z:b9517a94-79dd-4cff-a66e-4f4f01f2fd65" + "NORTHCENTRALUS:20150424T153319Z:f9b49df5-296d-4761-b04f-468a0c4d3a2d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -624,14 +569,14 @@ "no-cache" ], "Date": [ - "Sat, 18 Apr 2015 01:09:42 GMT" + "Fri, 24 Apr 2015 15:33:18 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7990/providers/Microsoft.Network/publicIPAddresses/pubippstestrg7990/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzk5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHViaXBwc3Rlc3RyZzc5OTAvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7246/providers/Microsoft.Network/publicIPAddresses/pubippstestrg7246/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzI0Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHViaXBwc3Rlc3RyZzcyNDYvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -639,10 +584,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"pubippstestrg7990\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7990/providers/Microsoft.Network/publicIPAddresses/pubippstestrg7990\",\r\n \"etag\": \"W/\\\"23edc244-531f-40ee-b2de-e33822a6e9b4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubippstestrg7990\",\r\n \"fqdn\": \"pubippstestrg7990.westus.cloudapp.azure.com.\"\r\n }\r\n },\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pubippstestrg7246\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7246/providers/Microsoft.Network/publicIPAddresses/pubippstestrg7246\",\r\n \"etag\": \"W/\\\"6a73a5fd-c223-4856-8ed7-9494f8acec2a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubippstestrg7246\",\r\n \"fqdn\": \"pubippstestrg7246.eastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"eastasia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "552" + "554" ], "Content-Type": [ "application/json; charset=utf-8" @@ -654,7 +599,7 @@ "no-cache" ], "x-ms-request-id": [ - "cde7081e-0cbe-4be3-91d0-77498f9bdc82" + "9266b8fb-5917-45e6-a615-31db5105cef5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -663,30 +608,30 @@ "no-cache" ], "ETag": [ - "W/\"23edc244-531f-40ee-b2de-e33822a6e9b4\"" + "W/\"6a73a5fd-c223-4856-8ed7-9494f8acec2a\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31992" + "31980" ], "x-ms-correlation-request-id": [ - "43a1e4d7-7389-41d6-8ac9-1406f16fff73" + "500fd76a-d208-40dc-899a-9ec93960cd51" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T010943Z:43a1e4d7-7389-41d6-8ac9-1406f16fff73" + "NORTHCENTRALUS:20150424T153329Z:500fd76a-d208-40dc-899a-9ec93960cd51" ], "Date": [ - "Sat, 18 Apr 2015 01:09:43 GMT" + "Fri, 24 Apr 2015 15:33:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7990/providers/Microsoft.Network/publicIPAddresses/pubippstestrg7990/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzk5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHViaXBwc3Rlc3RyZzc5OTAvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7246/providers/Microsoft.Network/publicIPAddresses/pubippstestrg7246/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzI0Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHViaXBwc3Rlc3RyZzcyNDYvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -694,10 +639,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"pubippstestrg7990\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7990/providers/Microsoft.Network/publicIPAddresses/pubippstestrg7990\",\r\n \"etag\": \"W/\\\"23edc244-531f-40ee-b2de-e33822a6e9b4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubippstestrg7990\",\r\n \"fqdn\": \"pubippstestrg7990.westus.cloudapp.azure.com.\"\r\n }\r\n },\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pubippstestrg7246\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7246/providers/Microsoft.Network/publicIPAddresses/pubippstestrg7246\",\r\n \"etag\": \"W/\\\"6a73a5fd-c223-4856-8ed7-9494f8acec2a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubippstestrg7246\",\r\n \"fqdn\": \"pubippstestrg7246.eastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"eastasia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "552" + "554" ], "Content-Type": [ "application/json; charset=utf-8" @@ -709,7 +654,7 @@ "no-cache" ], "x-ms-request-id": [ - "e86bd8cc-d8a1-4187-bd2c-697a81992808" + "ec3abde2-c2df-4139-9edf-0d82636f22cf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -718,47 +663,47 @@ "no-cache" ], "ETag": [ - "W/\"23edc244-531f-40ee-b2de-e33822a6e9b4\"" + "W/\"6a73a5fd-c223-4856-8ed7-9494f8acec2a\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31991" + "31979" ], "x-ms-correlation-request-id": [ - "d95a6b45-7e43-4e41-959b-4c0030abf4a6" + "d08539f9-e348-4365-a56d-4dbd46acf4ea" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T010943Z:d95a6b45-7e43-4e41-959b-4c0030abf4a6" + "NORTHCENTRALUS:20150424T153329Z:d08539f9-e348-4365-a56d-4dbd46acf4ea" ], "Date": [ - "Sat, 18 Apr 2015 01:09:43 GMT" + "Fri, 24 Apr 2015 15:33:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7990/providers/Microsoft.Network/publicIPAddresses/pubippstestrg7990/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzk5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHViaXBwc3Rlc3RyZzc5OTAvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7246/providers/Microsoft.Network/publicIPAddresses/pubippstestrg7246/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzI0Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHViaXBwc3Rlc3RyZzcyNDYvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubippstestrg7990\"\r\n }\r\n },\r\n \"name\": \"pubippstestrg7990\",\r\n \"type\": \"microsoft.network/publicIPAddresses\",\r\n \"location\": \"West US\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubippstestrg7246\"\r\n }\r\n },\r\n \"name\": \"pubippstestrg7246\",\r\n \"type\": \"microsoft.network/publicIPAddresses\",\r\n \"location\": \"eastasia\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "255" + "256" ], "User-Agent": [ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"pubippstestrg7990\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7990/providers/Microsoft.Network/publicIPAddresses/pubippstestrg7990\",\r\n \"etag\": \"W/\\\"61f3a5d2-58e2-43b2-93b1-7ccb98d9e53e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubippstestrg7990\",\r\n \"fqdn\": \"pubippstestrg7990.westus.cloudapp.azure.com.\"\r\n }\r\n },\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pubippstestrg7246\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7246/providers/Microsoft.Network/publicIPAddresses/pubippstestrg7246\",\r\n \"etag\": \"W/\\\"346150f4-228d-4859-8044-cae79674323c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubippstestrg7246\",\r\n \"fqdn\": \"pubippstestrg7246.eastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"eastasia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "551" + "553" ], "Content-Type": [ "application/json; charset=utf-8" @@ -773,10 +718,10 @@ "10" ], "x-ms-request-id": [ - "443fb434-1fc1-470d-b692-c383d7cff2af" + "ffd66927-371a-4729-a66f-71ed710c7be5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/443fb434-1fc1-470d-b692-c383d7cff2af?api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/eastasia/operations/ffd66927-371a-4729-a66f-71ed710c7be5?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -789,23 +734,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1195" ], "x-ms-correlation-request-id": [ - "0978d9ab-3b87-4827-90d2-071179f7030b" + "4f94540a-30f2-41ed-b76f-bbe412997065" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T010943Z:0978d9ab-3b87-4827-90d2-071179f7030b" + "NORTHCENTRALUS:20150424T153327Z:4f94540a-30f2-41ed-b76f-bbe412997065" ], "Date": [ - "Sat, 18 Apr 2015 01:09:42 GMT" + "Fri, 24 Apr 2015 15:33:26 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/443fb434-1fc1-470d-b692-c383d7cff2af?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDQzZmI0MzQtMWZjMS00NzBkLWI2OTItYzM4M2Q3Y2ZmMmFmP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/eastasia/operations/ffd66927-371a-4729-a66f-71ed710c7be5?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9mZmQ2NjkyNy0zNzFhLTQ3MjktYTY2Zi03MWVkNzEwYzdiZTU/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -831,7 +776,7 @@ "no-cache" ], "x-ms-request-id": [ - "3085e27f-6874-4da3-9cf6-b9d0a047ac22" + "a98bec52-ff8b-4af8-87aa-6533a5a41738" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -844,23 +789,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31993" + "31981" ], "x-ms-correlation-request-id": [ - "95792acb-145c-47f6-96f3-dcdd9589db5d" + "f7371e17-fa96-494c-9f5a-90be48a0ac57" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T010943Z:95792acb-145c-47f6-96f3-dcdd9589db5d" + "NORTHCENTRALUS:20150424T153328Z:f7371e17-fa96-494c-9f5a-90be48a0ac57" ], "Date": [ - "Sat, 18 Apr 2015 01:09:43 GMT" + "Fri, 24 Apr 2015 15:33:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7990/providers/Microsoft.Network/networkInterfaces/nicpstestrg7990?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzk5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljcHN0ZXN0cmc3OTkwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7246/providers/Microsoft.Network/networkInterfaces/nicpstestrg7246?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzI0Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljcHN0ZXN0cmc3MjQ2P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -886,13 +831,13 @@ "gateway" ], "x-ms-request-id": [ - "c3a54a1b-6bda-46e0-b99d-546bb0646633" + "0d8b75a3-27a0-445c-86e4-b412050a5000" ], "x-ms-correlation-request-id": [ - "c3a54a1b-6bda-46e0-b99d-546bb0646633" + "0d8b75a3-27a0-445c-86e4-b412050a5000" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T010944Z:c3a54a1b-6bda-46e0-b99d-546bb0646633" + "NORTHCENTRALUS:20150424T153329Z:0d8b75a3-27a0-445c-86e4-b412050a5000" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -901,14 +846,14 @@ "no-cache" ], "Date": [ - "Sat, 18 Apr 2015 01:09:43 GMT" + "Fri, 24 Apr 2015 15:33:28 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7990/providers/Microsoft.Network/networkInterfaces/nicpstestrg7990?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzk5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljcHN0ZXN0cmc3OTkwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7246/providers/Microsoft.Network/networkInterfaces/nicpstestrg7246?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzI0Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljcHN0ZXN0cmc3MjQ2P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -916,10 +861,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"nicpstestrg7990\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7990/providers/Microsoft.Network/networkInterfaces/nicpstestrg7990\",\r\n \"etag\": \"W/\\\"4dc7e9d8-efb7-4ef0-a27f-a823a08cb9f4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7990/providers/Microsoft.Network/networkInterfaces/nicpstestrg7990/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"4dc7e9d8-efb7-4ef0-a27f-a823a08cb9f4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7990/providers/Microsoft.Network/publicIPAddresses/pubippstestrg7990\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7990/providers/Microsoft.Network/virtualNetworks/vnetpstestrg7990/subnets/subnetpstestrg7990\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [\r\n \"10.0.1.5\"\r\n ]\r\n }\r\n },\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"nicpstestrg7246\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7246/providers/Microsoft.Network/networkInterfaces/nicpstestrg7246\",\r\n \"etag\": \"W/\\\"19d0a000-4484-4b5f-8915-2378a4398450\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7246/providers/Microsoft.Network/networkInterfaces/nicpstestrg7246/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"19d0a000-4484-4b5f-8915-2378a4398450\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7246/providers/Microsoft.Network/publicIPAddresses/pubippstestrg7246\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7246/providers/Microsoft.Network/virtualNetworks/vnetpstestrg7246/subnets/subnetpstestrg7246\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [\r\n \"10.0.1.5\"\r\n ]\r\n }\r\n },\r\n \"location\": \"eastasia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1359" + "1360" ], "Content-Type": [ "application/json; charset=utf-8" @@ -931,7 +876,7 @@ "no-cache" ], "x-ms-request-id": [ - "8ccfbc21-66d1-4e52-9d5b-2860b5114657" + "af304892-263b-496b-b276-e39e08d47465" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -940,30 +885,30 @@ "no-cache" ], "ETag": [ - "W/\"4dc7e9d8-efb7-4ef0-a27f-a823a08cb9f4\"" + "W/\"19d0a000-4484-4b5f-8915-2378a4398450\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31988" + "31976" ], "x-ms-correlation-request-id": [ - "8db386f3-2202-4d4e-b0fc-a55476f2fcaa" + "c12c2d4b-6633-4e24-acf2-5199582c143c" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T010944Z:8db386f3-2202-4d4e-b0fc-a55476f2fcaa" + "NORTHCENTRALUS:20150424T153337Z:c12c2d4b-6633-4e24-acf2-5199582c143c" ], "Date": [ - "Sat, 18 Apr 2015 01:09:43 GMT" + "Fri, 24 Apr 2015 15:33:37 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7990/providers/Microsoft.Network/networkInterfaces/nicpstestrg7990?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzk5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljcHN0ZXN0cmc3OTkwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7246/providers/Microsoft.Network/networkInterfaces/nicpstestrg7246?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzI0Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljcHN0ZXN0cmc3MjQ2P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -971,10 +916,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"nicpstestrg7990\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7990/providers/Microsoft.Network/networkInterfaces/nicpstestrg7990\",\r\n \"etag\": \"W/\\\"4dc7e9d8-efb7-4ef0-a27f-a823a08cb9f4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7990/providers/Microsoft.Network/networkInterfaces/nicpstestrg7990/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"4dc7e9d8-efb7-4ef0-a27f-a823a08cb9f4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7990/providers/Microsoft.Network/publicIPAddresses/pubippstestrg7990\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7990/providers/Microsoft.Network/virtualNetworks/vnetpstestrg7990/subnets/subnetpstestrg7990\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [\r\n \"10.0.1.5\"\r\n ]\r\n }\r\n },\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"nicpstestrg7246\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7246/providers/Microsoft.Network/networkInterfaces/nicpstestrg7246\",\r\n \"etag\": \"W/\\\"19d0a000-4484-4b5f-8915-2378a4398450\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7246/providers/Microsoft.Network/networkInterfaces/nicpstestrg7246/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"19d0a000-4484-4b5f-8915-2378a4398450\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7246/providers/Microsoft.Network/publicIPAddresses/pubippstestrg7246\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7246/providers/Microsoft.Network/virtualNetworks/vnetpstestrg7246/subnets/subnetpstestrg7246\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [\r\n \"10.0.1.5\"\r\n ]\r\n }\r\n },\r\n \"location\": \"eastasia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1359" + "1360" ], "Content-Type": [ "application/json; charset=utf-8" @@ -986,7 +931,7 @@ "no-cache" ], "x-ms-request-id": [ - "379b05c5-951f-401d-90ba-fbf8a957e225" + "09a813e7-4fe4-4f42-b872-1b223de97feb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -995,30 +940,30 @@ "no-cache" ], "ETag": [ - "W/\"4dc7e9d8-efb7-4ef0-a27f-a823a08cb9f4\"" + "W/\"19d0a000-4484-4b5f-8915-2378a4398450\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31987" + "31975" ], "x-ms-correlation-request-id": [ - "3efbe1d6-5d18-4b5d-a873-b05a30f66315" + "a7ea5458-71d4-4428-9e81-30463524c279" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T010944Z:3efbe1d6-5d18-4b5d-a873-b05a30f66315" + "NORTHCENTRALUS:20150424T153337Z:a7ea5458-71d4-4428-9e81-30463524c279" ], "Date": [ - "Sat, 18 Apr 2015 01:09:44 GMT" + "Fri, 24 Apr 2015 15:33:37 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7990/providers/Microsoft.Network/networkInterfaces/nicpstestrg7990?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzk5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljcHN0ZXN0cmc3OTkwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7246/providers/Microsoft.Network/networkInterfaces/nicpstestrg7246?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzI0Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljcHN0ZXN0cmc3MjQ2P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1026,10 +971,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"nicpstestrg7990\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7990/providers/Microsoft.Network/networkInterfaces/nicpstestrg7990\",\r\n \"etag\": \"W/\\\"de1e2d6f-f764-406f-97be-4d8b784ed195\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7990/providers/Microsoft.Network/networkInterfaces/nicpstestrg7990/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"de1e2d6f-f764-406f-97be-4d8b784ed195\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7990/providers/Microsoft.Network/publicIPAddresses/pubippstestrg7990\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7990/providers/Microsoft.Network/virtualNetworks/vnetpstestrg7990/subnets/subnetpstestrg7990\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [\r\n \"10.0.1.5\"\r\n ],\r\n \"appliedDnsServers\": [\r\n \"10.0.1.5\"\r\n ]\r\n },\r\n \"macAddress\": \"00-0D-3A-32-15-0D\",\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7990/providers/Microsoft.Compute/virtualMachines/vmpstestrg7990\"\r\n }\r\n },\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"nicpstestrg7246\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7246/providers/Microsoft.Network/networkInterfaces/nicpstestrg7246\",\r\n \"etag\": \"W/\\\"287dd43e-1974-43e8-976c-04d234ea99fe\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7246/providers/Microsoft.Network/networkInterfaces/nicpstestrg7246/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"287dd43e-1974-43e8-976c-04d234ea99fe\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7246/providers/Microsoft.Network/publicIPAddresses/pubippstestrg7246\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7246/providers/Microsoft.Network/virtualNetworks/vnetpstestrg7246/subnets/subnetpstestrg7246\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [\r\n \"10.0.1.5\"\r\n ],\r\n \"appliedDnsServers\": [\r\n \"10.0.1.5\"\r\n ]\r\n },\r\n \"macAddress\": \"00-0D-3A-80-0D-DF\",\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7246/providers/Microsoft.Compute/virtualMachines/vmpstestrg7246\"\r\n }\r\n },\r\n \"location\": \"eastasia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1668" + "1669" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1041,7 +986,7 @@ "no-cache" ], "x-ms-request-id": [ - "6fd1c18b-382f-4daa-b71b-1b79ff56fd69" + "72edb0bf-8cdf-4c74-9a5e-feebbd5ee6a9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1050,7 +995,7 @@ "no-cache" ], "ETag": [ - "W/\"de1e2d6f-f764-406f-97be-4d8b784ed195\"" + "W/\"287dd43e-1974-43e8-976c-04d234ea99fe\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1060,37 +1005,37 @@ "31999" ], "x-ms-correlation-request-id": [ - "ba4e1499-ae1d-4f1f-8c31-d6690f905ce8" + "07d5c019-8145-47f4-9438-6ebeb140f325" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T011652Z:ba4e1499-ae1d-4f1f-8c31-d6690f905ce8" + "NORTHCENTRALUS:20150424T153945Z:07d5c019-8145-47f4-9438-6ebeb140f325" ], "Date": [ - "Sat, 18 Apr 2015 01:16:51 GMT" + "Fri, 24 Apr 2015 15:39:45 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7990/providers/Microsoft.Network/networkInterfaces/nicpstestrg7990?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzk5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljcHN0ZXN0cmc3OTkwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7246/providers/Microsoft.Network/networkInterfaces/nicpstestrg7246?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzI0Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljcHN0ZXN0cmc3MjQ2P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7990/providers/Microsoft.Network/virtualNetworks/vnetpstestrg7990/subnets/subnetpstestrg7990\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7990/providers/Microsoft.Network/publicIPAddresses/pubippstestrg7990\"\r\n },\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": []\r\n },\r\n \"name\": \"ipconfig1\"\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [\r\n \"10.0.1.5\"\r\n ],\r\n \"appliedDnsServers\": []\r\n },\r\n \"primary\": false\r\n },\r\n \"name\": \"nicpstestrg7990\",\r\n \"type\": \"microsoft.network/networkInterfaces\",\r\n \"location\": \"West US\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7246/providers/Microsoft.Network/virtualNetworks/vnetpstestrg7246/subnets/subnetpstestrg7246\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7246/providers/Microsoft.Network/publicIPAddresses/pubippstestrg7246\"\r\n },\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": []\r\n },\r\n \"name\": \"ipconfig1\"\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [\r\n \"10.0.1.5\"\r\n ],\r\n \"appliedDnsServers\": []\r\n },\r\n \"primary\": false\r\n },\r\n \"name\": \"nicpstestrg7246\",\r\n \"type\": \"microsoft.network/networkInterfaces\",\r\n \"location\": \"eastasia\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "972" + "973" ], "User-Agent": [ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"nicpstestrg7990\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7990/providers/Microsoft.Network/networkInterfaces/nicpstestrg7990\",\r\n \"etag\": \"W/\\\"4dc7e9d8-efb7-4ef0-a27f-a823a08cb9f4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7990/providers/Microsoft.Network/networkInterfaces/nicpstestrg7990/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"4dc7e9d8-efb7-4ef0-a27f-a823a08cb9f4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7990/providers/Microsoft.Network/publicIPAddresses/pubippstestrg7990\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7990/providers/Microsoft.Network/virtualNetworks/vnetpstestrg7990/subnets/subnetpstestrg7990\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [\r\n \"10.0.1.5\"\r\n ]\r\n }\r\n },\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"nicpstestrg7246\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7246/providers/Microsoft.Network/networkInterfaces/nicpstestrg7246\",\r\n \"etag\": \"W/\\\"19d0a000-4484-4b5f-8915-2378a4398450\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7246/providers/Microsoft.Network/networkInterfaces/nicpstestrg7246/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"19d0a000-4484-4b5f-8915-2378a4398450\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7246/providers/Microsoft.Network/publicIPAddresses/pubippstestrg7246\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7246/providers/Microsoft.Network/virtualNetworks/vnetpstestrg7246/subnets/subnetpstestrg7246\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [\r\n \"10.0.1.5\"\r\n ]\r\n }\r\n },\r\n \"location\": \"eastasia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1359" + "1360" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1101,14 +1046,11 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "10" - ], "x-ms-request-id": [ - "eb1f6f44-ab90-458f-a823-85b95af07726" + "6b5b9270-f286-426c-ba6d-f174ed77d652" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/eb1f6f44-ab90-458f-a823-85b95af07726?api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/eastasia/operations/6b5b9270-f286-426c-ba6d-f174ed77d652?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1121,23 +1063,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1194" ], "x-ms-correlation-request-id": [ - "ca6f054b-0e54-4c86-99b3-0e904ddb5b93" + "c38aa943-906c-4c3f-8091-d708fd71e617" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T010944Z:ca6f054b-0e54-4c86-99b3-0e904ddb5b93" + "NORTHCENTRALUS:20150424T153335Z:c38aa943-906c-4c3f-8091-d708fd71e617" ], "Date": [ - "Sat, 18 Apr 2015 01:09:43 GMT" + "Fri, 24 Apr 2015 15:33:35 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/eb1f6f44-ab90-458f-a823-85b95af07726?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWIxZjZmNDQtYWI5MC00NThmLWE4MjMtODViOTVhZjA3NzI2P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/eastasia/operations/6b5b9270-f286-426c-ba6d-f174ed77d652?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy82YjViOTI3MC1mMjg2LTQyNmMtYmE2ZC1mMTc0ZWQ3N2Q2NTI/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1163,7 +1105,7 @@ "no-cache" ], "x-ms-request-id": [ - "12030c54-8414-43ae-b2c7-f2393b8ad498" + "6bd4d431-4c15-4a5d-b51b-fbc681eddb1b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1176,34 +1118,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31989" + "31977" ], "x-ms-correlation-request-id": [ - "18d7a80a-653d-43ce-a521-57058f6836fd" + "a8e943d3-deac-4934-b96c-299821c0a798" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T010944Z:18d7a80a-653d-43ce-a521-57058f6836fd" + "NORTHCENTRALUS:20150424T153336Z:a8e943d3-deac-4934-b96c-299821c0a798" ], "Date": [ - "Sat, 18 Apr 2015 01:09:43 GMT" + "Fri, 24 Apr 2015 15:33:36 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7990/providers/Microsoft.Storage/storageAccounts/stopstestrg7990?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzk5MC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzk5MD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7246/providers/Microsoft.Storage/storageAccounts/stopstestrg7246?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzI0Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzI0Nj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "89" + "90" ], "x-ms-client-request-id": [ - "d2eaed2e-5379-4d7c-b2e2-1a5d473f7f58" + "bb35631f-f154-4209-8e93-704c73f03de7" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" @@ -1227,13 +1169,13 @@ "25" ], "x-ms-request-id": [ - "d7764c50-696a-428b-8e2d-c23dab31f65a" + "a1a52248-2025-444f-b3c2-d8062d42be68" ], "Cache-Control": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Storage/operations/d7764c50-696a-428b-8e2d-c23dab31f65a?monitor=true&api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Storage/operations/a1a52248-2025-444f-b3c2-d8062d42be68?monitor=true&api-version=2015-05-01-preview" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1243,28 +1185,28 @@ "1199" ], "x-ms-correlation-request-id": [ - "2864db0e-e47a-4e16-9ed9-478a20d5f94c" + "eb128c26-3c6b-447b-8322-84036229ec52" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T010953Z:2864db0e-e47a-4e16-9ed9-478a20d5f94c" + "NORTHCENTRALUS:20150424T153346Z:eb128c26-3c6b-447b-8322-84036229ec52" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Sat, 18 Apr 2015 01:09:52 GMT" + "Fri, 24 Apr 2015 15:33:45 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Storage/operations/d7764c50-696a-428b-8e2d-c23dab31f65a?monitor=true&api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2Q3NzY0YzUwLTY5NmEtNDI4Yi04ZTJkLWMyM2RhYjMxZjY1YT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Storage/operations/a1a52248-2025-444f-b3c2-d8062d42be68?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2ExYTUyMjQ4LTIwMjUtNDQ0Zi1iM2MyLWQ4MDYyZDQyYmU2OD9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "589f27d5-667b-4f5a-bc1e-4cd60044df09" + "3ffd2203-aec7-48b6-87ab-05e0336c379b" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" @@ -1288,13 +1230,13 @@ "25" ], "x-ms-request-id": [ - "0217a02f-bb09-4374-a135-e937f9498257" + "776422fb-1609-4425-a6e9-6e06fffc4ce7" ], "Cache-Control": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Storage/operations/d7764c50-696a-428b-8e2d-c23dab31f65a?monitor=true&api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Storage/operations/a1a52248-2025-444f-b3c2-d8062d42be68?monitor=true&api-version=2015-05-01-preview" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1304,37 +1246,37 @@ "31999" ], "x-ms-correlation-request-id": [ - "c9c96c92-77eb-49cd-b5f8-80cbed0b7e20" + "e72d8417-e4e6-4c3a-a7de-caffba602244" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T010953Z:c9c96c92-77eb-49cd-b5f8-80cbed0b7e20" + "NORTHCENTRALUS:20150424T153347Z:e72d8417-e4e6-4c3a-a7de-caffba602244" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Sat, 18 Apr 2015 01:09:53 GMT" + "Fri, 24 Apr 2015 15:33:46 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Storage/operations/d7764c50-696a-428b-8e2d-c23dab31f65a?monitor=true&api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2Q3NzY0YzUwLTY5NmEtNDI4Yi04ZTJkLWMyM2RhYjMxZjY1YT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Storage/operations/a1a52248-2025-444f-b3c2-d8062d42be68?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2ExYTUyMjQ4LTIwMjUtNDQ0Zi1iM2MyLWQ4MDYyZDQyYmU2OD9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f58947ac-9ec5-46d6-8349-976df5719f54" + "52663bd2-3105-480f-870e-0bf0ae75765f" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n },\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n },\r\n \"location\": \"East Asia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "66" + "68" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1346,7 +1288,7 @@ "no-cache" ], "x-ms-request-id": [ - "c969f9de-4faa-4e77-9156-6aadaed52a53" + "edf8c11c-e966-435c-83db-521a9ea38bb4" ], "Cache-Control": [ "no-cache" @@ -1359,37 +1301,37 @@ "31998" ], "x-ms-correlation-request-id": [ - "c77f24c0-eb41-4896-9b82-13ff08b8badf" + "0f4d298b-0c2d-491e-8a98-0ac96964b17d" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T011018Z:c77f24c0-eb41-4896-9b82-13ff08b8badf" + "NORTHCENTRALUS:20150424T153412Z:0f4d298b-0c2d-491e-8a98-0ac96964b17d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Sat, 18 Apr 2015 01:10:17 GMT" + "Fri, 24 Apr 2015 15:34:11 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7990/providers/Microsoft.Storage/storageAccounts/stopstestrg7990?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzk5MC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzk5MD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7246/providers/Microsoft.Storage/storageAccounts/stopstestrg7246?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzI0Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzI0Nj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "32753aea-b1c8-425c-bfc4-bfc43f42c580" + "104ae430-45f9-4d94-be37-9af2964b464c" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7990/providers/Microsoft.Storage/storageAccounts/stopstestrg7990\",\r\n \"name\": \"stopstestrg7990\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stopstestrg7990.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg7990.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg7990.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-04-18T01:09:51.554246Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7246/providers/Microsoft.Storage/storageAccounts/stopstestrg7246\",\r\n \"name\": \"stopstestrg7246\",\r\n \"location\": \"East Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stopstestrg7246.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg7246.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg7246.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"East Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"Southeast Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-04-24T15:33:44.0204059Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "672" + "683" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1401,7 +1343,7 @@ "no-cache" ], "x-ms-request-id": [ - "d633fe88-bfa3-47d2-a972-e170319d3231" + "b7f86023-c0b0-4f4d-8869-f8348dd32c6e" ], "Cache-Control": [ "no-cache" @@ -1414,40 +1356,37 @@ "31997" ], "x-ms-correlation-request-id": [ - "39d8082a-c8c0-4725-afe3-f604a92337f4" + "2e3b225d-fcc4-45f3-9d7d-efe5e08bbd9a" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T011018Z:39d8082a-c8c0-4725-afe3-f604a92337f4" + "NORTHCENTRALUS:20150424T153412Z:2e3b225d-fcc4-45f3-9d7d-efe5e08bbd9a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Sat, 18 Apr 2015 01:10:18 GMT" + "Fri, 24 Apr 2015 15:34:12 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7990/providers/Microsoft.Compute/virtualMachines/vmpstestrg7990?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzk5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtcHN0ZXN0cmc3OTkwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A2\"\r\n },\r\n \"storageProfile\": {\r\n \"sourceImage\": {\r\n \"id\": \"/9532a63e-f2eb-4649-bb23-5ed01077ce80/services/images/a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-Datacenter-201503.01-en.us-127GB.vhd\"\r\n },\r\n \"destinationVhdsContainer\": \"https://stopstestrg7990.blob.core.windows.net/test\",\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"testDataDisk1\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg7990.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\"\r\n },\r\n {\r\n \"lun\": 1,\r\n \"diskSizeGB\": 11,\r\n \"name\": \"testDataDisk2\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg7990.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\"\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123pstestrg7990\"\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7990/providers/Microsoft.Network/networkInterfaces/nicpstestrg7990\"\r\n }\r\n ]\r\n }\r\n },\r\n \"name\": \"vmpstestrg7990\",\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7246/providers/Microsoft.Storage/storageAccounts/stopstestrg7246?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzI0Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzI0Nj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json" - ], - "Content-Length": [ - "1450" + "x-ms-client-request-id": [ + "cfa14f0e-26c5-49ce-95ec-02fcf1b8c1c7" ], "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A2\"\r\n },\r\n \"storageProfile\": {\r\n \"sourceImage\": {\r\n \"id\": \"/9532a63e-f2eb-4649-bb23-5ed01077ce80/services/images/a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-Datacenter-201503.01-en.us-127GB.vhd\"\r\n },\r\n \"destinationVhdsContainer\": \"https://stopstestrg7990.blob.core.windows.net/test\",\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"vmpstestrg7990-os-20150418-011151-317968\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg7990.blob.core.windows.net/test/vmpstestrg7990-os-20150418-011151-317968.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"testDataDisk1\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg7990.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\"\r\n },\r\n {\r\n \"lun\": 1,\r\n \"diskSizeGB\": 11,\r\n \"name\": \"testDataDisk2\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg7990.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\"\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7990/providers/Microsoft.Network/networkInterfaces/nicpstestrg7990\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"creating\"\r\n },\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7990/providers/Microsoft.Compute/virtualMachines/vmpstestrg7990\",\r\n \"name\": \"vmpstestrg7990\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7246/providers/Microsoft.Storage/storageAccounts/stopstestrg7246\",\r\n \"name\": \"stopstestrg7246\",\r\n \"location\": \"East Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stopstestrg7246.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg7246.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg7246.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"East Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"Southeast Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-04-24T15:33:44.0204059Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2008" + "683" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1458,14 +1397,8 @@ "Pragma": [ "no-cache" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/westus/operations/e59780aa-650a-4a14-ac16-dc6cd7497867?api-version=2015-05-01-preview" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "x-ms-request-id": [ - "e59780aa-650a-4a14-ac16-dc6cd7497867" + "dd0dc70a-a6c2-4320-b294-caf6720c1939" ], "Cache-Control": [ "no-cache" @@ -1474,38 +1407,38 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "x-ms-ratelimit-remaining-subscription-reads": [ + "31996" ], "x-ms-correlation-request-id": [ - "49b61c59-adbb-4a41-90b6-3c5b2275cacf" + "79c25284-6033-40d0-b9b5-d004da2284d3" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T011150Z:49b61c59-adbb-4a41-90b6-3c5b2275cacf" + "NORTHCENTRALUS:20150424T153412Z:79c25284-6033-40d0-b9b5-d004da2284d3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Sat, 18 Apr 2015 01:11:50 GMT" + "Fri, 24 Apr 2015 15:34:12 GMT" ] }, - "StatusCode": 201 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/westus/operations/e59780aa-650a-4a14-ac16-dc6cd7497867?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTU5NzgwYWEtNjUwYS00YTE0LWFjMTYtZGM2Y2Q3NDk3ODY3P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/eastasia/publishers?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - - - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"e59780aa-650a-4a14-ac16-dc6cd7497867\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-17T18:11:41.3648738-07:00\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"boxless\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/boxless\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"CloudLink.SecureVM\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/CloudLink.SecureVM\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"informatica-cloud\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/informatica-cloud\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"marketplace-test\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/marketplace-test\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"metavistech\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/metavistech\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.Azure.ServiceFabric\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Azure.ServiceFabric\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.WindowsAzure.GuestAgent\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.WindowsAzure.GuestAgent\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftWindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServerEssentials\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MSOpenTech.Extensions\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MSOpenTech.Extensions\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"seagate\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/seagate\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"sharefile\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/sharefile\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"sisense\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/sisense\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"vision_solutions\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/vision_solutions\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/wowza\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "132" + "14225" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1520,7 +1453,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "996dd388-45c9-4132-8220-749af3baf759" + "f52ba57d-465c-4820-a448-c5905233320b" ], "Cache-Control": [ "no-cache" @@ -1533,34 +1466,31 @@ "31999" ], "x-ms-correlation-request-id": [ - "34c15682-4a6b-4e55-a1b1-6dfca61d1880" + "309e5913-1f50-46fe-b6a4-172ebc124d6f" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T011151Z:34c15682-4a6b-4e55-a1b1-6dfca61d1880" + "NORTHCENTRALUS:20150424T153414Z:309e5913-1f50-46fe-b6a4-172ebc124d6f" ], "Date": [ - "Sat, 18 Apr 2015 01:11:50 GMT" + "Fri, 24 Apr 2015 15:34:14 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/westus/operations/e59780aa-650a-4a14-ac16-dc6cd7497867?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTU5NzgwYWEtNjUwYS00YTE0LWFjMTYtZGM2Y2Q3NDk3ODY3P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/eastasia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - - - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"e59780aa-650a-4a14-ac16-dc6cd7497867\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-17T18:11:41.3648738-07:00\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"WindowsServer\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "132" + "262" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1575,7 +1505,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "971d6096-3336-42a9-a83a-cb916bb216c0" + "1a9ef9ba-f5e6-4807-bf67-30370382826d" ], "Cache-Control": [ "no-cache" @@ -1588,34 +1518,31 @@ "31998" ], "x-ms-correlation-request-id": [ - "b8a49672-8b1b-4c8f-b778-208982a15783" + "6d8ea036-102b-4427-b88a-2b9cab12992d" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T011221Z:b8a49672-8b1b-4c8f-b778-208982a15783" + "NORTHCENTRALUS:20150424T153416Z:6d8ea036-102b-4427-b88a-2b9cab12992d" ], "Date": [ - "Sat, 18 Apr 2015 01:12:21 GMT" + "Fri, 24 Apr 2015 15:34:16 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/westus/operations/e59780aa-650a-4a14-ac16-dc6cd7497867?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTU5NzgwYWEtNjUwYS00YTE0LWFjMTYtZGM2Y2Q3NDk3ODY3P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/eastasia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvV2luZG93c1NlcnZlci9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - - - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"e59780aa-650a-4a14-ac16-dc6cd7497867\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-17T18:11:41.3648738-07:00\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"2008-R2-SP1\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"2012-Datacenter\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"2012-R2-Datacenter\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Windows-Server-Technical-Preview\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/Windows-Server-Technical-Preview\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "132" + "1163" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1630,7 +1557,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e3346876-0bd3-4306-b4c9-8d988100e58e" + "a5f7f98e-4473-4282-a219-05321a2d9f07" ], "Cache-Control": [ "no-cache" @@ -1643,34 +1570,31 @@ "31997" ], "x-ms-correlation-request-id": [ - "81a40479-10e2-4bf7-921e-075d8c489bc9" + "31fad82f-34fa-4fb7-b876-de6fc0580135" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T011251Z:81a40479-10e2-4bf7-921e-075d8c489bc9" + "NORTHCENTRALUS:20150424T153417Z:31fad82f-34fa-4fb7-b876-de6fc0580135" ], "Date": [ - "Sat, 18 Apr 2015 01:12:50 GMT" + "Fri, 24 Apr 2015 15:34:17 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/westus/operations/e59780aa-650a-4a14-ac16-dc6cd7497867?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTU5NzgwYWEtNjUwYS00YTE0LWFjMTYtZGM2Y2Q3NDk3ODY3P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/eastasia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvV2luZG93c1NlcnZlci9za3VzLzIwMDgtUjItU1AxL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - - - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"e59780aa-650a-4a14-ac16-dc6cd7497867\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-17T18:11:41.3648738-07:00\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"2.0.201502\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201502\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"2.0.201503\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201503\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "132" + "589" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1685,7 +1609,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4101fe15-ccee-47f5-8b1d-ee41ad742280" + "8227eea1-ab93-48fe-8edb-9124242363ab" ], "Cache-Control": [ "no-cache" @@ -1698,34 +1622,31 @@ "31996" ], "x-ms-correlation-request-id": [ - "f1ac0f29-9aa6-486c-b1ba-1ceb0779ad21" + "2554364c-07ca-4e08-9b5d-f388cabb41dc" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T011321Z:f1ac0f29-9aa6-486c-b1ba-1ceb0779ad21" + "NORTHCENTRALUS:20150424T153419Z:2554364c-07ca-4e08-9b5d-f388cabb41dc" ], "Date": [ - "Sat, 18 Apr 2015 01:13:21 GMT" + "Fri, 24 Apr 2015 15:34:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/westus/operations/e59780aa-650a-4a14-ac16-dc6cd7497867?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTU5NzgwYWEtNjUwYS00YTE0LWFjMTYtZGM2Y2Q3NDk3ODY3P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/eastasia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions/2.0.201502?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvV2luZG93c1NlcnZlci9za3VzLzIwMDgtUjItU1AxL3ZlcnNpb25zLzIuMC4yMDE1MDI/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - - - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"e59780aa-650a-4a14-ac16-dc6cd7497867\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-17T18:11:41.3648738-07:00\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastasia\",\r\n \"name\": \"2.0.201502\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201502\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "132" + "397" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1740,7 +1661,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "23fc26e5-f762-45e5-9509-f22391b8e08b" + "522790bd-9241-4c55-a880-0125d953fb90" ], "Cache-Control": [ "no-cache" @@ -1753,34 +1674,92 @@ "31995" ], "x-ms-correlation-request-id": [ - "cd1757d7-1ac6-4859-b35a-18a615b44561" + "749fb38a-f831-4bdb-a088-169a001f11fd" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T011351Z:cd1757d7-1ac6-4859-b35a-18a615b44561" + "NORTHCENTRALUS:20150424T153420Z:749fb38a-f831-4bdb-a088-169a001f11fd" ], "Date": [ - "Sat, 18 Apr 2015 01:13:50 GMT" + "Fri, 24 Apr 2015 15:34:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/westus/operations/e59780aa-650a-4a14-ac16-dc6cd7497867?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTU5NzgwYWEtNjUwYS00YTE0LWFjMTYtZGM2Y2Q3NDk3ODY3P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7246/providers/Microsoft.Compute/virtualMachines/vmpstestrg7246?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzI0Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtcHN0ZXN0cmc3MjQ2P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201502\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"osDisk\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg7246.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"createOption\": \"FromImage\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123pstestrg7246\",\r\n \"windowsConfiguration\": {}\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7246/providers/Microsoft.Network/networkInterfaces/nicpstestrg7246\"\r\n }\r\n ]\r\n }\r\n },\r\n \"name\": \"vmpstestrg7246\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "1070" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201502\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg7246.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7246/providers/Microsoft.Network/networkInterfaces/nicpstestrg7246\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7246/providers/Microsoft.Compute/virtualMachines/vmpstestrg7246\",\r\n \"name\": \"vmpstestrg7246\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {}\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1350" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/eastasia/operations/088ef200-6b09-4437-8de5-4b7762a67f18?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "088ef200-6b09-4437-8de5-4b7762a67f18" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "b9e89892-64ce-4fc5-b1db-d6a8fa180538" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150424T153430Z:b9e89892-64ce-4fc5-b1db-d6a8fa180538" + ], + "Date": [ + "Fri, 24 Apr 2015 15:34:29 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/eastasia/operations/088ef200-6b09-4437-8de5-4b7762a67f18?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy8wODhlZjIwMC02YjA5LTQ0MzctOGRlNS00Yjc3NjJhNjdmMTg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - - - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"e59780aa-650a-4a14-ac16-dc6cd7497867\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-17T18:11:41.3648738-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"088ef200-6b09-4437-8de5-4b7762a67f18\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-24T08:34:25.8239764-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "132" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1795,7 +1774,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a14029d1-1c40-492e-bc5a-cbf3cc89258a" + "a153ab97-ba81-4992-9d4f-424127889ef1" ], "Cache-Control": [ "no-cache" @@ -1808,34 +1787,31 @@ "31994" ], "x-ms-correlation-request-id": [ - "72b805c6-5e76-406f-ac5c-6ef3e01b69c9" + "eb5c0c1d-7818-49c7-befd-3a543ba700a0" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T011421Z:72b805c6-5e76-406f-ac5c-6ef3e01b69c9" + "NORTHCENTRALUS:20150424T153431Z:eb5c0c1d-7818-49c7-befd-3a543ba700a0" ], "Date": [ - "Sat, 18 Apr 2015 01:14:21 GMT" + "Fri, 24 Apr 2015 15:34:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/westus/operations/e59780aa-650a-4a14-ac16-dc6cd7497867?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTU5NzgwYWEtNjUwYS00YTE0LWFjMTYtZGM2Y2Q3NDk3ODY3P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/eastasia/operations/088ef200-6b09-4437-8de5-4b7762a67f18?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy8wODhlZjIwMC02YjA5LTQ0MzctOGRlNS00Yjc3NjJhNjdmMTg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - - - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"e59780aa-650a-4a14-ac16-dc6cd7497867\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-17T18:11:41.3648738-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"088ef200-6b09-4437-8de5-4b7762a67f18\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-24T08:34:25.8239764-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "132" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1850,7 +1826,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7ce3debf-b9f8-41a0-8ece-449cded2e3b8" + "9a01b545-bfa6-4846-86a7-efc4b3419b0a" ], "Cache-Control": [ "no-cache" @@ -1863,34 +1839,31 @@ "31993" ], "x-ms-correlation-request-id": [ - "2dc16c36-276c-4418-ae15-d12609c68d77" + "51c5778b-8bd3-4a48-bd3c-4f17f970991d" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T011451Z:2dc16c36-276c-4418-ae15-d12609c68d77" + "NORTHCENTRALUS:20150424T153502Z:51c5778b-8bd3-4a48-bd3c-4f17f970991d" ], "Date": [ - "Sat, 18 Apr 2015 01:14:51 GMT" + "Fri, 24 Apr 2015 15:35:02 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/westus/operations/e59780aa-650a-4a14-ac16-dc6cd7497867?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTU5NzgwYWEtNjUwYS00YTE0LWFjMTYtZGM2Y2Q3NDk3ODY3P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/eastasia/operations/088ef200-6b09-4437-8de5-4b7762a67f18?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy8wODhlZjIwMC02YjA5LTQ0MzctOGRlNS00Yjc3NjJhNjdmMTg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - - - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"e59780aa-650a-4a14-ac16-dc6cd7497867\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-17T18:11:41.3648738-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"088ef200-6b09-4437-8de5-4b7762a67f18\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-24T08:34:25.8239764-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "132" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1905,7 +1878,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d418bb91-ec55-4aeb-92db-558a755883a0" + "bcdb4698-b914-4193-bea0-ad62ba1f2e7b" ], "Cache-Control": [ "no-cache" @@ -1918,34 +1891,31 @@ "31992" ], "x-ms-correlation-request-id": [ - "8c3d1fb3-4b87-4546-be09-bd69279b5dc6" + "2d4327ec-49ae-4aeb-a5ca-c39c5127a010" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T011521Z:8c3d1fb3-4b87-4546-be09-bd69279b5dc6" + "NORTHCENTRALUS:20150424T153533Z:2d4327ec-49ae-4aeb-a5ca-c39c5127a010" ], "Date": [ - "Sat, 18 Apr 2015 01:15:21 GMT" + "Fri, 24 Apr 2015 15:35:32 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/westus/operations/e59780aa-650a-4a14-ac16-dc6cd7497867?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTU5NzgwYWEtNjUwYS00YTE0LWFjMTYtZGM2Y2Q3NDk3ODY3P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/eastasia/operations/088ef200-6b09-4437-8de5-4b7762a67f18?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy8wODhlZjIwMC02YjA5LTQ0MzctOGRlNS00Yjc3NjJhNjdmMTg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - - - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"e59780aa-650a-4a14-ac16-dc6cd7497867\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-17T18:11:41.3648738-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"088ef200-6b09-4437-8de5-4b7762a67f18\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-24T08:34:25.8239764-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "132" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1960,7 +1930,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8b831093-9c30-4850-8adb-a846a0fbbb61" + "f10a3976-f12b-45cc-af36-cd5ec4e569b2" ], "Cache-Control": [ "no-cache" @@ -1973,34 +1943,31 @@ "31991" ], "x-ms-correlation-request-id": [ - "3da525d0-bfe7-4670-b1e7-4734a1e10eb2" + "9cbd6018-a3b2-4623-bef5-1c0be5b336b3" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T011552Z:3da525d0-bfe7-4670-b1e7-4734a1e10eb2" + "NORTHCENTRALUS:20150424T153604Z:9cbd6018-a3b2-4623-bef5-1c0be5b336b3" ], "Date": [ - "Sat, 18 Apr 2015 01:15:51 GMT" + "Fri, 24 Apr 2015 15:36:03 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/westus/operations/e59780aa-650a-4a14-ac16-dc6cd7497867?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTU5NzgwYWEtNjUwYS00YTE0LWFjMTYtZGM2Y2Q3NDk3ODY3P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/eastasia/operations/088ef200-6b09-4437-8de5-4b7762a67f18?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy8wODhlZjIwMC02YjA5LTQ0MzctOGRlNS00Yjc3NjJhNjdmMTg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - - - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"e59780aa-650a-4a14-ac16-dc6cd7497867\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-17T18:11:41.3648738-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"088ef200-6b09-4437-8de5-4b7762a67f18\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-24T08:34:25.8239764-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "132" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2015,7 +1982,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7a59310e-539c-4fdb-8cc5-96ad1bd98e96" + "2e7f17f1-7b2d-4036-868b-c3b1895a939b" ], "Cache-Control": [ "no-cache" @@ -2028,34 +1995,31 @@ "31990" ], "x-ms-correlation-request-id": [ - "d7b08d83-012e-44f8-ada5-e2108602342e" + "e542171b-b631-4a22-b6cf-487d53cb303d" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T011622Z:d7b08d83-012e-44f8-ada5-e2108602342e" + "NORTHCENTRALUS:20150424T153635Z:e542171b-b631-4a22-b6cf-487d53cb303d" ], "Date": [ - "Sat, 18 Apr 2015 01:16:22 GMT" + "Fri, 24 Apr 2015 15:36:34 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/westus/operations/e59780aa-650a-4a14-ac16-dc6cd7497867?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTU5NzgwYWEtNjUwYS00YTE0LWFjMTYtZGM2Y2Q3NDk3ODY3P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/eastasia/operations/088ef200-6b09-4437-8de5-4b7762a67f18?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy8wODhlZjIwMC02YjA5LTQ0MzctOGRlNS00Yjc3NjJhNjdmMTg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - - - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"e59780aa-650a-4a14-ac16-dc6cd7497867\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-04-17T18:11:41.3648738-07:00\",\r\n \"endTime\": \"2015-04-17T18:16:27.5202336-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"088ef200-6b09-4437-8de5-4b7762a67f18\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-24T08:34:25.8239764-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "182" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2070,7 +2034,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3c45d63e-740a-4bf8-bfc2-3d255fc3a853" + "149904af-2c6c-4f06-9a34-24f032916f2b" ], "Cache-Control": [ "no-cache" @@ -2083,31 +2047,31 @@ "31989" ], "x-ms-correlation-request-id": [ - "779d7f49-fc22-4d52-af8d-c449f508db9a" + "f7217bbe-8f08-4972-bfe1-aee520f569a5" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T011652Z:779d7f49-fc22-4d52-af8d-c449f508db9a" + "NORTHCENTRALUS:20150424T153706Z:f7217bbe-8f08-4972-bfe1-aee520f569a5" ], "Date": [ - "Sat, 18 Apr 2015 01:16:51 GMT" + "Fri, 24 Apr 2015 15:37:05 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7990/providers/Microsoft.Compute/virtualMachines/vmpstestrg7990?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzk5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtcHN0ZXN0cmc3OTkwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/eastasia/operations/088ef200-6b09-4437-8de5-4b7762a67f18?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy8wODhlZjIwMC02YjA5LTQ0MzctOGRlNS00Yjc3NjJhNjdmMTg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A2\"\r\n },\r\n \"storageProfile\": {\r\n \"sourceImage\": {\r\n \"id\": \"/9532a63e-f2eb-4649-bb23-5ed01077ce80/services/images/a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-Datacenter-201503.01-en.us-127GB.vhd\"\r\n },\r\n \"destinationVhdsContainer\": \"https://stopstestrg7990.blob.core.windows.net/test\",\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"vmpstestrg7990-os-20150418-011151-317968\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg7990.blob.core.windows.net/test/vmpstestrg7990-os-20150418-011151-317968.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"testDataDisk1\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg7990.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\"\r\n },\r\n {\r\n \"lun\": 1,\r\n \"diskSizeGB\": 11,\r\n \"name\": \"testDataDisk2\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg7990.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\"\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7990/providers/Microsoft.Network/networkInterfaces/nicpstestrg7990\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7990/providers/Microsoft.Compute/virtualMachines/vmpstestrg7990\",\r\n \"name\": \"vmpstestrg7990\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"088ef200-6b09-4437-8de5-4b7762a67f18\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-24T08:34:25.8239764-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "2009" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2122,7 +2086,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b4d51a9d-a657-4fb2-b91c-cf5557f04e28" + "6f9b0b1d-267b-48fd-93b7-5211e9539a9a" ], "Cache-Control": [ "no-cache" @@ -2135,31 +2099,34 @@ "31988" ], "x-ms-correlation-request-id": [ - "ba531c87-8910-4377-9bba-6aec6a09ef8e" + "0c7acf28-5711-4174-99d7-b7c244e62bac" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T011652Z:ba531c87-8910-4377-9bba-6aec6a09ef8e" + "NORTHCENTRALUS:20150424T153737Z:0c7acf28-5711-4174-99d7-b7c244e62bac" ], "Date": [ - "Sat, 18 Apr 2015 01:16:51 GMT" + "Fri, 24 Apr 2015 15:37:36 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7990/providers/Microsoft.Compute/virtualMachines/vmpstestrg7990?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzk5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtcHN0ZXN0cmc3OTkwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/eastasia/operations/088ef200-6b09-4437-8de5-4b7762a67f18?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy8wODhlZjIwMC02YjA5LTQ0MzctOGRlNS00Yjc3NjJhNjdmMTg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"operationId\": \"088ef200-6b09-4437-8de5-4b7762a67f18\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-24T08:34:25.8239764-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "0" + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" @@ -2167,57 +2134,48 @@ "Pragma": [ "no-cache" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/westus/operations/1969b070-48eb-4956-8575-493ff58a1fc9?api-version=2015-05-01-preview" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1969b070-48eb-4956-8575-493ff58a1fc9" + "8bf10589-2838-4f19-9235-127359f44aa8" ], "Cache-Control": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/westus/operations/1969b070-48eb-4956-8575-493ff58a1fc9?monitor=true&api-version=2015-05-01-preview" - ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "x-ms-ratelimit-remaining-subscription-reads": [ + "31987" ], "x-ms-correlation-request-id": [ - "b1b1c42b-02a9-4b11-b188-283cf761c952" + "9382b8db-0ae4-4804-a17e-6a342afb1159" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T011653Z:b1b1c42b-02a9-4b11-b188-283cf761c952" + "NORTHCENTRALUS:20150424T153808Z:9382b8db-0ae4-4804-a17e-6a342afb1159" ], "Date": [ - "Sat, 18 Apr 2015 01:16:52 GMT" + "Fri, 24 Apr 2015 15:38:07 GMT" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/westus/operations/1969b070-48eb-4956-8575-493ff58a1fc9?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMTk2OWIwNzAtNDhlYi00OTU2LTg1NzUtNDkzZmY1OGExZmM5P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/eastasia/operations/088ef200-6b09-4437-8de5-4b7762a67f18?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy8wODhlZjIwMC02YjA5LTQ0MzctOGRlNS00Yjc3NjJhNjdmMTg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - - - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"1969b070-48eb-4956-8575-493ff58a1fc9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-17T18:16:53.8794255-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"088ef200-6b09-4437-8de5-4b7762a67f18\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-24T08:34:25.8239764-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "132" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2232,7 +2190,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9bff9fde-caea-4184-8c8e-37b2d806a08d" + "9d42b31c-c186-4d01-a2f7-8eed14b676d2" ], "Cache-Control": [ "no-cache" @@ -2242,37 +2200,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31987" + "31986" ], "x-ms-correlation-request-id": [ - "2a27e389-2bc2-42d6-a853-05c55689fea8" + "1cd9be89-39c9-42b2-99dd-63f21ca74c63" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T011653Z:2a27e389-2bc2-42d6-a853-05c55689fea8" + "NORTHCENTRALUS:20150424T153839Z:1cd9be89-39c9-42b2-99dd-63f21ca74c63" ], "Date": [ - "Sat, 18 Apr 2015 01:16:52 GMT" + "Fri, 24 Apr 2015 15:38:38 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/westus/operations/1969b070-48eb-4956-8575-493ff58a1fc9?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMTk2OWIwNzAtNDhlYi00OTU2LTg1NzUtNDkzZmY1OGExZmM5P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/eastasia/operations/088ef200-6b09-4437-8de5-4b7762a67f18?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy8wODhlZjIwMC02YjA5LTQ0MzctOGRlNS00Yjc3NjJhNjdmMTg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - - - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"1969b070-48eb-4956-8575-493ff58a1fc9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-17T18:16:53.8794255-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"088ef200-6b09-4437-8de5-4b7762a67f18\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-24T08:34:25.8239764-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "132" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2287,7 +2242,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6ba64c81-b3f4-4e0b-be76-80055de4f23b" + "6798ec46-dfc0-4044-b50f-e8d344ec04f4" ], "Cache-Control": [ "no-cache" @@ -2297,37 +2252,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31986" + "31985" ], "x-ms-correlation-request-id": [ - "20e7d4b7-222b-4bb3-975e-6b9f2d0d9a09" + "43c288cf-9780-42c1-bcc2-d42e70ab1ca7" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T011723Z:20e7d4b7-222b-4bb3-975e-6b9f2d0d9a09" + "NORTHCENTRALUS:20150424T153910Z:43c288cf-9780-42c1-bcc2-d42e70ab1ca7" ], "Date": [ - "Sat, 18 Apr 2015 01:17:22 GMT" + "Fri, 24 Apr 2015 15:39:09 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/westus/operations/1969b070-48eb-4956-8575-493ff58a1fc9?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMTk2OWIwNzAtNDhlYi00OTU2LTg1NzUtNDkzZmY1OGExZmM5P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/eastasia/operations/088ef200-6b09-4437-8de5-4b7762a67f18?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy8wODhlZjIwMC02YjA5LTQ0MzctOGRlNS00Yjc3NjJhNjdmMTg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - - - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"1969b070-48eb-4956-8575-493ff58a1fc9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-17T18:16:53.8794255-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"088ef200-6b09-4437-8de5-4b7762a67f18\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-04-24T08:34:25.8239764-07:00\",\r\n \"endTime\": \"2015-04-24T08:39:17.8257682-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "132" + "191" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2342,7 +2294,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "54bc52cb-3e9f-4176-8595-b5b5aaf2e279" + "dd9e7a97-07ab-4b36-ad85-074fa1318471" ], "Cache-Control": [ "no-cache" @@ -2352,37 +2304,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31985" + "31984" ], "x-ms-correlation-request-id": [ - "717b4f85-3fc5-4cb1-bc3a-31b9836ebc39" + "adacb4cb-3689-4230-b246-97fa4be1944e" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T011753Z:717b4f85-3fc5-4cb1-bc3a-31b9836ebc39" + "NORTHCENTRALUS:20150424T153941Z:adacb4cb-3689-4230-b246-97fa4be1944e" ], "Date": [ - "Sat, 18 Apr 2015 01:17:52 GMT" + "Fri, 24 Apr 2015 15:39:40 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/westus/operations/1969b070-48eb-4956-8575-493ff58a1fc9?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMTk2OWIwNzAtNDhlYi00OTU2LTg1NzUtNDkzZmY1OGExZmM5P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7246/providers/Microsoft.Compute/virtualMachines/vmpstestrg7246?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzI0Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtcHN0ZXN0cmc3MjQ2P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - - - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"1969b070-48eb-4956-8575-493ff58a1fc9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-17T18:16:53.8794255-07:00\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201502\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg7246.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7246/providers/Microsoft.Network/networkInterfaces/nicpstestrg7246\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7246/providers/Microsoft.Compute/virtualMachines/vmpstestrg7246\",\r\n \"name\": \"vmpstestrg7246\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {}\r\n}", "ResponseHeaders": { "Content-Length": [ - "132" + "1351" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2397,7 +2346,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "23d023dd-0cdf-44fd-83ce-ead487bb75f1" + "31a06c9c-078b-4e4c-bc2d-2ff47949546b" ], "Cache-Control": [ "no-cache" @@ -2407,37 +2356,89 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31984" + "31983" ], "x-ms-correlation-request-id": [ - "d60d5ecf-6656-40fa-b51e-8d20dd722753" + "eacdf4b9-bb07-4bb4-83cd-bda02e2dc095" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T011824Z:d60d5ecf-6656-40fa-b51e-8d20dd722753" + "NORTHCENTRALUS:20150424T153943Z:eacdf4b9-bb07-4bb4-83cd-bda02e2dc095" ], "Date": [ - "Sat, 18 Apr 2015 01:18:23 GMT" + "Fri, 24 Apr 2015 15:39:42 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/westus/operations/1969b070-48eb-4956-8575-493ff58a1fc9?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMTk2OWIwNzAtNDhlYi00OTU2LTg1NzUtNDkzZmY1OGExZmM5P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg7246/providers/Microsoft.Compute/virtualMachines/vmpstestrg7246?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzI0Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtcHN0ZXN0cmc3MjQ2P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/eastasia/operations/dbe73654-498c-4ae8-b125-8879c60ae70f?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "dbe73654-498c-4ae8-b125-8879c60ae70f" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/eastasia/operations/dbe73654-498c-4ae8-b125-8879c60ae70f?monitor=true&api-version=2015-05-01-preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "f83bf3f2-135b-4ab7-9600-d9cd64982471" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150424T153951Z:f83bf3f2-135b-4ab7-9600-d9cd64982471" + ], + "Date": [ + "Fri, 24 Apr 2015 15:39:51 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/eastasia/operations/dbe73654-498c-4ae8-b125-8879c60ae70f?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9kYmU3MzY1NC00OThjLTRhZTgtYjEyNS04ODc5YzYwYWU3MGY/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - - - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"1969b070-48eb-4956-8575-493ff58a1fc9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-17T18:16:53.8794255-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"dbe73654-498c-4ae8-b125-8879c60ae70f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-24T08:39:49.2635566-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "132" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2452,7 +2453,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6fc3bf57-93f3-44d0-8555-501f4ee50ca7" + "a8e7a035-eec8-4781-90df-037810cac78f" ], "Cache-Control": [ "no-cache" @@ -2462,37 +2463,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31983" + "31998" ], "x-ms-correlation-request-id": [ - "b893c24c-1e80-443b-9867-13bee1e5e8ea" + "b125489f-d5f1-41c0-b6bd-9de91458e9ff" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T011854Z:b893c24c-1e80-443b-9867-13bee1e5e8ea" + "NORTHCENTRALUS:20150424T153952Z:b125489f-d5f1-41c0-b6bd-9de91458e9ff" ], "Date": [ - "Sat, 18 Apr 2015 01:18:53 GMT" + "Fri, 24 Apr 2015 15:39:52 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/westus/operations/1969b070-48eb-4956-8575-493ff58a1fc9?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMTk2OWIwNzAtNDhlYi00OTU2LTg1NzUtNDkzZmY1OGExZmM5P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/eastasia/operations/dbe73654-498c-4ae8-b125-8879c60ae70f?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9kYmU3MzY1NC00OThjLTRhZTgtYjEyNS04ODc5YzYwYWU3MGY/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - - - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"1969b070-48eb-4956-8575-493ff58a1fc9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-17T18:16:53.8794255-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"dbe73654-498c-4ae8-b125-8879c60ae70f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-24T08:39:49.2635566-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "132" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2507,7 +2505,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8fa5ebe1-d3d2-4b79-8d0c-1a7218d2976e" + "193e2156-d1d2-4e22-ab8a-332c017a8f41" ], "Cache-Control": [ "no-cache" @@ -2517,37 +2515,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31982" + "31997" ], "x-ms-correlation-request-id": [ - "e6b5171e-a15e-4768-a6cf-c79e5691ebd6" + "b5639ea7-a9cc-4ad7-a399-4f4f8cd091f9" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T011924Z:e6b5171e-a15e-4768-a6cf-c79e5691ebd6" + "NORTHCENTRALUS:20150424T154023Z:b5639ea7-a9cc-4ad7-a399-4f4f8cd091f9" ], "Date": [ - "Sat, 18 Apr 2015 01:19:23 GMT" + "Fri, 24 Apr 2015 15:40:23 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/westus/operations/1969b070-48eb-4956-8575-493ff58a1fc9?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMTk2OWIwNzAtNDhlYi00OTU2LTg1NzUtNDkzZmY1OGExZmM5P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/eastasia/operations/dbe73654-498c-4ae8-b125-8879c60ae70f?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9kYmU3MzY1NC00OThjLTRhZTgtYjEyNS04ODc5YzYwYWU3MGY/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - - - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"1969b070-48eb-4956-8575-493ff58a1fc9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-17T18:16:53.8794255-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"dbe73654-498c-4ae8-b125-8879c60ae70f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-24T08:39:49.2635566-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "132" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2562,7 +2557,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "113c1b27-d5aa-4b37-b93d-4d6babdfae61" + "ccc6149f-00a0-4dd4-a5c4-fcf55232f9eb" ], "Cache-Control": [ "no-cache" @@ -2572,37 +2567,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31981" + "31996" ], "x-ms-correlation-request-id": [ - "23ebdeb9-2fb0-432b-a03c-5e1a295bdcd8" + "7d168a2d-d4f1-416f-bb49-0c4af8ec918c" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T011954Z:23ebdeb9-2fb0-432b-a03c-5e1a295bdcd8" + "NORTHCENTRALUS:20150424T154054Z:7d168a2d-d4f1-416f-bb49-0c4af8ec918c" ], "Date": [ - "Sat, 18 Apr 2015 01:19:54 GMT" + "Fri, 24 Apr 2015 15:40:54 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/westus/operations/1969b070-48eb-4956-8575-493ff58a1fc9?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMTk2OWIwNzAtNDhlYi00OTU2LTg1NzUtNDkzZmY1OGExZmM5P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/eastasia/operations/dbe73654-498c-4ae8-b125-8879c60ae70f?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9kYmU3MzY1NC00OThjLTRhZTgtYjEyNS04ODc5YzYwYWU3MGY/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - - - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"1969b070-48eb-4956-8575-493ff58a1fc9\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-04-17T18:16:53.8794255-07:00\",\r\n \"endTime\": \"2015-04-17T18:20:16.160181-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"dbe73654-498c-4ae8-b125-8879c60ae70f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-24T08:39:49.2635566-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "181" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2617,7 +2609,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "13827f06-ae26-4cd8-b05f-26d6459c7453" + "d369e0b1-95a2-4594-844c-f1b70d5408eb" ], "Cache-Control": [ "no-cache" @@ -2627,34 +2619,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31980" + "31995" ], "x-ms-correlation-request-id": [ - "8149c60e-6e5b-4c68-9d39-11a79e348ced" + "b5e2fade-7d5c-4b1c-9bd3-43ac2682ba1c" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T012024Z:8149c60e-6e5b-4c68-9d39-11a79e348ced" + "NORTHCENTRALUS:20150424T154125Z:b5e2fade-7d5c-4b1c-9bd3-43ac2682ba1c" ], "Date": [ - "Sat, 18 Apr 2015 01:20:24 GMT" + "Fri, 24 Apr 2015 15:41:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourcegroups/pstestrg7990?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNzk5MD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/eastasia/operations/dbe73654-498c-4ae8-b125-8879c60ae70f?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9kYmU3MzY1NC00OThjLTRhZTgtYjEyNS04ODc5YzYwYWU3MGY/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"operationId\": \"dbe73654-498c-4ae8-b125-8879c60ae70f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-24T08:39:49.2635566-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "0" + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" @@ -2662,45 +2657,92 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5252224d-fdd2-42db-b567-0425f5dc5298" + "79b18a44-3d33-496b-8bc6-9020cc004697" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31994" ], "x-ms-correlation-request-id": [ - "5252224d-fdd2-42db-b567-0425f5dc5298" + "5de7817c-4c2d-4f38-a3f8-4a9b8143f50a" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T012025Z:5252224d-fdd2-42db-b567-0425f5dc5298" + "NORTHCENTRALUS:20150424T154156Z:5de7817c-4c2d-4f38-a3f8-4a9b8143f50a" + ], + "Date": [ + "Fri, 24 Apr 2015 15:41:55 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/eastasia/operations/dbe73654-498c-4ae8-b125-8879c60ae70f?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9kYmU3MzY1NC00OThjLTRhZTgtYjEyNS04ODc5YzYwYWU3MGY/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"dbe73654-498c-4ae8-b125-8879c60ae70f\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-04-24T08:39:49.2635566-07:00\",\r\n \"endTime\": \"2015-04-24T08:42:21.62382-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "189" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ + "69dac55c-0fa5-4711-8322-bd7e46775147" + ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 18 Apr 2015 01:20:25 GMT" + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], - "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5OTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "x-ms-ratelimit-remaining-subscription-reads": [ + "31993" + ], + "x-ms-correlation-request-id": [ + "29c92490-7967-40e4-9cc4-7632b9a3c257" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150424T154227Z:29c92490-7967-40e4-9cc4-7632b9a3c257" + ], + "Date": [ + "Fri, 24 Apr 2015 15:42:27 GMT" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5OTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemM1T1RBdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourcegroups/pstestrg7246?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNzI0Nj9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -2719,17 +2761,17 @@ "Retry-After": [ "15" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31996" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" ], "x-ms-request-id": [ - "8031ad5e-8432-414c-94b2-1ae97b6ffdc2" + "01aeb1ef-a24b-4ac4-80ed-928fb8d4ae90" ], "x-ms-correlation-request-id": [ - "8031ad5e-8432-414c-94b2-1ae97b6ffdc2" + "01aeb1ef-a24b-4ac4-80ed-928fb8d4ae90" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T012025Z:8031ad5e-8432-414c-94b2-1ae97b6ffdc2" + "NORTHCENTRALUS:20150424T154232Z:01aeb1ef-a24b-4ac4-80ed-928fb8d4ae90" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2738,17 +2780,17 @@ "no-cache" ], "Date": [ - "Sat, 18 Apr 2015 01:20:25 GMT" + "Fri, 24 Apr 2015 15:42:32 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5OTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzcyNDYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5OTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemM1T1RBdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzcyNDYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemN5TkRZdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2774,16 +2816,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31995" + "31981" ], "x-ms-request-id": [ - "d8084b27-2a77-4ee0-901c-6740ebdd42f4" + "ebe96e2d-be89-407d-94c3-175b8918bada" ], "x-ms-correlation-request-id": [ - "d8084b27-2a77-4ee0-901c-6740ebdd42f4" + "ebe96e2d-be89-407d-94c3-175b8918bada" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T012040Z:d8084b27-2a77-4ee0-901c-6740ebdd42f4" + "NORTHCENTRALUS:20150424T154232Z:ebe96e2d-be89-407d-94c3-175b8918bada" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2792,17 +2834,17 @@ "no-cache" ], "Date": [ - "Sat, 18 Apr 2015 01:20:40 GMT" + "Fri, 24 Apr 2015 15:42:32 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5OTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzcyNDYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5OTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemM1T1RBdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzcyNDYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemN5TkRZdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2828,16 +2870,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31994" + "31980" ], "x-ms-request-id": [ - "ed25a2c7-215a-4cb3-96c4-10d3e71277ab" + "3723e215-38d2-4006-90ea-1808e1a8a710" ], "x-ms-correlation-request-id": [ - "ed25a2c7-215a-4cb3-96c4-10d3e71277ab" + "3723e215-38d2-4006-90ea-1808e1a8a710" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T012055Z:ed25a2c7-215a-4cb3-96c4-10d3e71277ab" + "NORTHCENTRALUS:20150424T154248Z:3723e215-38d2-4006-90ea-1808e1a8a710" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2846,17 +2888,17 @@ "no-cache" ], "Date": [ - "Sat, 18 Apr 2015 01:20:55 GMT" + "Fri, 24 Apr 2015 15:42:48 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5OTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzcyNDYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5OTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemM1T1RBdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzcyNDYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemN5TkRZdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2882,16 +2924,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31993" + "31979" ], "x-ms-request-id": [ - "ea0c916e-341f-4154-a6a5-b8df69ead75f" + "85805aff-9aec-48a9-ba5f-0311c7ad4706" ], "x-ms-correlation-request-id": [ - "ea0c916e-341f-4154-a6a5-b8df69ead75f" + "85805aff-9aec-48a9-ba5f-0311c7ad4706" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T012110Z:ea0c916e-341f-4154-a6a5-b8df69ead75f" + "NORTHCENTRALUS:20150424T154303Z:85805aff-9aec-48a9-ba5f-0311c7ad4706" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2900,17 +2942,17 @@ "no-cache" ], "Date": [ - "Sat, 18 Apr 2015 01:21:10 GMT" + "Fri, 24 Apr 2015 15:43:03 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5OTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzcyNDYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5OTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemM1T1RBdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzcyNDYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemN5TkRZdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2936,16 +2978,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31992" + "31978" ], "x-ms-request-id": [ - "2a186cef-da00-4cdc-98ec-a144626d0030" + "7663eb93-941c-4789-bbba-f06d9450b803" ], "x-ms-correlation-request-id": [ - "2a186cef-da00-4cdc-98ec-a144626d0030" + "7663eb93-941c-4789-bbba-f06d9450b803" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T012125Z:2a186cef-da00-4cdc-98ec-a144626d0030" + "NORTHCENTRALUS:20150424T154319Z:7663eb93-941c-4789-bbba-f06d9450b803" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2954,17 +2996,17 @@ "no-cache" ], "Date": [ - "Sat, 18 Apr 2015 01:21:25 GMT" + "Fri, 24 Apr 2015 15:43:19 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5OTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzcyNDYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5OTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemM1T1RBdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzcyNDYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemN5TkRZdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2990,16 +3032,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31991" + "31977" ], "x-ms-request-id": [ - "37a9cffb-a33a-420d-ba72-3cb83b582f57" + "8f6eab42-4601-4d6d-ba54-9162cfa75b2f" ], "x-ms-correlation-request-id": [ - "37a9cffb-a33a-420d-ba72-3cb83b582f57" + "8f6eab42-4601-4d6d-ba54-9162cfa75b2f" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T012140Z:37a9cffb-a33a-420d-ba72-3cb83b582f57" + "NORTHCENTRALUS:20150424T154334Z:8f6eab42-4601-4d6d-ba54-9162cfa75b2f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3008,17 +3050,17 @@ "no-cache" ], "Date": [ - "Sat, 18 Apr 2015 01:21:40 GMT" + "Fri, 24 Apr 2015 15:43:34 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5OTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzcyNDYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5OTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemM1T1RBdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzcyNDYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemN5TkRZdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3044,16 +3086,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31990" + "31976" ], "x-ms-request-id": [ - "c7210a51-b5a2-4dc5-ab7f-81ad63d652d0" + "58c27b0a-14ba-4f4e-8f0a-9d9d544c730f" ], "x-ms-correlation-request-id": [ - "c7210a51-b5a2-4dc5-ab7f-81ad63d652d0" + "58c27b0a-14ba-4f4e-8f0a-9d9d544c730f" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T012155Z:c7210a51-b5a2-4dc5-ab7f-81ad63d652d0" + "NORTHCENTRALUS:20150424T154350Z:58c27b0a-14ba-4f4e-8f0a-9d9d544c730f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3062,17 +3104,17 @@ "no-cache" ], "Date": [ - "Sat, 18 Apr 2015 01:21:54 GMT" + "Fri, 24 Apr 2015 15:43:49 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5OTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzcyNDYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5OTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemM1T1RBdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzcyNDYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemN5TkRZdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3098,16 +3140,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31989" + "31975" ], "x-ms-request-id": [ - "1dde8266-83b7-4c35-a110-69d2e21c1c9a" + "053c5c89-b8c6-4fcb-b344-2382b5055912" ], "x-ms-correlation-request-id": [ - "1dde8266-83b7-4c35-a110-69d2e21c1c9a" + "053c5c89-b8c6-4fcb-b344-2382b5055912" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T012210Z:1dde8266-83b7-4c35-a110-69d2e21c1c9a" + "NORTHCENTRALUS:20150424T154406Z:053c5c89-b8c6-4fcb-b344-2382b5055912" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3116,17 +3158,17 @@ "no-cache" ], "Date": [ - "Sat, 18 Apr 2015 01:22:09 GMT" + "Fri, 24 Apr 2015 15:44:05 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5OTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzcyNDYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5OTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemM1T1RBdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzcyNDYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemN5TkRZdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3152,16 +3194,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31988" + "31974" ], "x-ms-request-id": [ - "1a0bf3bf-26d7-441a-b227-96a8f9bd2063" + "88f1c0e2-125b-4f0d-b356-8e223be85af0" ], "x-ms-correlation-request-id": [ - "1a0bf3bf-26d7-441a-b227-96a8f9bd2063" + "88f1c0e2-125b-4f0d-b356-8e223be85af0" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T012225Z:1a0bf3bf-26d7-441a-b227-96a8f9bd2063" + "NORTHCENTRALUS:20150424T154421Z:88f1c0e2-125b-4f0d-b356-8e223be85af0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3170,17 +3212,17 @@ "no-cache" ], "Date": [ - "Sat, 18 Apr 2015 01:22:25 GMT" + "Fri, 24 Apr 2015 15:44:21 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5OTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzcyNDYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5OTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemM1T1RBdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzcyNDYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemN5TkRZdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3206,16 +3248,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31987" + "31973" ], "x-ms-request-id": [ - "6677323c-d4b5-4478-93f4-6617b82b3a27" + "a837a66b-9739-4909-8b85-a755d5dc0afb" ], "x-ms-correlation-request-id": [ - "6677323c-d4b5-4478-93f4-6617b82b3a27" + "a837a66b-9739-4909-8b85-a755d5dc0afb" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T012240Z:6677323c-d4b5-4478-93f4-6617b82b3a27" + "NORTHCENTRALUS:20150424T154437Z:a837a66b-9739-4909-8b85-a755d5dc0afb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3224,17 +3266,17 @@ "no-cache" ], "Date": [ - "Sat, 18 Apr 2015 01:22:40 GMT" + "Fri, 24 Apr 2015 15:44:36 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5OTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzcyNDYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5OTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemM1T1RBdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzcyNDYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemN5TkRZdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3260,16 +3302,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31986" + "31972" ], "x-ms-request-id": [ - "355ac359-8d61-489f-bb1f-d49b1cfe7ad8" + "60868474-d801-4b3e-803d-29c06122659d" ], "x-ms-correlation-request-id": [ - "355ac359-8d61-489f-bb1f-d49b1cfe7ad8" + "60868474-d801-4b3e-803d-29c06122659d" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T012255Z:355ac359-8d61-489f-bb1f-d49b1cfe7ad8" + "NORTHCENTRALUS:20150424T154452Z:60868474-d801-4b3e-803d-29c06122659d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3278,17 +3320,17 @@ "no-cache" ], "Date": [ - "Sat, 18 Apr 2015 01:22:55 GMT" + "Fri, 24 Apr 2015 15:44:52 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5OTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzcyNDYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc5OTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemM1T1RBdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzcyNDYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemN5TkRZdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3311,16 +3353,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31985" + "31971" ], "x-ms-request-id": [ - "b1b7baa0-abb2-4b4c-b153-c2f7b63a57e9" + "5cccf2c5-2042-4d56-911b-023eafdc47ad" ], "x-ms-correlation-request-id": [ - "b1b7baa0-abb2-4b4c-b153-c2f7b63a57e9" + "5cccf2c5-2042-4d56-911b-023eafdc47ad" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T012310Z:b1b7baa0-abb2-4b4c-b153-c2f7b63a57e9" + "NORTHCENTRALUS:20150424T154508Z:5cccf2c5-2042-4d56-911b-023eafdc47ad" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3329,7 +3371,7 @@ "no-cache" ], "Date": [ - "Sat, 18 Apr 2015 01:23:10 GMT" + "Fri, 24 Apr 2015 15:45:07 GMT" ] }, "StatusCode": 200 @@ -3337,7 +3379,7 @@ ], "Names": { "Test-SingleNetworkInterfaceDnsSettings": [ - "pstestrg7990" + "pstestrg7246" ] }, "Variables": { @@ -3345,4 +3387,4 @@ "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", "Domain": "microsoft.com" } -} +} \ No newline at end of file diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineNetworkInterfaceTests/TestVirtualMachineMultipleNetworkInterface.json b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineNetworkInterfaceTests/TestVirtualMachineMultipleNetworkInterface.json index 343ce732b41e..9974f94b341b 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineNetworkInterfaceTests/TestVirtualMachineMultipleNetworkInterface.json +++ b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineNetworkInterfaceTests/TestVirtualMachineMultipleNetworkInterface.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourcegroups/pstestrg4897?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNDg5Nz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourcegroups/pstestrg5256?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNTI1Nj9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -28,16 +28,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31996" + "31997" ], "x-ms-request-id": [ - "d5d86224-666e-47da-b88d-7cf851843d41" + "f736b423-9f2a-4d1f-ad15-97e95d5f4fd5" ], "x-ms-correlation-request-id": [ - "d5d86224-666e-47da-b88d-7cf851843d41" + "f736b423-9f2a-4d1f-ad15-97e95d5f4fd5" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T013754Z:d5d86224-666e-47da-b88d-7cf851843d41" + "NORTHCENTRALUS:20150424T160747Z:f736b423-9f2a-4d1f-ad15-97e95d5f4fd5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,14 +46,14 @@ "no-cache" ], "Date": [ - "Sat, 18 Apr 2015 01:37:53 GMT" + "Fri, 24 Apr 2015 16:07:47 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourcegroups/pstestrg4897?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNDg5Nz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourcegroups/pstestrg5256?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNTI1Nj9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31994" + "31982" ], "x-ms-request-id": [ - "f2a4dc29-4289-4738-91bd-fb1869988edc" + "013549de-5d59-4f34-b8cf-62c28b4f77aa" ], "x-ms-correlation-request-id": [ - "f2a4dc29-4289-4738-91bd-fb1869988edc" + "013549de-5d59-4f34-b8cf-62c28b4f77aa" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T020311Z:f2a4dc29-4289-4738-91bd-fb1869988edc" + "NORTHCENTRALUS:20150424T161832Z:013549de-5d59-4f34-b8cf-62c28b4f77aa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,31 +91,31 @@ "no-cache" ], "Date": [ - "Sat, 18 Apr 2015 02:03:11 GMT" + "Fri, 24 Apr 2015 16:18:32 GMT" ] }, "StatusCode": 204 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourcegroups/pstestrg4897?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNDg5Nz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourcegroups/pstestrg5256?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNTI1Nj9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestBody": "{\r\n \"location\": \"eastasia\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "29" + "30" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4897\",\r\n \"name\": \"pstestrg4897\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5256\",\r\n \"name\": \"pstestrg5256\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "177" + "179" ], "Content-Type": [ "application/json; charset=utf-8" @@ -127,16 +127,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1199" ], "x-ms-request-id": [ - "4f1ca8ee-1f94-4732-8939-4b1f8e695808" + "62f62de2-c0d4-48de-aa06-84186fe87e17" ], "x-ms-correlation-request-id": [ - "4f1ca8ee-1f94-4732-8939-4b1f8e695808" + "62f62de2-c0d4-48de-aa06-84186fe87e17" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T013754Z:4f1ca8ee-1f94-4732-8939-4b1f8e695808" + "NORTHCENTRALUS:20150424T160750Z:62f62de2-c0d4-48de-aa06-84186fe87e17" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -145,14 +145,14 @@ "no-cache" ], "Date": [ - "Sat, 18 Apr 2015 01:37:53 GMT" + "Fri, 24 Apr 2015 16:07:50 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4897/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNDg5Ny9yZXNvdXJjZXM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5256/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTI1Ni9yZXNvdXJjZXM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -175,16 +175,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31995" + "31996" ], "x-ms-request-id": [ - "f05cb9a7-d945-4ba7-975e-7234302b924f" + "070c5121-0706-48c4-998d-d5c627c425f4" ], "x-ms-correlation-request-id": [ - "f05cb9a7-d945-4ba7-975e-7234302b924f" + "070c5121-0706-48c4-998d-d5c627c425f4" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T013754Z:f05cb9a7-d945-4ba7-975e-7234302b924f" + "NORTHCENTRALUS:20150424T160750Z:070c5121-0706-48c4-998d-d5c627c425f4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -193,14 +193,14 @@ "no-cache" ], "Date": [ - "Sat, 18 Apr 2015 01:37:54 GMT" + "Fri, 24 Apr 2015 16:07:50 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourcegroups/pstestrg4897/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNDg5Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcGVybWlzc2lvbnM/YXBpLXZlcnNpb249MjAxNC0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourcegroups/pstestrg5256/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNTI1Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcGVybWlzc2lvbnM/YXBpLXZlcnNpb249MjAxNC0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -226,16 +226,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:4b11c183-8522-4db2-88c6-dd93506393bc" + "northcentralus:23e1fb53-ec53-4248-bca5-0002b46920e6" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31978" + "31954" ], "x-ms-correlation-request-id": [ - "b9fb9e95-332c-4fde-a3a0-956e06afc421" + "11d42f64-8d43-40a1-8e43-0e77cc8150c2" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T013754Z:b9fb9e95-332c-4fde-a3a0-956e06afc421" + "NORTHCENTRALUS:20150424T160751Z:11d42f64-8d43-40a1-8e43-0e77cc8150c2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -244,14 +244,14 @@ "no-cache" ], "Date": [ - "Sat, 18 Apr 2015 01:37:54 GMT" + "Fri, 24 Apr 2015 16:07:50 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4897/providers/Microsoft.Network/virtualnetworks/vnetpstestrg4897?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNDg5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzQ4OTc/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5256/providers/Microsoft.Network/virtualnetworks/vnetpstestrg5256?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTI1Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzUyNTY/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -277,13 +277,13 @@ "gateway" ], "x-ms-request-id": [ - "76fe29de-5c9f-49cd-ad2a-41d322ab9415" + "a4ea7988-4b6e-4128-9323-7cc5552ab273" ], "x-ms-correlation-request-id": [ - "76fe29de-5c9f-49cd-ad2a-41d322ab9415" + "a4ea7988-4b6e-4128-9323-7cc5552ab273" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T013756Z:76fe29de-5c9f-49cd-ad2a-41d322ab9415" + "NORTHCENTRALUS:20150424T160753Z:a4ea7988-4b6e-4128-9323-7cc5552ab273" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -292,14 +292,14 @@ "no-cache" ], "Date": [ - "Sat, 18 Apr 2015 01:37:55 GMT" + "Fri, 24 Apr 2015 16:07:52 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4897/providers/Microsoft.Network/virtualnetworks/vnetpstestrg4897?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNDg5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzQ4OTc/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5256/providers/Microsoft.Network/virtualnetworks/vnetpstestrg5256?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTI1Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzUyNTY/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -307,10 +307,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetpstestrg4897\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4897/providers/Microsoft.Network/virtualNetworks/vnetpstestrg4897\",\r\n \"etag\": \"W/\\\"b6152229-d278-4ed0-9ff3-f4d874f09ae1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\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 \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg4897\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4897/providers/Microsoft.Network/virtualNetworks/vnetpstestrg4897/subnets/subnetpstestrg4897\",\r\n \"etag\": \"W/\\\"b6152229-d278-4ed0-9ff3-f4d874f09ae1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"vnetpstestrg5256\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5256/providers/Microsoft.Network/virtualNetworks/vnetpstestrg5256\",\r\n \"etag\": \"W/\\\"a445d74b-c0c8-4cb6-a8a3-de0258a8ef74\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\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 \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg5256\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5256/providers/Microsoft.Network/virtualNetworks/vnetpstestrg5256/subnets/subnetpstestrg5256\",\r\n \"etag\": \"W/\\\"a445d74b-c0c8-4cb6-a8a3-de0258a8ef74\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"eastasia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "961" + "962" ], "Content-Type": [ "application/json; charset=utf-8" @@ -322,7 +322,7 @@ "no-cache" ], "x-ms-request-id": [ - "f173bd24-91d6-4a61-b745-cda12fb637b5" + "73691354-8000-4dd4-8cb7-ce9fd67b8519" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -331,30 +331,30 @@ "no-cache" ], "ETag": [ - "W/\"b6152229-d278-4ed0-9ff3-f4d874f09ae1\"" + "W/\"a445d74b-c0c8-4cb6-a8a3-de0258a8ef74\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31985" + "31997" ], "x-ms-correlation-request-id": [ - "7bf4a1c6-31cb-46d3-b32c-9cdeac9c8644" + "2687e27a-f77e-444b-8309-253ad56e912b" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T013756Z:7bf4a1c6-31cb-46d3-b32c-9cdeac9c8644" + "NORTHCENTRALUS:20150424T160800Z:2687e27a-f77e-444b-8309-253ad56e912b" ], "Date": [ - "Sat, 18 Apr 2015 01:37:56 GMT" + "Fri, 24 Apr 2015 16:07:59 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4897/providers/Microsoft.Network/virtualnetworks/vnetpstestrg4897?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNDg5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzQ4OTc/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5256/providers/Microsoft.Network/virtualnetworks/vnetpstestrg5256?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTI1Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzUyNTY/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,10 +362,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetpstestrg4897\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4897/providers/Microsoft.Network/virtualNetworks/vnetpstestrg4897\",\r\n \"etag\": \"W/\\\"b6152229-d278-4ed0-9ff3-f4d874f09ae1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\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 \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg4897\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4897/providers/Microsoft.Network/virtualNetworks/vnetpstestrg4897/subnets/subnetpstestrg4897\",\r\n \"etag\": \"W/\\\"b6152229-d278-4ed0-9ff3-f4d874f09ae1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"vnetpstestrg5256\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5256/providers/Microsoft.Network/virtualNetworks/vnetpstestrg5256\",\r\n \"etag\": \"W/\\\"a445d74b-c0c8-4cb6-a8a3-de0258a8ef74\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\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 \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg5256\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5256/providers/Microsoft.Network/virtualNetworks/vnetpstestrg5256/subnets/subnetpstestrg5256\",\r\n \"etag\": \"W/\\\"a445d74b-c0c8-4cb6-a8a3-de0258a8ef74\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"eastasia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "961" + "962" ], "Content-Type": [ "application/json; charset=utf-8" @@ -377,7 +377,7 @@ "no-cache" ], "x-ms-request-id": [ - "3d5e3c0d-24ab-4197-a9fc-95f2da8fad89" + "b7685996-a958-456c-b879-af0dadf69da3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -386,47 +386,47 @@ "no-cache" ], "ETag": [ - "W/\"b6152229-d278-4ed0-9ff3-f4d874f09ae1\"" + "W/\"a445d74b-c0c8-4cb6-a8a3-de0258a8ef74\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31984" + "31996" ], "x-ms-correlation-request-id": [ - "c97f26f7-72ff-4452-a1c7-e55aebc022bc" + "ec530fd8-a19a-4bd0-86c8-7916146e0987" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T013756Z:c97f26f7-72ff-4452-a1c7-e55aebc022bc" + "NORTHCENTRALUS:20150424T160800Z:ec530fd8-a19a-4bd0-86c8-7916146e0987" ], "Date": [ - "Sat, 18 Apr 2015 01:37:56 GMT" + "Fri, 24 Apr 2015 16:08:00 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4897/providers/Microsoft.Network/virtualnetworks/vnetpstestrg4897?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNDg5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzQ4OTc/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5256/providers/Microsoft.Network/virtualnetworks/vnetpstestrg5256?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTI1Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzUyNTY/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "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 \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": []\r\n },\r\n \"name\": \"subnetpstestrg4897\"\r\n }\r\n ]\r\n },\r\n \"name\": \"vnetpstestrg4897\",\r\n \"type\": \"microsoft.network/virtualNetworks\",\r\n \"location\": \"West US\"\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 \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": []\r\n },\r\n \"name\": \"subnetpstestrg5256\"\r\n }\r\n ]\r\n },\r\n \"name\": \"vnetpstestrg5256\",\r\n \"type\": \"microsoft.network/virtualNetworks\",\r\n \"location\": \"eastasia\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "501" + "502" ], "User-Agent": [ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetpstestrg4897\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4897/providers/Microsoft.Network/virtualNetworks/vnetpstestrg4897\",\r\n \"etag\": \"W/\\\"708dc907-d847-4cdf-8638-62dd10bed127\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\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 \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg4897\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4897/providers/Microsoft.Network/virtualNetworks/vnetpstestrg4897/subnets/subnetpstestrg4897\",\r\n \"etag\": \"W/\\\"708dc907-d847-4cdf-8638-62dd10bed127\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"vnetpstestrg5256\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5256/providers/Microsoft.Network/virtualNetworks/vnetpstestrg5256\",\r\n \"etag\": \"W/\\\"741b4ec4-a95b-4cf0-9260-8c0fa7c39e9a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\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 \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg5256\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5256/providers/Microsoft.Network/virtualNetworks/vnetpstestrg5256/subnets/subnetpstestrg5256\",\r\n \"etag\": \"W/\\\"741b4ec4-a95b-4cf0-9260-8c0fa7c39e9a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"eastasia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "959" + "960" ], "Content-Type": [ "application/json; charset=utf-8" @@ -441,10 +441,10 @@ "10" ], "x-ms-request-id": [ - "83cb71b9-f8df-4f83-bb02-ac8416539f86" + "ab84a22e-caac-487d-949e-3e763b96e13c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/83cb71b9-f8df-4f83-bb02-ac8416539f86?api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/eastasia/operations/ab84a22e-caac-487d-949e-3e763b96e13c?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -457,23 +457,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1199" ], "x-ms-correlation-request-id": [ - "1d348029-6e3a-48bf-8aa2-5e80092519a3" + "1113ec4c-7e9a-4bcc-8f7e-36f341792317" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T013756Z:1d348029-6e3a-48bf-8aa2-5e80092519a3" + "NORTHCENTRALUS:20150424T160759Z:1113ec4c-7e9a-4bcc-8f7e-36f341792317" ], "Date": [ - "Sat, 18 Apr 2015 01:37:55 GMT" + "Fri, 24 Apr 2015 16:07:58 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/83cb71b9-f8df-4f83-bb02-ac8416539f86?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODNjYjcxYjktZjhkZi00ZjgzLWJiMDItYWM4NDE2NTM5Zjg2P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/eastasia/operations/ab84a22e-caac-487d-949e-3e763b96e13c?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9hYjg0YTIyZS1jYWFjLTQ4N2QtOTQ5ZS0zZTc2M2I5NmUxM2M/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -499,7 +499,7 @@ "no-cache" ], "x-ms-request-id": [ - "0b872b11-66ac-4cac-87d4-b79e2dcf994c" + "34384058-5875-44e0-86c6-d0dd9920c500" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -512,23 +512,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31986" + "31998" ], "x-ms-correlation-request-id": [ - "818128a1-e5c7-4757-9b1a-84da753dbb3d" + "3d5c765f-ed0d-4782-895c-9ee96147b2d4" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T013756Z:818128a1-e5c7-4757-9b1a-84da753dbb3d" + "NORTHCENTRALUS:20150424T160800Z:3d5c765f-ed0d-4782-895c-9ee96147b2d4" ], "Date": [ - "Sat, 18 Apr 2015 01:37:56 GMT" + "Fri, 24 Apr 2015 16:07:59 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4897/providers/Microsoft.Network/networkInterfaces/nic1pstestrg4897?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNDg5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMXBzdGVzdHJnNDg5Nz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5256/providers/Microsoft.Network/networkInterfaces/nic1pstestrg5256?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTI1Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMXBzdGVzdHJnNTI1Nj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,13 +554,13 @@ "gateway" ], "x-ms-request-id": [ - "c160d184-fd86-4fda-b70b-e48bf4304b1b" + "510bbef7-601f-473e-8631-e2b4fb68b43d" ], "x-ms-correlation-request-id": [ - "c160d184-fd86-4fda-b70b-e48bf4304b1b" + "510bbef7-601f-473e-8631-e2b4fb68b43d" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T013757Z:c160d184-fd86-4fda-b70b-e48bf4304b1b" + "NORTHCENTRALUS:20150424T160801Z:510bbef7-601f-473e-8631-e2b4fb68b43d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -569,14 +569,14 @@ "no-cache" ], "Date": [ - "Sat, 18 Apr 2015 01:37:56 GMT" + "Fri, 24 Apr 2015 16:08:00 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4897/providers/Microsoft.Network/networkInterfaces/nic1pstestrg4897?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNDg5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMXBzdGVzdHJnNDg5Nz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5256/providers/Microsoft.Network/networkInterfaces/nic1pstestrg5256?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTI1Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMXBzdGVzdHJnNTI1Nj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -584,10 +584,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"nic1pstestrg4897\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4897/providers/Microsoft.Network/networkInterfaces/nic1pstestrg4897\",\r\n \"etag\": \"W/\\\"1f7bfebb-72ae-477c-9790-8ed99f056299\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4897/providers/Microsoft.Network/networkInterfaces/nic1pstestrg4897/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"1f7bfebb-72ae-477c-9790-8ed99f056299\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4897/providers/Microsoft.Network/virtualNetworks/vnetpstestrg4897/subnets/subnetpstestrg4897\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"nic1pstestrg5256\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5256/providers/Microsoft.Network/networkInterfaces/nic1pstestrg5256\",\r\n \"etag\": \"W/\\\"a20dd060-38d1-4908-9923-181a4206cc5f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5256/providers/Microsoft.Network/networkInterfaces/nic1pstestrg5256/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"a20dd060-38d1-4908-9923-181a4206cc5f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5256/providers/Microsoft.Network/virtualNetworks/vnetpstestrg5256/subnets/subnetpstestrg5256\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"eastasia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1093" + "1094" ], "Content-Type": [ "application/json; charset=utf-8" @@ -599,7 +599,7 @@ "no-cache" ], "x-ms-request-id": [ - "79ccbabb-975d-41da-a76a-03287c6383f7" + "7d01cc36-6042-4aa6-a987-f8091b84712c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -608,30 +608,30 @@ "no-cache" ], "ETag": [ - "W/\"1f7bfebb-72ae-477c-9790-8ed99f056299\"" + "W/\"a20dd060-38d1-4908-9923-181a4206cc5f\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31981" + "31993" ], "x-ms-correlation-request-id": [ - "4b40462e-29ed-49d2-89a1-f217981cfe44" + "2b1a91c9-4cba-43fd-896f-b36c3229477a" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T013757Z:4b40462e-29ed-49d2-89a1-f217981cfe44" + "NORTHCENTRALUS:20150424T160808Z:2b1a91c9-4cba-43fd-896f-b36c3229477a" ], "Date": [ - "Sat, 18 Apr 2015 01:37:56 GMT" + "Fri, 24 Apr 2015 16:08:07 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4897/providers/Microsoft.Network/networkInterfaces/nic1pstestrg4897?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNDg5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMXBzdGVzdHJnNDg5Nz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5256/providers/Microsoft.Network/networkInterfaces/nic1pstestrg5256?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTI1Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMXBzdGVzdHJnNTI1Nj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -639,10 +639,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"nic1pstestrg4897\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4897/providers/Microsoft.Network/networkInterfaces/nic1pstestrg4897\",\r\n \"etag\": \"W/\\\"41f69b31-2f03-45b7-ab59-d821b1e37964\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4897/providers/Microsoft.Network/networkInterfaces/nic1pstestrg4897/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"41f69b31-2f03-45b7-ab59-d821b1e37964\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4897/providers/Microsoft.Network/virtualNetworks/vnetpstestrg4897/subnets/subnetpstestrg4897\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"macAddress\": \"00-0D-3A-30-12-F6\",\r\n \"primary\": false,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4897/providers/Microsoft.Compute/virtualMachines/vmpstestrg4897\"\r\n }\r\n },\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"nic1pstestrg5256\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5256/providers/Microsoft.Network/networkInterfaces/nic1pstestrg5256\",\r\n \"etag\": \"W/\\\"f7f6f798-31c4-4695-902a-5842d7884187\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5256/providers/Microsoft.Network/networkInterfaces/nic1pstestrg5256/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"f7f6f798-31c4-4695-902a-5842d7884187\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5256/providers/Microsoft.Network/virtualNetworks/vnetpstestrg5256/subnets/subnetpstestrg5256\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"macAddress\": \"00-0D-3A-80-04-A1\",\r\n \"primary\": false,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5256/providers/Microsoft.Compute/virtualMachines/vmpstestrg5256\"\r\n }\r\n },\r\n \"location\": \"eastasia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1343" + "1344" ], "Content-Type": [ "application/json; charset=utf-8" @@ -654,7 +654,7 @@ "no-cache" ], "x-ms-request-id": [ - "c897f9a7-2c1d-4f41-86bb-7ee9973a488d" + "bd3e3bb5-709b-40fa-ba1c-63bce013739f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -663,47 +663,47 @@ "no-cache" ], "ETag": [ - "W/\"41f69b31-2f03-45b7-ab59-d821b1e37964\"" + "W/\"f7f6f798-31c4-4695-902a-5842d7884187\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31996" + "31989" ], "x-ms-correlation-request-id": [ - "9971ca90-aa7f-4d47-971d-ce2ea768dfe9" + "bb50c19a-f1de-4652-b601-17673500a379" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T020010Z:9971ca90-aa7f-4d47-971d-ce2ea768dfe9" + "NORTHCENTRALUS:20150424T161620Z:bb50c19a-f1de-4652-b601-17673500a379" ], "Date": [ - "Sat, 18 Apr 2015 02:00:09 GMT" + "Fri, 24 Apr 2015 16:16:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4897/providers/Microsoft.Network/networkInterfaces/nic1pstestrg4897?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNDg5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMXBzdGVzdHJnNDg5Nz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5256/providers/Microsoft.Network/networkInterfaces/nic1pstestrg5256?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTI1Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMXBzdGVzdHJnNTI1Nj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4897/providers/Microsoft.Network/virtualNetworks/vnetpstestrg4897/subnets/subnetpstestrg4897\"\r\n },\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": []\r\n },\r\n \"name\": \"ipconfig1\"\r\n }\r\n ],\r\n \"primary\": false\r\n },\r\n \"name\": \"nic1pstestrg4897\",\r\n \"type\": \"microsoft.network/networkInterfaces\",\r\n \"location\": \"West US\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5256/providers/Microsoft.Network/virtualNetworks/vnetpstestrg5256/subnets/subnetpstestrg5256\"\r\n },\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": []\r\n },\r\n \"name\": \"ipconfig1\"\r\n }\r\n ],\r\n \"primary\": false\r\n },\r\n \"name\": \"nic1pstestrg5256\",\r\n \"type\": \"microsoft.network/networkInterfaces\",\r\n \"location\": \"eastasia\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "648" + "649" ], "User-Agent": [ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"nic1pstestrg4897\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4897/providers/Microsoft.Network/networkInterfaces/nic1pstestrg4897\",\r\n \"etag\": \"W/\\\"1f7bfebb-72ae-477c-9790-8ed99f056299\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4897/providers/Microsoft.Network/networkInterfaces/nic1pstestrg4897/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"1f7bfebb-72ae-477c-9790-8ed99f056299\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4897/providers/Microsoft.Network/virtualNetworks/vnetpstestrg4897/subnets/subnetpstestrg4897\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"nic1pstestrg5256\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5256/providers/Microsoft.Network/networkInterfaces/nic1pstestrg5256\",\r\n \"etag\": \"W/\\\"a20dd060-38d1-4908-9923-181a4206cc5f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5256/providers/Microsoft.Network/networkInterfaces/nic1pstestrg5256/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"a20dd060-38d1-4908-9923-181a4206cc5f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5256/providers/Microsoft.Network/virtualNetworks/vnetpstestrg5256/subnets/subnetpstestrg5256\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"eastasia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1093" + "1094" ], "Content-Type": [ "application/json; charset=utf-8" @@ -714,14 +714,11 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "10" - ], "x-ms-request-id": [ - "cb9603db-67c0-451a-87a0-4a36a4a34969" + "43612996-5b0f-47ef-acf6-16aa488d17cc" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/cb9603db-67c0-451a-87a0-4a36a4a34969?api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/eastasia/operations/43612996-5b0f-47ef-acf6-16aa488d17cc?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -734,23 +731,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1198" ], "x-ms-correlation-request-id": [ - "277058f6-95af-4180-9093-b24e427cb429" + "d73ca2f1-3c6b-474d-8089-d61b0628070c" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T013757Z:277058f6-95af-4180-9093-b24e427cb429" + "NORTHCENTRALUS:20150424T160806Z:d73ca2f1-3c6b-474d-8089-d61b0628070c" ], "Date": [ - "Sat, 18 Apr 2015 01:37:56 GMT" + "Fri, 24 Apr 2015 16:08:06 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/cb9603db-67c0-451a-87a0-4a36a4a34969?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvY2I5NjAzZGItNjdjMC00NTFhLTg3YTAtNGEzNmE0YTM0OTY5P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/eastasia/operations/43612996-5b0f-47ef-acf6-16aa488d17cc?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy80MzYxMjk5Ni01YjBmLTQ3ZWYtYWNmNi0xNmFhNDg4ZDE3Y2M/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -776,7 +773,7 @@ "no-cache" ], "x-ms-request-id": [ - "9107f458-e9d1-46dd-9f64-0f896ef82c4c" + "ff2993f3-f8e3-4f4c-be63-cf61c8af4e46" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -789,23 +786,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31982" + "31994" ], "x-ms-correlation-request-id": [ - "808d0cb6-a40d-41ba-8ca4-2f202eae70be" + "1e6371fe-5156-451e-a30a-1e9e29346851" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T013757Z:808d0cb6-a40d-41ba-8ca4-2f202eae70be" + "NORTHCENTRALUS:20150424T160807Z:1e6371fe-5156-451e-a30a-1e9e29346851" ], "Date": [ - "Sat, 18 Apr 2015 01:37:56 GMT" + "Fri, 24 Apr 2015 16:08:07 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4897/providers/Microsoft.Network/networkInterfaces/nic2pstestrg4897?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNDg5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMnBzdGVzdHJnNDg5Nz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5256/providers/Microsoft.Network/networkInterfaces/nic2pstestrg5256?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTI1Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMnBzdGVzdHJnNTI1Nj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -831,13 +828,13 @@ "gateway" ], "x-ms-request-id": [ - "84a92cf8-e4db-4e59-b5e2-86dcc7c6dc64" + "0b6fa466-7049-4cad-a661-4944e3700ec5" ], "x-ms-correlation-request-id": [ - "84a92cf8-e4db-4e59-b5e2-86dcc7c6dc64" + "0b6fa466-7049-4cad-a661-4944e3700ec5" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T013757Z:84a92cf8-e4db-4e59-b5e2-86dcc7c6dc64" + "NORTHCENTRALUS:20150424T160808Z:0b6fa466-7049-4cad-a661-4944e3700ec5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -846,14 +843,14 @@ "no-cache" ], "Date": [ - "Sat, 18 Apr 2015 01:37:56 GMT" + "Fri, 24 Apr 2015 16:08:07 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4897/providers/Microsoft.Network/networkInterfaces/nic2pstestrg4897?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNDg5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMnBzdGVzdHJnNDg5Nz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5256/providers/Microsoft.Network/networkInterfaces/nic2pstestrg5256?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTI1Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMnBzdGVzdHJnNTI1Nj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -861,10 +858,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"nic2pstestrg4897\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4897/providers/Microsoft.Network/networkInterfaces/nic2pstestrg4897\",\r\n \"etag\": \"W/\\\"6fa423fa-c57f-4607-945e-61bb68affa32\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4897/providers/Microsoft.Network/networkInterfaces/nic2pstestrg4897/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"6fa423fa-c57f-4607-945e-61bb68affa32\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4897/providers/Microsoft.Network/virtualNetworks/vnetpstestrg4897/subnets/subnetpstestrg4897\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"nic2pstestrg5256\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5256/providers/Microsoft.Network/networkInterfaces/nic2pstestrg5256\",\r\n \"etag\": \"W/\\\"4f1f1a76-b9d0-4b3a-b18b-d386b66d8390\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5256/providers/Microsoft.Network/networkInterfaces/nic2pstestrg5256/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"4f1f1a76-b9d0-4b3a-b18b-d386b66d8390\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5256/providers/Microsoft.Network/virtualNetworks/vnetpstestrg5256/subnets/subnetpstestrg5256\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"eastasia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1093" + "1094" ], "Content-Type": [ "application/json; charset=utf-8" @@ -876,7 +873,7 @@ "no-cache" ], "x-ms-request-id": [ - "20973256-4c3d-4bbb-87fb-9ce63a1e5f84" + "c9b80101-ec23-4830-af07-d60ed103d7b0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -885,30 +882,30 @@ "no-cache" ], "ETag": [ - "W/\"6fa423fa-c57f-4607-945e-61bb68affa32\"" + "W/\"4f1f1a76-b9d0-4b3a-b18b-d386b66d8390\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31978" + "31990" ], "x-ms-correlation-request-id": [ - "b0678f09-4d0a-4bff-99e5-2b17b12115c0" + "77287b2e-e846-4664-a134-1e77d0d2c0f6" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T013758Z:b0678f09-4d0a-4bff-99e5-2b17b12115c0" + "NORTHCENTRALUS:20150424T160815Z:77287b2e-e846-4664-a134-1e77d0d2c0f6" ], "Date": [ - "Sat, 18 Apr 2015 01:37:57 GMT" + "Fri, 24 Apr 2015 16:08:14 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4897/providers/Microsoft.Network/networkInterfaces/nic2pstestrg4897?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNDg5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMnBzdGVzdHJnNDg5Nz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5256/providers/Microsoft.Network/networkInterfaces/nic2pstestrg5256?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTI1Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMnBzdGVzdHJnNTI1Nj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -916,10 +913,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"nic2pstestrg4897\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4897/providers/Microsoft.Network/networkInterfaces/nic2pstestrg4897\",\r\n \"etag\": \"W/\\\"a68773a6-dfd7-4a7b-896d-f6c9a61415c4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4897/providers/Microsoft.Network/networkInterfaces/nic2pstestrg4897/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"a68773a6-dfd7-4a7b-896d-f6c9a61415c4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4897/providers/Microsoft.Network/virtualNetworks/vnetpstestrg4897/subnets/subnetpstestrg4897\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"macAddress\": \"00-0D-3A-30-15-BC\",\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4897/providers/Microsoft.Compute/virtualMachines/vmpstestrg4897\"\r\n }\r\n },\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"nic2pstestrg5256\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5256/providers/Microsoft.Network/networkInterfaces/nic2pstestrg5256\",\r\n \"etag\": \"W/\\\"2fcecde8-fb5e-498c-a104-6d9ca7318770\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5256/providers/Microsoft.Network/networkInterfaces/nic2pstestrg5256/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"2fcecde8-fb5e-498c-a104-6d9ca7318770\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5256/providers/Microsoft.Network/virtualNetworks/vnetpstestrg5256/subnets/subnetpstestrg5256\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"macAddress\": \"00-0D-3A-80-0E-05\",\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5256/providers/Microsoft.Compute/virtualMachines/vmpstestrg5256\"\r\n }\r\n },\r\n \"location\": \"eastasia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1342" + "1343" ], "Content-Type": [ "application/json; charset=utf-8" @@ -931,7 +928,7 @@ "no-cache" ], "x-ms-request-id": [ - "3aeb1c78-4f61-4a66-9e29-6d23680a3956" + "961f4120-a183-49a1-b064-01dfe8c835a1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -940,47 +937,47 @@ "no-cache" ], "ETag": [ - "W/\"a68773a6-dfd7-4a7b-896d-f6c9a61415c4\"" + "W/\"2fcecde8-fb5e-498c-a104-6d9ca7318770\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31995" + "31988" ], "x-ms-correlation-request-id": [ - "97dca618-8b88-4a81-ab52-5d68bcffe61e" + "fe2be669-998d-4d50-a954-f0fa3353843c" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T020010Z:97dca618-8b88-4a81-ab52-5d68bcffe61e" + "NORTHCENTRALUS:20150424T161620Z:fe2be669-998d-4d50-a954-f0fa3353843c" ], "Date": [ - "Sat, 18 Apr 2015 02:00:09 GMT" + "Fri, 24 Apr 2015 16:16:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4897/providers/Microsoft.Network/networkInterfaces/nic2pstestrg4897?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNDg5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMnBzdGVzdHJnNDg5Nz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5256/providers/Microsoft.Network/networkInterfaces/nic2pstestrg5256?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTI1Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMnBzdGVzdHJnNTI1Nj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4897/providers/Microsoft.Network/virtualNetworks/vnetpstestrg4897/subnets/subnetpstestrg4897\"\r\n },\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": []\r\n },\r\n \"name\": \"ipconfig1\"\r\n }\r\n ],\r\n \"primary\": false\r\n },\r\n \"name\": \"nic2pstestrg4897\",\r\n \"type\": \"microsoft.network/networkInterfaces\",\r\n \"location\": \"West US\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5256/providers/Microsoft.Network/virtualNetworks/vnetpstestrg5256/subnets/subnetpstestrg5256\"\r\n },\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": []\r\n },\r\n \"name\": \"ipconfig1\"\r\n }\r\n ],\r\n \"primary\": false\r\n },\r\n \"name\": \"nic2pstestrg5256\",\r\n \"type\": \"microsoft.network/networkInterfaces\",\r\n \"location\": \"eastasia\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "648" + "649" ], "User-Agent": [ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"nic2pstestrg4897\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4897/providers/Microsoft.Network/networkInterfaces/nic2pstestrg4897\",\r\n \"etag\": \"W/\\\"6fa423fa-c57f-4607-945e-61bb68affa32\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4897/providers/Microsoft.Network/networkInterfaces/nic2pstestrg4897/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"6fa423fa-c57f-4607-945e-61bb68affa32\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4897/providers/Microsoft.Network/virtualNetworks/vnetpstestrg4897/subnets/subnetpstestrg4897\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"nic2pstestrg5256\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5256/providers/Microsoft.Network/networkInterfaces/nic2pstestrg5256\",\r\n \"etag\": \"W/\\\"4f1f1a76-b9d0-4b3a-b18b-d386b66d8390\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5256/providers/Microsoft.Network/networkInterfaces/nic2pstestrg5256/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"4f1f1a76-b9d0-4b3a-b18b-d386b66d8390\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5256/providers/Microsoft.Network/virtualNetworks/vnetpstestrg5256/subnets/subnetpstestrg5256\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"eastasia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1093" + "1094" ], "Content-Type": [ "application/json; charset=utf-8" @@ -991,14 +988,11 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "10" - ], "x-ms-request-id": [ - "759cfa98-91af-40c4-9fb4-df0211626e8b" + "9739cd2f-6749-48dd-97f7-04a260a1bff2" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/759cfa98-91af-40c4-9fb4-df0211626e8b?api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/eastasia/operations/9739cd2f-6749-48dd-97f7-04a260a1bff2?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1011,23 +1005,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1197" ], "x-ms-correlation-request-id": [ - "55395679-c118-45e5-aad2-efc56feedd77" + "1483fe5d-3746-448c-b727-436ec7d50607" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T013758Z:55395679-c118-45e5-aad2-efc56feedd77" + "NORTHCENTRALUS:20150424T160813Z:1483fe5d-3746-448c-b727-436ec7d50607" ], "Date": [ - "Sat, 18 Apr 2015 01:37:57 GMT" + "Fri, 24 Apr 2015 16:08:12 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/759cfa98-91af-40c4-9fb4-df0211626e8b?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzU5Y2ZhOTgtOTFhZi00MGM0LTlmYjQtZGYwMjExNjI2ZThiP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/eastasia/operations/9739cd2f-6749-48dd-97f7-04a260a1bff2?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy85NzM5Y2QyZi02NzQ5LTQ4ZGQtOTdmNy0wNGEyNjBhMWJmZjI/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1053,7 +1047,7 @@ "no-cache" ], "x-ms-request-id": [ - "2ea88f7e-53c5-4bd0-91d5-b9a3a23cac07" + "36590e23-fbcc-46f0-b11e-d65946e3278e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1066,34 +1060,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31979" + "31991" ], "x-ms-correlation-request-id": [ - "841ffaf9-568d-489f-8f16-08e362661c0e" + "ee26304c-d73c-4ac5-8be6-543c28e729f1" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T013758Z:841ffaf9-568d-489f-8f16-08e362661c0e" + "NORTHCENTRALUS:20150424T160814Z:ee26304c-d73c-4ac5-8be6-543c28e729f1" ], "Date": [ - "Sat, 18 Apr 2015 01:37:57 GMT" + "Fri, 24 Apr 2015 16:08:13 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4897/providers/Microsoft.Storage/storageAccounts/stopstestrg4897?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNDg5Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNDg5Nz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5256/providers/Microsoft.Storage/storageAccounts/stopstestrg5256?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTI1Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNTI1Nj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "89" + "90" ], "x-ms-client-request-id": [ - "c965df21-a31b-4202-a1b0-dc5f7f8826dc" + "4e5089be-e132-4818-9cc6-a477a23da219" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" @@ -1117,44 +1111,44 @@ "25" ], "x-ms-request-id": [ - "ec2efdd2-3a9c-427b-a262-53cd9d67a5fb" + "ce66e8fd-5d37-4e0e-9ec0-e3a1ae838357" ], "Cache-Control": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Storage/operations/ec2efdd2-3a9c-427b-a262-53cd9d67a5fb?monitor=true&api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Storage/operations/ce66e8fd-5d37-4e0e-9ec0-e3a1ae838357?monitor=true&api-version=2015-05-01-preview" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1191" ], "x-ms-correlation-request-id": [ - "0efbab1a-e13c-4ae0-9b41-1ca654d53aea" + "9920de01-dc24-4676-9f4d-75e7648b3b48" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T013802Z:0efbab1a-e13c-4ae0-9b41-1ca654d53aea" + "NORTHCENTRALUS:20150424T160823Z:9920de01-dc24-4676-9f4d-75e7648b3b48" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Sat, 18 Apr 2015 01:38:02 GMT" + "Fri, 24 Apr 2015 16:08:23 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Storage/operations/ec2efdd2-3a9c-427b-a262-53cd9d67a5fb?monitor=true&api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2VjMmVmZGQyLTNhOWMtNDI3Yi1hMjYyLTUzY2Q5ZDY3YTVmYj9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Storage/operations/ce66e8fd-5d37-4e0e-9ec0-e3a1ae838357?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2NlNjZlOGZkLTVkMzctNGUwZS05ZWMwLWUzYTFhZTgzODM1Nz9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f9b92bae-c681-4c2d-9eaf-eb83c47ec776" + "84fe8c05-db96-417f-b9e9-441d4a6ba341" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" @@ -1178,53 +1172,53 @@ "25" ], "x-ms-request-id": [ - "ad1baf0f-0381-4a76-94ec-1439bf685d3e" + "29c70207-102d-46cb-8ddd-923e4d06753f" ], "Cache-Control": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Storage/operations/ec2efdd2-3a9c-427b-a262-53cd9d67a5fb?monitor=true&api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Storage/operations/ce66e8fd-5d37-4e0e-9ec0-e3a1ae838357?monitor=true&api-version=2015-05-01-preview" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31980" + "31953" ], "x-ms-correlation-request-id": [ - "7a7d6281-d91d-4cf9-b60d-3644b905753d" + "4f187d13-0eb8-457c-8d4a-22c03d4ca9ea" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T013803Z:7a7d6281-d91d-4cf9-b60d-3644b905753d" + "NORTHCENTRALUS:20150424T160824Z:4f187d13-0eb8-457c-8d4a-22c03d4ca9ea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Sat, 18 Apr 2015 01:38:02 GMT" + "Fri, 24 Apr 2015 16:08:23 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Storage/operations/ec2efdd2-3a9c-427b-a262-53cd9d67a5fb?monitor=true&api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2VjMmVmZGQyLTNhOWMtNDI3Yi1hMjYyLTUzY2Q5ZDY3YTVmYj9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Storage/operations/ce66e8fd-5d37-4e0e-9ec0-e3a1ae838357?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2NlNjZlOGZkLTVkMzctNGUwZS05ZWMwLWUzYTFhZTgzODM1Nz9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "612bc554-f2c3-4adf-921e-89b269bc5aac" + "8a215759-50ef-4b04-977a-31fc220438cd" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n },\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n },\r\n \"location\": \"East Asia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "66" + "68" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1236,7 +1230,7 @@ "no-cache" ], "x-ms-request-id": [ - "7ecfe432-98a8-45e3-9963-958d93b9a276" + "4ebe2daf-eba2-4221-a0d8-73d4f8ccb96e" ], "Cache-Control": [ "no-cache" @@ -1246,40 +1240,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31979" + "31952" ], "x-ms-correlation-request-id": [ - "58e3f8ce-c537-4b7c-9675-950c292374f2" + "64cbdad5-bee7-4467-902f-ba80f82cdb3f" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T013828Z:58e3f8ce-c537-4b7c-9675-950c292374f2" + "NORTHCENTRALUS:20150424T160849Z:64cbdad5-bee7-4467-902f-ba80f82cdb3f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Sat, 18 Apr 2015 01:38:27 GMT" + "Fri, 24 Apr 2015 16:08:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4897/providers/Microsoft.Storage/storageAccounts/stopstestrg4897?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNDg5Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNDg5Nz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5256/providers/Microsoft.Storage/storageAccounts/stopstestrg5256?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTI1Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNTI1Nj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "49fba6c7-bac2-43c7-93a4-ab0371c38de1" + "d5d578d0-7066-46c1-ac7c-b0d7e7e4ef6b" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4897/providers/Microsoft.Storage/storageAccounts/stopstestrg4897\",\r\n \"name\": \"stopstestrg4897\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stopstestrg4897.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg4897.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg4897.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-04-18T01:38:01.4847605Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5256/providers/Microsoft.Storage/storageAccounts/stopstestrg5256\",\r\n \"name\": \"stopstestrg5256\",\r\n \"location\": \"East Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stopstestrg5256.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg5256.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg5256.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"East Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"Southeast Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-04-24T16:08:21.1141759Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "672" + "683" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1291,7 +1285,7 @@ "no-cache" ], "x-ms-request-id": [ - "c0235b37-1ed0-4ca8-8a25-b5a868bb4203" + "5b2cf23f-2af9-4329-8c88-809334d518f2" ], "Cache-Control": [ "no-cache" @@ -1301,43 +1295,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31978" + "31951" ], "x-ms-correlation-request-id": [ - "a4ab501b-a0d0-48c7-a010-a383a2e4487e" + "3f15dc5a-9479-4ea0-8cd3-03dfda88e465" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T013828Z:a4ab501b-a0d0-48c7-a010-a383a2e4487e" + "NORTHCENTRALUS:20150424T160849Z:3f15dc5a-9479-4ea0-8cd3-03dfda88e465" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Sat, 18 Apr 2015 01:38:28 GMT" + "Fri, 24 Apr 2015 16:08:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4897/providers/Microsoft.Compute/virtualMachines/vmpstestrg4897?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNDg5Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtcHN0ZXN0cmc0ODk3P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"sourceImage\": {\r\n \"id\": \"/9532a63e-f2eb-4649-bb23-5ed01077ce80/services/images/a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-Datacenter-201503.01-en.us-127GB.vhd\"\r\n },\r\n \"destinationVhdsContainer\": \"https://stopstestrg4897.blob.core.windows.net/test\",\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"testDataDisk1\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg4897.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\"\r\n },\r\n {\r\n \"lun\": 1,\r\n \"diskSizeGB\": 11,\r\n \"name\": \"testDataDisk2\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg4897.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\"\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123pstestrg4897\"\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {\r\n \"primary\": false\r\n },\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4897/providers/Microsoft.Network/networkInterfaces/nic1pstestrg4897\"\r\n },\r\n {\r\n \"properties\": {\r\n \"primary\": true\r\n },\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4897/providers/Microsoft.Network/networkInterfaces/nic2pstestrg4897\"\r\n }\r\n ]\r\n }\r\n },\r\n \"name\": \"vmpstestrg4897\",\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5256/providers/Microsoft.Storage/storageAccounts/stopstestrg5256?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTI1Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNTI1Nj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json" - ], - "Content-Length": [ - "1748" + "x-ms-client-request-id": [ + "abfdaa7b-12b4-4faa-8345-8df092db44bb" ], "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"sourceImage\": {\r\n \"id\": \"/9532a63e-f2eb-4649-bb23-5ed01077ce80/services/images/a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-Datacenter-201503.01-en.us-127GB.vhd\"\r\n },\r\n \"destinationVhdsContainer\": \"https://stopstestrg4897.blob.core.windows.net/test\",\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"vmpstestrg4897-os-20150418-013933-984184\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg4897.blob.core.windows.net/test/vmpstestrg4897-os-20150418-013933-984184.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"testDataDisk1\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg4897.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\"\r\n },\r\n {\r\n \"lun\": 1,\r\n \"diskSizeGB\": 11,\r\n \"name\": \"testDataDisk2\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg4897.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\"\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {\r\n \"primary\": false\r\n },\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4897/providers/Microsoft.Network/networkInterfaces/nic1pstestrg4897\"\r\n },\r\n {\r\n \"properties\": {\r\n \"primary\": true\r\n },\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4897/providers/Microsoft.Network/networkInterfaces/nic2pstestrg4897\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"creating\"\r\n },\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4897/providers/Microsoft.Compute/virtualMachines/vmpstestrg4897\",\r\n \"name\": \"vmpstestrg4897\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5256/providers/Microsoft.Storage/storageAccounts/stopstestrg5256\",\r\n \"name\": \"stopstestrg5256\",\r\n \"location\": \"East Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stopstestrg5256.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg5256.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg5256.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"East Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"Southeast Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-04-24T16:08:21.1141759Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2206" + "683" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1348,14 +1339,8 @@ "Pragma": [ "no-cache" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/westus/operations/e87194e5-e85f-49ac-a30a-9f208cb9050a?api-version=2015-05-01-preview" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "x-ms-request-id": [ - "e87194e5-e85f-49ac-a30a-9f208cb9050a" + "a7cfa4e5-4cf9-43d5-b585-d763196f42dc" ], "Cache-Control": [ "no-cache" @@ -1364,38 +1349,38 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "x-ms-ratelimit-remaining-subscription-reads": [ + "31950" ], "x-ms-correlation-request-id": [ - "1679d167-3219-4f8e-86c8-57052443e56f" + "c7cb1281-2b35-4311-ac97-a159a2e7ba9f" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T013933Z:1679d167-3219-4f8e-86c8-57052443e56f" + "NORTHCENTRALUS:20150424T160849Z:c7cb1281-2b35-4311-ac97-a159a2e7ba9f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Date": [ - "Sat, 18 Apr 2015 01:39:32 GMT" + "Fri, 24 Apr 2015 16:08:49 GMT" ] }, - "StatusCode": 201 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/westus/operations/e87194e5-e85f-49ac-a30a-9f208cb9050a?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTg3MTk0ZTUtZTg1Zi00OWFjLWEzMGEtOWYyMDhjYjkwNTBhP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/eastasia/publishers?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - - - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"e87194e5-e85f-49ac-a30a-9f208cb9050a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-17T18:39:20.4685654-07:00\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"boxless\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/boxless\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"CloudLink.SecureVM\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/CloudLink.SecureVM\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"informatica-cloud\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/informatica-cloud\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"marketplace-test\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/marketplace-test\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"metavistech\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/metavistech\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.Azure.ServiceFabric\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Azure.ServiceFabric\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.WindowsAzure.GuestAgent\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.WindowsAzure.GuestAgent\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftWindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServerEssentials\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MSOpenTech.Extensions\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MSOpenTech.Extensions\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"seagate\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/seagate\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"sharefile\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/sharefile\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"sisense\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/sisense\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"vision_solutions\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/vision_solutions\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/wowza\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "132" + "14225" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1410,7 +1395,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8c49cd37-b23b-4288-b189-babd05ed7bb0" + "9060f803-b4e9-44e7-b82e-c5010bdb812e" ], "Cache-Control": [ "no-cache" @@ -1420,37 +1405,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31976" + "31994" ], "x-ms-correlation-request-id": [ - "2fba92dd-4667-4e21-a431-ed5baed050ae" + "9eed4b00-a032-44d3-8c87-7c2d8a8e3f84" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T013933Z:2fba92dd-4667-4e21-a431-ed5baed050ae" + "NORTHCENTRALUS:20150424T160851Z:9eed4b00-a032-44d3-8c87-7c2d8a8e3f84" ], "Date": [ - "Sat, 18 Apr 2015 01:39:32 GMT" + "Fri, 24 Apr 2015 16:08:51 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/westus/operations/e87194e5-e85f-49ac-a30a-9f208cb9050a?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTg3MTk0ZTUtZTg1Zi00OWFjLWEzMGEtOWYyMDhjYjkwNTBhP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/eastasia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - - - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"e87194e5-e85f-49ac-a30a-9f208cb9050a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-17T18:39:20.4685654-07:00\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"WindowsServer\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "132" + "262" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1465,7 +1447,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ae8a34b7-b02e-4351-8819-8a30f40cd90b" + "d0e7be08-7fd7-405c-a834-8ba4bc4247cc" ], "Cache-Control": [ "no-cache" @@ -1475,37 +1457,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31975" + "31993" ], "x-ms-correlation-request-id": [ - "83850ef8-8d26-45df-a805-1dfede6e3983" + "c0dce38b-571b-4881-baea-dd0d34463305" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T014003Z:83850ef8-8d26-45df-a805-1dfede6e3983" + "NORTHCENTRALUS:20150424T160853Z:c0dce38b-571b-4881-baea-dd0d34463305" ], "Date": [ - "Sat, 18 Apr 2015 01:40:03 GMT" + "Fri, 24 Apr 2015 16:08:52 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/westus/operations/e87194e5-e85f-49ac-a30a-9f208cb9050a?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTg3MTk0ZTUtZTg1Zi00OWFjLWEzMGEtOWYyMDhjYjkwNTBhP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/eastasia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvV2luZG93c1NlcnZlci9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - - - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"e87194e5-e85f-49ac-a30a-9f208cb9050a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-17T18:39:20.4685654-07:00\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"2008-R2-SP1\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"2012-Datacenter\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"2012-R2-Datacenter\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Windows-Server-Technical-Preview\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/Windows-Server-Technical-Preview\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "132" + "1163" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1520,7 +1499,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a4dd59b3-aa58-4a78-9c19-216429db9e34" + "0d054942-619e-4c09-8167-f251e2b5e067" ], "Cache-Control": [ "no-cache" @@ -1530,37 +1509,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31974" + "31992" ], "x-ms-correlation-request-id": [ - "d4d052cf-9b4b-42a7-b183-28075a856220" + "22149255-f8c8-415b-81f4-33f8ba16186a" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T014033Z:d4d052cf-9b4b-42a7-b183-28075a856220" + "NORTHCENTRALUS:20150424T160854Z:22149255-f8c8-415b-81f4-33f8ba16186a" ], "Date": [ - "Sat, 18 Apr 2015 01:40:33 GMT" + "Fri, 24 Apr 2015 16:08:53 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/westus/operations/e87194e5-e85f-49ac-a30a-9f208cb9050a?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTg3MTk0ZTUtZTg1Zi00OWFjLWEzMGEtOWYyMDhjYjkwNTBhP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/eastasia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvV2luZG93c1NlcnZlci9za3VzLzIwMDgtUjItU1AxL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - - - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"e87194e5-e85f-49ac-a30a-9f208cb9050a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-17T18:39:20.4685654-07:00\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"2.0.201502\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201502\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"2.0.201503\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201503\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "132" + "589" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1575,7 +1551,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2e9e660e-bb23-4dfa-9788-5d899cfe8115" + "92286fbd-c92f-423e-b437-2e41e4a6b63c" ], "Cache-Control": [ "no-cache" @@ -1585,37 +1561,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31973" + "31991" ], "x-ms-correlation-request-id": [ - "1a9cbe91-0ec4-4ccb-9420-fdf8bd9f210c" + "82a5fe62-e844-4a7b-8bde-5f7f6f3838c5" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T014103Z:1a9cbe91-0ec4-4ccb-9420-fdf8bd9f210c" + "NORTHCENTRALUS:20150424T160855Z:82a5fe62-e844-4a7b-8bde-5f7f6f3838c5" ], "Date": [ - "Sat, 18 Apr 2015 01:41:03 GMT" + "Fri, 24 Apr 2015 16:08:55 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/westus/operations/e87194e5-e85f-49ac-a30a-9f208cb9050a?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTg3MTk0ZTUtZTg1Zi00OWFjLWEzMGEtOWYyMDhjYjkwNTBhP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/eastasia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions/2.0.201502?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvV2luZG93c1NlcnZlci9za3VzLzIwMDgtUjItU1AxL3ZlcnNpb25zLzIuMC4yMDE1MDI/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - - - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"e87194e5-e85f-49ac-a30a-9f208cb9050a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-17T18:39:20.4685654-07:00\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastasia\",\r\n \"name\": \"2.0.201502\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201502\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "132" + "397" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1630,7 +1603,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9919f815-f7bd-44e2-9c72-3c74e49657e7" + "d3f3892e-cc0d-40dc-82cc-55c8d6ad6ac3" ], "Cache-Control": [ "no-cache" @@ -1640,37 +1613,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31972" + "31990" ], "x-ms-correlation-request-id": [ - "37bba20b-3a24-4536-8c56-136bc4faa555" + "bc14069f-2aed-4b49-a3a3-6273f05f9b40" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T014134Z:37bba20b-3a24-4536-8c56-136bc4faa555" + "NORTHCENTRALUS:20150424T160857Z:bc14069f-2aed-4b49-a3a3-6273f05f9b40" ], "Date": [ - "Sat, 18 Apr 2015 01:41:33 GMT" + "Fri, 24 Apr 2015 16:08:56 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/westus/operations/e87194e5-e85f-49ac-a30a-9f208cb9050a?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTg3MTk0ZTUtZTg1Zi00OWFjLWEzMGEtOWYyMDhjYjkwNTBhP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5256/providers/Microsoft.Compute/virtualMachines/vmpstestrg5256?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTI1Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtcHN0ZXN0cmc1MjU2P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201502\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"osDisk\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg5256.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"createOption\": \"FromImage\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123pstestrg5256\",\r\n \"windowsConfiguration\": {}\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {\r\n \"primary\": false\r\n },\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5256/providers/Microsoft.Network/networkInterfaces/nic1pstestrg5256\"\r\n },\r\n {\r\n \"properties\": {\r\n \"primary\": true\r\n },\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5256/providers/Microsoft.Network/networkInterfaces/nic2pstestrg5256\"\r\n }\r\n ]\r\n }\r\n },\r\n \"name\": \"vmpstestrg5256\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { - - - + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "1368" + ], "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"e87194e5-e85f-49ac-a30a-9f208cb9050a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-17T18:39:20.4685654-07:00\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201502\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg5256.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {\r\n \"primary\": false\r\n },\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5256/providers/Microsoft.Network/networkInterfaces/nic1pstestrg5256\"\r\n },\r\n {\r\n \"properties\": {\r\n \"primary\": true\r\n },\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5256/providers/Microsoft.Network/networkInterfaces/nic2pstestrg5256\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5256/providers/Microsoft.Compute/virtualMachines/vmpstestrg5256\",\r\n \"name\": \"vmpstestrg5256\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {}\r\n}", "ResponseHeaders": { "Content-Length": [ - "132" + "1548" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1681,11 +1657,14 @@ "Pragma": [ "no-cache" ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/eastasia/operations/acf4724d-5396-43bc-8858-e10312657a59?api-version=2015-05-01-preview" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b56827d3-342b-408b-a70c-dae0da678f4c" + "acf4724d-5396-43bc-8858-e10312657a59" ], "Cache-Control": [ "no-cache" @@ -1694,38 +1673,35 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31971" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" ], "x-ms-correlation-request-id": [ - "06c7d081-4a7d-4f62-8c54-4762a0601dcf" + "000e8f33-d261-4cd3-8438-56bf6142a26e" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T014204Z:06c7d081-4a7d-4f62-8c54-4762a0601dcf" + "NORTHCENTRALUS:20150424T160904Z:000e8f33-d261-4cd3-8438-56bf6142a26e" ], "Date": [ - "Sat, 18 Apr 2015 01:42:03 GMT" + "Fri, 24 Apr 2015 16:09:03 GMT" ] }, - "StatusCode": 200 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/westus/operations/e87194e5-e85f-49ac-a30a-9f208cb9050a?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTg3MTk0ZTUtZTg1Zi00OWFjLWEzMGEtOWYyMDhjYjkwNTBhP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/eastasia/operations/acf4724d-5396-43bc-8858-e10312657a59?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9hY2Y0NzI0ZC01Mzk2LTQzYmMtODg1OC1lMTAzMTI2NTdhNTk/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - - - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"e87194e5-e85f-49ac-a30a-9f208cb9050a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-17T18:39:20.4685654-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"acf4724d-5396-43bc-8858-e10312657a59\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-24T09:09:01.4935229-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "132" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1740,7 +1716,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d42b43c3-5f9f-4d30-9923-4180206ac0d3" + "697432bb-3d28-4047-a270-6a24bf9f167e" ], "Cache-Control": [ "no-cache" @@ -1750,37 +1726,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31970" + "31989" ], "x-ms-correlation-request-id": [ - "b73057ff-cac3-49c0-939e-2a718ffba902" + "f4145465-ebf2-40b6-a79d-59506b02cbcb" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T014234Z:b73057ff-cac3-49c0-939e-2a718ffba902" + "NORTHCENTRALUS:20150424T160905Z:f4145465-ebf2-40b6-a79d-59506b02cbcb" ], "Date": [ - "Sat, 18 Apr 2015 01:42:33 GMT" + "Fri, 24 Apr 2015 16:09:04 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/westus/operations/e87194e5-e85f-49ac-a30a-9f208cb9050a?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTg3MTk0ZTUtZTg1Zi00OWFjLWEzMGEtOWYyMDhjYjkwNTBhP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/eastasia/operations/acf4724d-5396-43bc-8858-e10312657a59?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9hY2Y0NzI0ZC01Mzk2LTQzYmMtODg1OC1lMTAzMTI2NTdhNTk/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - - - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"e87194e5-e85f-49ac-a30a-9f208cb9050a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-17T18:39:20.4685654-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"acf4724d-5396-43bc-8858-e10312657a59\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-24T09:09:01.4935229-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "132" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1795,7 +1768,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "535eb834-18e1-4f1a-bdb3-a19dfe5740d6" + "c7a6d30a-cded-4f7a-8460-952a15df9a3a" ], "Cache-Control": [ "no-cache" @@ -1805,37 +1778,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31969" + "31988" ], "x-ms-correlation-request-id": [ - "f41feb15-f56f-4110-a419-b4398936e5d5" + "4e61551a-7aa2-4648-addf-56cfc9ada224" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T014304Z:f41feb15-f56f-4110-a419-b4398936e5d5" + "NORTHCENTRALUS:20150424T160936Z:4e61551a-7aa2-4648-addf-56cfc9ada224" ], "Date": [ - "Sat, 18 Apr 2015 01:43:03 GMT" + "Fri, 24 Apr 2015 16:09:35 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/westus/operations/e87194e5-e85f-49ac-a30a-9f208cb9050a?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTg3MTk0ZTUtZTg1Zi00OWFjLWEzMGEtOWYyMDhjYjkwNTBhP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/eastasia/operations/acf4724d-5396-43bc-8858-e10312657a59?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9hY2Y0NzI0ZC01Mzk2LTQzYmMtODg1OC1lMTAzMTI2NTdhNTk/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - - - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"e87194e5-e85f-49ac-a30a-9f208cb9050a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-17T18:39:20.4685654-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"acf4724d-5396-43bc-8858-e10312657a59\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-24T09:09:01.4935229-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "132" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1850,7 +1820,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "79583a7d-055e-4dcf-bc9b-46afa8ff782b" + "c8473dfe-7b33-487b-91db-c2d2e2fad7ea" ], "Cache-Control": [ "no-cache" @@ -1860,37 +1830,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31968" + "31987" ], "x-ms-correlation-request-id": [ - "9d2f088f-73fa-42c4-b4b6-2cc0a15a7b39" + "716006db-b270-4ead-92d7-6bed8b819b87" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T014334Z:9d2f088f-73fa-42c4-b4b6-2cc0a15a7b39" + "NORTHCENTRALUS:20150424T161006Z:716006db-b270-4ead-92d7-6bed8b819b87" ], "Date": [ - "Sat, 18 Apr 2015 01:43:34 GMT" + "Fri, 24 Apr 2015 16:10:05 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/westus/operations/e87194e5-e85f-49ac-a30a-9f208cb9050a?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTg3MTk0ZTUtZTg1Zi00OWFjLWEzMGEtOWYyMDhjYjkwNTBhP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/eastasia/operations/acf4724d-5396-43bc-8858-e10312657a59?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9hY2Y0NzI0ZC01Mzk2LTQzYmMtODg1OC1lMTAzMTI2NTdhNTk/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - - - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"e87194e5-e85f-49ac-a30a-9f208cb9050a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-17T18:39:20.4685654-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"acf4724d-5396-43bc-8858-e10312657a59\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-24T09:09:01.4935229-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "132" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1905,7 +1872,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "65d93863-9c71-43f8-b91e-96f1e011a575" + "a58ce730-b278-4442-a38c-1866b4673b77" ], "Cache-Control": [ "no-cache" @@ -1915,37 +1882,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31967" + "31986" ], "x-ms-correlation-request-id": [ - "65351525-7376-4936-a113-773eaf587539" + "bea928d4-aca4-49a9-8dcc-21c3bfc56445" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T014404Z:65351525-7376-4936-a113-773eaf587539" + "NORTHCENTRALUS:20150424T161037Z:bea928d4-aca4-49a9-8dcc-21c3bfc56445" ], "Date": [ - "Sat, 18 Apr 2015 01:44:04 GMT" + "Fri, 24 Apr 2015 16:10:37 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/westus/operations/e87194e5-e85f-49ac-a30a-9f208cb9050a?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTg3MTk0ZTUtZTg1Zi00OWFjLWEzMGEtOWYyMDhjYjkwNTBhP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/eastasia/operations/acf4724d-5396-43bc-8858-e10312657a59?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9hY2Y0NzI0ZC01Mzk2LTQzYmMtODg1OC1lMTAzMTI2NTdhNTk/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - - - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"e87194e5-e85f-49ac-a30a-9f208cb9050a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-17T18:39:20.4685654-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"acf4724d-5396-43bc-8858-e10312657a59\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-24T09:09:01.4935229-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "132" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1960,7 +1924,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c55e2ee4-2d3e-4ded-b215-9b8f53d1f460" + "3ae48428-7943-4c59-a82f-07a1ba3985a2" ], "Cache-Control": [ "no-cache" @@ -1970,37 +1934,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31966" + "31985" ], "x-ms-correlation-request-id": [ - "820c1b7e-bdbb-4bfc-b263-bffe090bd7cc" + "c39b5fba-f30f-4373-bd37-e4b6d29798cf" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T014434Z:820c1b7e-bdbb-4bfc-b263-bffe090bd7cc" + "NORTHCENTRALUS:20150424T161108Z:c39b5fba-f30f-4373-bd37-e4b6d29798cf" ], "Date": [ - "Sat, 18 Apr 2015 01:44:34 GMT" + "Fri, 24 Apr 2015 16:11:08 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/westus/operations/e87194e5-e85f-49ac-a30a-9f208cb9050a?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTg3MTk0ZTUtZTg1Zi00OWFjLWEzMGEtOWYyMDhjYjkwNTBhP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/eastasia/operations/acf4724d-5396-43bc-8858-e10312657a59?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9hY2Y0NzI0ZC01Mzk2LTQzYmMtODg1OC1lMTAzMTI2NTdhNTk/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - - - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"e87194e5-e85f-49ac-a30a-9f208cb9050a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-17T18:39:20.4685654-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"acf4724d-5396-43bc-8858-e10312657a59\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-24T09:09:01.4935229-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "132" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2015,7 +1976,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3f6534b4-c844-440d-9970-a65ee9328a2b" + "4bc4be87-1894-4c3f-8f3e-65429d7a8b6f" ], "Cache-Control": [ "no-cache" @@ -2025,37 +1986,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31965" + "31984" ], "x-ms-correlation-request-id": [ - "78f3e4bc-df1a-44dd-a522-3ac182206c50" + "76e7a0a4-aca4-40f6-b284-e1d76d9a26c0" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T014505Z:78f3e4bc-df1a-44dd-a522-3ac182206c50" + "NORTHCENTRALUS:20150424T161139Z:76e7a0a4-aca4-40f6-b284-e1d76d9a26c0" ], "Date": [ - "Sat, 18 Apr 2015 01:45:04 GMT" + "Fri, 24 Apr 2015 16:11:38 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/westus/operations/e87194e5-e85f-49ac-a30a-9f208cb9050a?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTg3MTk0ZTUtZTg1Zi00OWFjLWEzMGEtOWYyMDhjYjkwNTBhP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/eastasia/operations/acf4724d-5396-43bc-8858-e10312657a59?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9hY2Y0NzI0ZC01Mzk2LTQzYmMtODg1OC1lMTAzMTI2NTdhNTk/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - - - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"e87194e5-e85f-49ac-a30a-9f208cb9050a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-17T18:39:20.4685654-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"acf4724d-5396-43bc-8858-e10312657a59\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-24T09:09:01.4935229-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "132" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2070,7 +2028,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3b69e12e-51c9-4b81-afc8-f1ed1117b5d7" + "41683075-3cb2-4592-b8bd-1d028bbc646a" ], "Cache-Control": [ "no-cache" @@ -2080,37 +2038,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31964" + "31983" ], "x-ms-correlation-request-id": [ - "81dc344f-9f17-4693-b492-acc167ae0d67" + "9d0735ce-9ee4-4df0-870b-6cd3c3deb91d" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T014535Z:81dc344f-9f17-4693-b492-acc167ae0d67" + "NORTHCENTRALUS:20150424T161210Z:9d0735ce-9ee4-4df0-870b-6cd3c3deb91d" ], "Date": [ - "Sat, 18 Apr 2015 01:45:35 GMT" + "Fri, 24 Apr 2015 16:12:09 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/westus/operations/e87194e5-e85f-49ac-a30a-9f208cb9050a?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTg3MTk0ZTUtZTg1Zi00OWFjLWEzMGEtOWYyMDhjYjkwNTBhP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/eastasia/operations/acf4724d-5396-43bc-8858-e10312657a59?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9hY2Y0NzI0ZC01Mzk2LTQzYmMtODg1OC1lMTAzMTI2NTdhNTk/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - - - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"e87194e5-e85f-49ac-a30a-9f208cb9050a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-17T18:39:20.4685654-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"acf4724d-5396-43bc-8858-e10312657a59\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-24T09:09:01.4935229-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "132" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2125,7 +2080,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9b5a1045-3b09-4834-a46a-51b9d506a6d0" + "806172e4-de21-4671-a883-28dd0c3a0346" ], "Cache-Control": [ "no-cache" @@ -2135,37 +2090,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31963" + "31982" ], "x-ms-correlation-request-id": [ - "f5ba839a-08f3-44ef-9983-2717555120f9" + "70e65a73-5356-4ae9-b595-14e35644f353" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T014605Z:f5ba839a-08f3-44ef-9983-2717555120f9" + "NORTHCENTRALUS:20150424T161241Z:70e65a73-5356-4ae9-b595-14e35644f353" ], "Date": [ - "Sat, 18 Apr 2015 01:46:05 GMT" + "Fri, 24 Apr 2015 16:12:41 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/westus/operations/e87194e5-e85f-49ac-a30a-9f208cb9050a?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTg3MTk0ZTUtZTg1Zi00OWFjLWEzMGEtOWYyMDhjYjkwNTBhP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/eastasia/operations/acf4724d-5396-43bc-8858-e10312657a59?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9hY2Y0NzI0ZC01Mzk2LTQzYmMtODg1OC1lMTAzMTI2NTdhNTk/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - - - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"e87194e5-e85f-49ac-a30a-9f208cb9050a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-17T18:39:20.4685654-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"acf4724d-5396-43bc-8858-e10312657a59\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-24T09:09:01.4935229-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "132" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2180,7 +2132,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "025f9999-c651-46b5-8f0f-8d77be40e989" + "c3d62e80-3219-48d4-ac3d-53a2a1f60c17" ], "Cache-Control": [ "no-cache" @@ -2190,37 +2142,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31962" + "31981" ], "x-ms-correlation-request-id": [ - "471ff8e4-f615-4a87-8164-737dc06f376c" + "8b710d08-7b93-4686-ad65-70ded007e9c9" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T014635Z:471ff8e4-f615-4a87-8164-737dc06f376c" + "NORTHCENTRALUS:20150424T161311Z:8b710d08-7b93-4686-ad65-70ded007e9c9" ], "Date": [ - "Sat, 18 Apr 2015 01:46:35 GMT" + "Fri, 24 Apr 2015 16:13:11 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/westus/operations/e87194e5-e85f-49ac-a30a-9f208cb9050a?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTg3MTk0ZTUtZTg1Zi00OWFjLWEzMGEtOWYyMDhjYjkwNTBhP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/eastasia/operations/acf4724d-5396-43bc-8858-e10312657a59?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9hY2Y0NzI0ZC01Mzk2LTQzYmMtODg1OC1lMTAzMTI2NTdhNTk/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - - - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"e87194e5-e85f-49ac-a30a-9f208cb9050a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-17T18:39:20.4685654-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"acf4724d-5396-43bc-8858-e10312657a59\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-24T09:09:01.4935229-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "132" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2235,7 +2184,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3270868e-374e-4346-b87e-639288ebd49d" + "aab5d10e-3964-45db-ab71-ca80785958a4" ], "Cache-Control": [ "no-cache" @@ -2245,37 +2194,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31961" + "31980" ], "x-ms-correlation-request-id": [ - "5ed4e382-1a62-473e-b9cc-381ee1712597" + "54185b73-ecb6-4d7d-90ec-71a04eb74372" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T014705Z:5ed4e382-1a62-473e-b9cc-381ee1712597" + "NORTHCENTRALUS:20150424T161342Z:54185b73-ecb6-4d7d-90ec-71a04eb74372" ], "Date": [ - "Sat, 18 Apr 2015 01:47:05 GMT" + "Fri, 24 Apr 2015 16:13:42 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/westus/operations/e87194e5-e85f-49ac-a30a-9f208cb9050a?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTg3MTk0ZTUtZTg1Zi00OWFjLWEzMGEtOWYyMDhjYjkwNTBhP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/eastasia/operations/acf4724d-5396-43bc-8858-e10312657a59?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9hY2Y0NzI0ZC01Mzk2LTQzYmMtODg1OC1lMTAzMTI2NTdhNTk/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - - - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"e87194e5-e85f-49ac-a30a-9f208cb9050a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-17T18:39:20.4685654-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"acf4724d-5396-43bc-8858-e10312657a59\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-24T09:09:01.4935229-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "132" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2290,7 +2236,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d57b7bf2-4d94-4a52-b5ef-3a3bfd14202a" + "b0858039-6540-4886-8469-ca05f9797fd8" ], "Cache-Control": [ "no-cache" @@ -2300,37 +2246,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31960" + "31979" ], "x-ms-correlation-request-id": [ - "a210f858-f7a2-42f8-8e6d-2ef5d78cda67" + "763a9e05-b517-495d-b91d-ecda46f2de46" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T014735Z:a210f858-f7a2-42f8-8e6d-2ef5d78cda67" + "NORTHCENTRALUS:20150424T161413Z:763a9e05-b517-495d-b91d-ecda46f2de46" ], "Date": [ - "Sat, 18 Apr 2015 01:47:35 GMT" + "Fri, 24 Apr 2015 16:14:12 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/westus/operations/e87194e5-e85f-49ac-a30a-9f208cb9050a?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTg3MTk0ZTUtZTg1Zi00OWFjLWEzMGEtOWYyMDhjYjkwNTBhP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/eastasia/operations/acf4724d-5396-43bc-8858-e10312657a59?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9hY2Y0NzI0ZC01Mzk2LTQzYmMtODg1OC1lMTAzMTI2NTdhNTk/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - - - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"e87194e5-e85f-49ac-a30a-9f208cb9050a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-17T18:39:20.4685654-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"acf4724d-5396-43bc-8858-e10312657a59\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-24T09:09:01.4935229-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "132" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2345,7 +2288,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "82cec515-dbb7-44ae-8825-0d51b4172090" + "aabc6764-7949-4be1-ac90-442389ff88bc" ], "Cache-Control": [ "no-cache" @@ -2355,37 +2298,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31959" + "31978" ], "x-ms-correlation-request-id": [ - "346ac0d9-2132-448b-95bd-0ec9740f5954" + "1ce08ade-f005-4d20-994a-48e9a0d2060c" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T014806Z:346ac0d9-2132-448b-95bd-0ec9740f5954" + "NORTHCENTRALUS:20150424T161444Z:1ce08ade-f005-4d20-994a-48e9a0d2060c" ], "Date": [ - "Sat, 18 Apr 2015 01:48:05 GMT" + "Fri, 24 Apr 2015 16:14:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/westus/operations/e87194e5-e85f-49ac-a30a-9f208cb9050a?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTg3MTk0ZTUtZTg1Zi00OWFjLWEzMGEtOWYyMDhjYjkwNTBhP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/eastasia/operations/acf4724d-5396-43bc-8858-e10312657a59?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9hY2Y0NzI0ZC01Mzk2LTQzYmMtODg1OC1lMTAzMTI2NTdhNTk/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - - - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"e87194e5-e85f-49ac-a30a-9f208cb9050a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-17T18:39:20.4685654-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"acf4724d-5396-43bc-8858-e10312657a59\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-24T09:09:01.4935229-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "132" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2400,7 +2340,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cbc09565-fe66-459b-b41a-f61b31f312b3" + "6ed476bf-5a54-4b3e-99f6-1701b2bb9a51" ], "Cache-Control": [ "no-cache" @@ -2410,37 +2350,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31958" + "31977" ], "x-ms-correlation-request-id": [ - "666694b3-2f44-4908-8d65-e485c0abc265" + "5a3e7ecc-0e5a-4316-ad26-c1198b9e5937" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T014836Z:666694b3-2f44-4908-8d65-e485c0abc265" + "NORTHCENTRALUS:20150424T161515Z:5a3e7ecc-0e5a-4316-ad26-c1198b9e5937" ], "Date": [ - "Sat, 18 Apr 2015 01:48:35 GMT" + "Fri, 24 Apr 2015 16:15:15 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/westus/operations/e87194e5-e85f-49ac-a30a-9f208cb9050a?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTg3MTk0ZTUtZTg1Zi00OWFjLWEzMGEtOWYyMDhjYjkwNTBhP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/eastasia/operations/acf4724d-5396-43bc-8858-e10312657a59?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9hY2Y0NzI0ZC01Mzk2LTQzYmMtODg1OC1lMTAzMTI2NTdhNTk/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - - - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"e87194e5-e85f-49ac-a30a-9f208cb9050a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-17T18:39:20.4685654-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"acf4724d-5396-43bc-8858-e10312657a59\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-24T09:09:01.4935229-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "132" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2455,7 +2392,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "58d7a531-ae29-433b-b742-6386c188fb59" + "cc0760aa-455d-4938-94d0-dd6e1c26c20c" ], "Cache-Control": [ "no-cache" @@ -2465,37 +2402,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31957" + "31976" ], "x-ms-correlation-request-id": [ - "93c5a81f-e92e-4d5c-8396-5918860854e9" + "706bef41-8fac-433c-b8b5-5bff448ec8ef" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T014906Z:93c5a81f-e92e-4d5c-8396-5918860854e9" + "NORTHCENTRALUS:20150424T161546Z:706bef41-8fac-433c-b8b5-5bff448ec8ef" ], "Date": [ - "Sat, 18 Apr 2015 01:49:05 GMT" + "Fri, 24 Apr 2015 16:15:45 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/westus/operations/e87194e5-e85f-49ac-a30a-9f208cb9050a?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTg3MTk0ZTUtZTg1Zi00OWFjLWEzMGEtOWYyMDhjYjkwNTBhP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/eastasia/operations/acf4724d-5396-43bc-8858-e10312657a59?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9hY2Y0NzI0ZC01Mzk2LTQzYmMtODg1OC1lMTAzMTI2NTdhNTk/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - - - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"e87194e5-e85f-49ac-a30a-9f208cb9050a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-17T18:39:20.4685654-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"acf4724d-5396-43bc-8858-e10312657a59\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-04-24T09:09:01.4935229-07:00\",\r\n \"endTime\": \"2015-04-24T09:15:53.5111852-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "132" + "191" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2510,7 +2444,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a38ff49b-f997-4ef9-b703-992599e38a54" + "7a8e0cbc-eb83-44cb-8ff1-6a50d06a09f3" ], "Cache-Control": [ "no-cache" @@ -2520,37 +2454,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31956" + "31975" ], "x-ms-correlation-request-id": [ - "403e047d-7d67-493d-bc5a-e30068589841" + "8fabad37-2deb-4880-b6ee-d398dc90828c" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T014936Z:403e047d-7d67-493d-bc5a-e30068589841" + "NORTHCENTRALUS:20150424T161617Z:8fabad37-2deb-4880-b6ee-d398dc90828c" ], "Date": [ - "Sat, 18 Apr 2015 01:49:35 GMT" + "Fri, 24 Apr 2015 16:16:17 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/westus/operations/e87194e5-e85f-49ac-a30a-9f208cb9050a?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTg3MTk0ZTUtZTg1Zi00OWFjLWEzMGEtOWYyMDhjYjkwNTBhP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5256/providers/Microsoft.Compute/virtualMachines/vmpstestrg5256?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTI1Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtcHN0ZXN0cmc1MjU2P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - - - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"e87194e5-e85f-49ac-a30a-9f208cb9050a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-17T18:39:20.4685654-07:00\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201502\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg5256.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {\r\n \"primary\": false\r\n },\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5256/providers/Microsoft.Network/networkInterfaces/nic1pstestrg5256\"\r\n },\r\n {\r\n \"properties\": {\r\n \"primary\": true\r\n },\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5256/providers/Microsoft.Network/networkInterfaces/nic2pstestrg5256\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5256/providers/Microsoft.Compute/virtualMachines/vmpstestrg5256\",\r\n \"name\": \"vmpstestrg5256\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {}\r\n}", "ResponseHeaders": { "Content-Length": [ - "132" + "1549" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2565,7 +2496,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "abbe0a61-a2b6-4908-83df-dec64c509096" + "82d525b6-ec12-4053-9739-72ed75dfd53c" ], "Cache-Control": [ "no-cache" @@ -2575,40 +2506,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31955" + "31974" ], "x-ms-correlation-request-id": [ - "5a516ddb-2f13-49ba-9ad1-3e7eefad910f" + "09ab03a3-1d5c-40ed-afdd-0b9db97eefd7" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T015006Z:5a516ddb-2f13-49ba-9ad1-3e7eefad910f" + "NORTHCENTRALUS:20150424T161618Z:09ab03a3-1d5c-40ed-afdd-0b9db97eefd7" ], "Date": [ - "Sat, 18 Apr 2015 01:50:06 GMT" + "Fri, 24 Apr 2015 16:16:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/westus/operations/e87194e5-e85f-49ac-a30a-9f208cb9050a?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTg3MTk0ZTUtZTg1Zi00OWFjLWEzMGEtOWYyMDhjYjkwNTBhP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5256/providers/Microsoft.Compute/virtualMachines/vmpstestrg5256?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTI1Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtcHN0ZXN0cmc1MjU2P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { - - - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"e87194e5-e85f-49ac-a30a-9f208cb9050a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-17T18:39:20.4685654-07:00\"\r\n}", + "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "132" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "0" ], "Expires": [ "-1" @@ -2616,51 +2541,54 @@ "Pragma": [ "no-cache" ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/eastasia/operations/0ecbf5d9-7dcd-43be-9e59-14eb54448757?api-version=2015-05-01-preview" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4783fda4-16f0-4e1a-8a8a-58d87579abbb" + "0ecbf5d9-7dcd-43be-9e59-14eb54448757" ], "Cache-Control": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/eastasia/operations/0ecbf5d9-7dcd-43be-9e59-14eb54448757?monitor=true&api-version=2015-05-01-preview" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31954" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" ], "x-ms-correlation-request-id": [ - "e69cfb52-9d2a-40a4-bc70-e80d932c3cb9" + "a1cd1ed5-f58f-43f8-bedc-60e3629deedd" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T015036Z:e69cfb52-9d2a-40a4-bc70-e80d932c3cb9" + "NORTHCENTRALUS:20150424T161627Z:a1cd1ed5-f58f-43f8-bedc-60e3629deedd" ], "Date": [ - "Sat, 18 Apr 2015 01:50:36 GMT" + "Fri, 24 Apr 2015 16:16:27 GMT" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/westus/operations/e87194e5-e85f-49ac-a30a-9f208cb9050a?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTg3MTk0ZTUtZTg1Zi00OWFjLWEzMGEtOWYyMDhjYjkwNTBhP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/eastasia/operations/0ecbf5d9-7dcd-43be-9e59-14eb54448757?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy8wZWNiZjVkOS03ZGNkLTQzYmUtOWU1OS0xNGViNTQ0NDg3NTc/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - - - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"e87194e5-e85f-49ac-a30a-9f208cb9050a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-17T18:39:20.4685654-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"0ecbf5d9-7dcd-43be-9e59-14eb54448757\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-24T09:16:24.4020773-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "132" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2675,7 +2603,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "87b60505-c574-4750-b0fd-80d2b8839dbc" + "0aeffbc8-0e01-4e7a-ace8-d59c3a9dcb13" ], "Cache-Control": [ "no-cache" @@ -2685,37 +2613,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31953" + "31987" ], "x-ms-correlation-request-id": [ - "65dac019-6212-4274-979d-1730d5974530" + "57343fb7-988a-44c6-a28a-d7dc4d7110bb" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T015106Z:65dac019-6212-4274-979d-1730d5974530" + "NORTHCENTRALUS:20150424T161628Z:57343fb7-988a-44c6-a28a-d7dc4d7110bb" ], "Date": [ - "Sat, 18 Apr 2015 01:51:06 GMT" + "Fri, 24 Apr 2015 16:16:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/westus/operations/e87194e5-e85f-49ac-a30a-9f208cb9050a?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTg3MTk0ZTUtZTg1Zi00OWFjLWEzMGEtOWYyMDhjYjkwNTBhP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/eastasia/operations/0ecbf5d9-7dcd-43be-9e59-14eb54448757?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy8wZWNiZjVkOS03ZGNkLTQzYmUtOWU1OS0xNGViNTQ0NDg3NTc/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - - - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"e87194e5-e85f-49ac-a30a-9f208cb9050a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-17T18:39:20.4685654-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"0ecbf5d9-7dcd-43be-9e59-14eb54448757\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-24T09:16:24.4020773-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "132" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2730,7 +2655,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "371944fe-6abc-4a87-b8df-734ba7c18435" + "5b49a3ab-3583-4d90-b9e6-9612f5674e59" ], "Cache-Control": [ "no-cache" @@ -2740,37 +2665,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31952" + "31986" ], "x-ms-correlation-request-id": [ - "48cb2d21-ddae-4f3d-a203-7795ec0142a0" + "699e5528-5c85-4118-8c96-803c40530abb" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T015137Z:48cb2d21-ddae-4f3d-a203-7795ec0142a0" + "NORTHCENTRALUS:20150424T161659Z:699e5528-5c85-4118-8c96-803c40530abb" ], "Date": [ - "Sat, 18 Apr 2015 01:51:36 GMT" + "Fri, 24 Apr 2015 16:16:58 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/westus/operations/e87194e5-e85f-49ac-a30a-9f208cb9050a?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTg3MTk0ZTUtZTg1Zi00OWFjLWEzMGEtOWYyMDhjYjkwNTBhP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/eastasia/operations/0ecbf5d9-7dcd-43be-9e59-14eb54448757?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy8wZWNiZjVkOS03ZGNkLTQzYmUtOWU1OS0xNGViNTQ0NDg3NTc/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - - - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"e87194e5-e85f-49ac-a30a-9f208cb9050a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-17T18:39:20.4685654-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"0ecbf5d9-7dcd-43be-9e59-14eb54448757\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-24T09:16:24.4020773-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "132" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2785,7 +2707,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "43751add-a877-4a6d-aa76-b93b30bfc3f0" + "18c4945a-aff6-4029-8a4b-5d67224f4162" ], "Cache-Control": [ "no-cache" @@ -2795,37 +2717,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31951" + "31985" ], "x-ms-correlation-request-id": [ - "290d486e-db88-4055-9360-b4db5c6ce63b" + "218c08b7-524b-4d33-8800-f63ba1605c8b" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T015207Z:290d486e-db88-4055-9360-b4db5c6ce63b" + "NORTHCENTRALUS:20150424T161730Z:218c08b7-524b-4d33-8800-f63ba1605c8b" ], "Date": [ - "Sat, 18 Apr 2015 01:52:07 GMT" + "Fri, 24 Apr 2015 16:17:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/westus/operations/e87194e5-e85f-49ac-a30a-9f208cb9050a?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTg3MTk0ZTUtZTg1Zi00OWFjLWEzMGEtOWYyMDhjYjkwNTBhP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/eastasia/operations/0ecbf5d9-7dcd-43be-9e59-14eb54448757?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy8wZWNiZjVkOS03ZGNkLTQzYmUtOWU1OS0xNGViNTQ0NDg3NTc/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - - - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"e87194e5-e85f-49ac-a30a-9f208cb9050a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-17T18:39:20.4685654-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"0ecbf5d9-7dcd-43be-9e59-14eb54448757\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-24T09:16:24.4020773-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "132" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2840,7 +2759,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "209bea61-d37d-4720-9b19-e2a49d32da9a" + "24809730-5fab-48d5-8c09-404c73d6436a" ], "Cache-Control": [ "no-cache" @@ -2850,37 +2769,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31950" + "31984" ], "x-ms-correlation-request-id": [ - "18a4988a-4ca0-47cb-9f05-2d31c76f582c" + "42f471b1-605b-4090-92ef-c9a064e816a0" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T015237Z:18a4988a-4ca0-47cb-9f05-2d31c76f582c" + "NORTHCENTRALUS:20150424T161801Z:42f471b1-605b-4090-92ef-c9a064e816a0" ], "Date": [ - "Sat, 18 Apr 2015 01:52:37 GMT" + "Fri, 24 Apr 2015 16:18:00 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/westus/operations/e87194e5-e85f-49ac-a30a-9f208cb9050a?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTg3MTk0ZTUtZTg1Zi00OWFjLWEzMGEtOWYyMDhjYjkwNTBhP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/eastasia/operations/0ecbf5d9-7dcd-43be-9e59-14eb54448757?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy8wZWNiZjVkOS03ZGNkLTQzYmUtOWU1OS0xNGViNTQ0NDg3NTc/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - - - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"e87194e5-e85f-49ac-a30a-9f208cb9050a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-17T18:39:20.4685654-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"0ecbf5d9-7dcd-43be-9e59-14eb54448757\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-04-24T09:16:24.4020773-07:00\",\r\n \"endTime\": \"2015-04-24T09:18:06.2308488-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "132" + "191" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2895,7 +2811,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "28b36aac-ee37-4ff3-8713-bd573ffa985e" + "b2d515bb-0cb2-4429-8342-8192418892e2" ], "Cache-Control": [ "no-cache" @@ -2905,40 +2821,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31949" + "31983" ], "x-ms-correlation-request-id": [ - "c869413b-9653-40c2-abf2-3f4a0a443974" + "3d2c6d35-37aa-402b-bbea-2bc3208bbab8" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T015307Z:c869413b-9653-40c2-abf2-3f4a0a443974" + "NORTHCENTRALUS:20150424T161832Z:3d2c6d35-37aa-402b-bbea-2bc3208bbab8" ], "Date": [ - "Sat, 18 Apr 2015 01:53:06 GMT" + "Fri, 24 Apr 2015 16:18:31 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/westus/operations/e87194e5-e85f-49ac-a30a-9f208cb9050a?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTg3MTk0ZTUtZTg1Zi00OWFjLWEzMGEtOWYyMDhjYjkwNTBhP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourcegroups/pstestrg5256?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNTI1Nj9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { - - - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"e87194e5-e85f-49ac-a30a-9f208cb9050a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-17T18:39:20.4685654-07:00\"\r\n}", + "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "132" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "0" ], "Expires": [ "-1" @@ -2946,54 +2856,53 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "dfccd952-6209-4f69-bc3b-eeb275195bc6" - ], - "Cache-Control": [ - "no-cache" + "Retry-After": [ + "15" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31948" + "x-ms-request-id": [ + "0c49ae85-1d2d-4446-a7fe-cfd831e132b9" ], "x-ms-correlation-request-id": [ - "27eb2359-4e81-4663-85d3-9e6a5f53cee5" + "0c49ae85-1d2d-4446-a7fe-cfd831e132b9" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T015337Z:27eb2359-4e81-4663-85d3-9e6a5f53cee5" + "NORTHCENTRALUS:20150424T161836Z:0c49ae85-1d2d-4446-a7fe-cfd831e132b9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" ], "Date": [ - "Sat, 18 Apr 2015 01:53:37 GMT" + "Fri, 24 Apr 2015 16:18:36 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzUyNTYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/westus/operations/e87194e5-e85f-49ac-a30a-9f208cb9050a?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTg3MTk0ZTUtZTg1Zi00OWFjLWEzMGEtOWYyMDhjYjkwNTBhP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzUyNTYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelV5TlRZdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - - - + "x-ms-version": [ + "2014-04-01-preview" + ], "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"e87194e5-e85f-49ac-a30a-9f208cb9050a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-17T18:39:20.4685654-07:00\"\r\n}", + "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "132" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "0" ], "Expires": [ "-1" @@ -3001,54 +2910,53 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "8858d75b-fcfe-4abc-bf45-e8c7936b939b" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Retry-After": [ + "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31947" + "31981" + ], + "x-ms-request-id": [ + "515a10d6-e125-43df-b079-f7079ca171a9" ], "x-ms-correlation-request-id": [ - "c679fbd2-1f09-4a14-83e7-6131de0fcacf" + "515a10d6-e125-43df-b079-f7079ca171a9" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T015407Z:c679fbd2-1f09-4a14-83e7-6131de0fcacf" + "NORTHCENTRALUS:20150424T161837Z:515a10d6-e125-43df-b079-f7079ca171a9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" ], "Date": [ - "Sat, 18 Apr 2015 01:54:06 GMT" + "Fri, 24 Apr 2015 16:18:36 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzUyNTYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/westus/operations/e87194e5-e85f-49ac-a30a-9f208cb9050a?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTg3MTk0ZTUtZTg1Zi00OWFjLWEzMGEtOWYyMDhjYjkwNTBhP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzUyNTYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelV5TlRZdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - - - + "x-ms-version": [ + "2014-04-01-preview" + ], "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"e87194e5-e85f-49ac-a30a-9f208cb9050a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-17T18:39:20.4685654-07:00\"\r\n}", + "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "132" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "0" ], "Expires": [ "-1" @@ -3056,54 +2964,53 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "32512ac1-b619-435e-ae6e-1f20743339d2" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Retry-After": [ + "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31946" + "31980" + ], + "x-ms-request-id": [ + "a440a146-588d-4db4-b6cf-3b1dc336ad5f" ], "x-ms-correlation-request-id": [ - "756377f5-f21a-4de0-b150-6d545586cc98" + "a440a146-588d-4db4-b6cf-3b1dc336ad5f" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T015437Z:756377f5-f21a-4de0-b150-6d545586cc98" + "NORTHCENTRALUS:20150424T161852Z:a440a146-588d-4db4-b6cf-3b1dc336ad5f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" ], "Date": [ - "Sat, 18 Apr 2015 01:54:37 GMT" + "Fri, 24 Apr 2015 16:18:52 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzUyNTYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/westus/operations/e87194e5-e85f-49ac-a30a-9f208cb9050a?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTg3MTk0ZTUtZTg1Zi00OWFjLWEzMGEtOWYyMDhjYjkwNTBhP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzUyNTYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelV5TlRZdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - - - + "x-ms-version": [ + "2014-04-01-preview" + ], "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"e87194e5-e85f-49ac-a30a-9f208cb9050a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-17T18:39:20.4685654-07:00\"\r\n}", + "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "132" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "0" ], "Expires": [ "-1" @@ -3111,1562 +3018,39 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31979" ], "x-ms-request-id": [ - "64f35749-91a9-4943-9d2a-7539495f9887" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31945" - ], - "x-ms-correlation-request-id": [ - "eeba5334-d549-4755-811e-a52d797ffd2a" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150418T015508Z:eeba5334-d549-4755-811e-a52d797ffd2a" - ], - "Date": [ - "Sat, 18 Apr 2015 01:55:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/westus/operations/e87194e5-e85f-49ac-a30a-9f208cb9050a?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTg3MTk0ZTUtZTg1Zi00OWFjLWEzMGEtOWYyMDhjYjkwNTBhP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - - - - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"operationId\": \"e87194e5-e85f-49ac-a30a-9f208cb9050a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-17T18:39:20.4685654-07:00\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "132" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "4b491aa7-98e6-4ca3-95d0-b32cf009aafd" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31944" - ], - "x-ms-correlation-request-id": [ - "46416ae3-2104-4882-a21d-da3bcd0482f0" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150418T015538Z:46416ae3-2104-4882-a21d-da3bcd0482f0" - ], - "Date": [ - "Sat, 18 Apr 2015 01:55:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/westus/operations/e87194e5-e85f-49ac-a30a-9f208cb9050a?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTg3MTk0ZTUtZTg1Zi00OWFjLWEzMGEtOWYyMDhjYjkwNTBhP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - - - - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"operationId\": \"e87194e5-e85f-49ac-a30a-9f208cb9050a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-17T18:39:20.4685654-07:00\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "132" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "21dda194-67af-4c33-a9a1-39785a74b7c5" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31943" - ], - "x-ms-correlation-request-id": [ - "451c61c0-f3f0-48bf-8541-a9a4dd664014" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150418T015608Z:451c61c0-f3f0-48bf-8541-a9a4dd664014" - ], - "Date": [ - "Sat, 18 Apr 2015 01:56:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/westus/operations/e87194e5-e85f-49ac-a30a-9f208cb9050a?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTg3MTk0ZTUtZTg1Zi00OWFjLWEzMGEtOWYyMDhjYjkwNTBhP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - - - - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"operationId\": \"e87194e5-e85f-49ac-a30a-9f208cb9050a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-17T18:39:20.4685654-07:00\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "132" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "bb8eb827-4a4f-4d2f-bc3e-2ded7c771082" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31942" - ], - "x-ms-correlation-request-id": [ - "357f6e83-1daa-49b5-ab67-b4ea3f02b4af" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150418T015638Z:357f6e83-1daa-49b5-ab67-b4ea3f02b4af" - ], - "Date": [ - "Sat, 18 Apr 2015 01:56:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/westus/operations/e87194e5-e85f-49ac-a30a-9f208cb9050a?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTg3MTk0ZTUtZTg1Zi00OWFjLWEzMGEtOWYyMDhjYjkwNTBhP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - - - - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"operationId\": \"e87194e5-e85f-49ac-a30a-9f208cb9050a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-17T18:39:20.4685654-07:00\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "132" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "55d54233-8f1d-42f2-9029-93582e143f26" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31941" - ], - "x-ms-correlation-request-id": [ - "0ad5722f-4fd4-461d-829f-cb5b3669e60a" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150418T015708Z:0ad5722f-4fd4-461d-829f-cb5b3669e60a" - ], - "Date": [ - "Sat, 18 Apr 2015 01:57:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/westus/operations/e87194e5-e85f-49ac-a30a-9f208cb9050a?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTg3MTk0ZTUtZTg1Zi00OWFjLWEzMGEtOWYyMDhjYjkwNTBhP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - - - - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"operationId\": \"e87194e5-e85f-49ac-a30a-9f208cb9050a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-17T18:39:20.4685654-07:00\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "132" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "feeae8af-e870-4811-bd70-be054d609fca" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31940" - ], - "x-ms-correlation-request-id": [ - "68764d5a-78c2-4772-bdf9-34e92c49fe49" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150418T015738Z:68764d5a-78c2-4772-bdf9-34e92c49fe49" - ], - "Date": [ - "Sat, 18 Apr 2015 01:57:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/westus/operations/e87194e5-e85f-49ac-a30a-9f208cb9050a?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTg3MTk0ZTUtZTg1Zi00OWFjLWEzMGEtOWYyMDhjYjkwNTBhP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - - - - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"operationId\": \"e87194e5-e85f-49ac-a30a-9f208cb9050a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-17T18:39:20.4685654-07:00\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "132" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "fb51b151-0c83-49e3-92d8-6409582aca7a" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31939" - ], - "x-ms-correlation-request-id": [ - "a2b1439b-613c-4559-ba25-68472a124301" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150418T015808Z:a2b1439b-613c-4559-ba25-68472a124301" - ], - "Date": [ - "Sat, 18 Apr 2015 01:58:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/westus/operations/e87194e5-e85f-49ac-a30a-9f208cb9050a?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTg3MTk0ZTUtZTg1Zi00OWFjLWEzMGEtOWYyMDhjYjkwNTBhP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - - - - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"operationId\": \"e87194e5-e85f-49ac-a30a-9f208cb9050a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-17T18:39:20.4685654-07:00\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "132" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "eb0dcbc3-f5c1-4f40-88b1-3c152c8a263b" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31938" - ], - "x-ms-correlation-request-id": [ - "e037c480-3f39-4bdd-a17e-a4d4a0e7eff5" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150418T015839Z:e037c480-3f39-4bdd-a17e-a4d4a0e7eff5" - ], - "Date": [ - "Sat, 18 Apr 2015 01:58:38 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/westus/operations/e87194e5-e85f-49ac-a30a-9f208cb9050a?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTg3MTk0ZTUtZTg1Zi00OWFjLWEzMGEtOWYyMDhjYjkwNTBhP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - - - - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"operationId\": \"e87194e5-e85f-49ac-a30a-9f208cb9050a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-17T18:39:20.4685654-07:00\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "132" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "861a70b3-82eb-42e5-95a6-81c16eb0e319" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31937" - ], - "x-ms-correlation-request-id": [ - "4518f1ea-9136-41bd-8496-f27655ee763d" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150418T015909Z:4518f1ea-9136-41bd-8496-f27655ee763d" - ], - "Date": [ - "Sat, 18 Apr 2015 01:59:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/westus/operations/e87194e5-e85f-49ac-a30a-9f208cb9050a?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTg3MTk0ZTUtZTg1Zi00OWFjLWEzMGEtOWYyMDhjYjkwNTBhP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - - - - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"operationId\": \"e87194e5-e85f-49ac-a30a-9f208cb9050a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-17T18:39:20.4685654-07:00\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "132" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "0c7156d9-90da-45bc-ba7e-94c2baeeca91" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31936" - ], - "x-ms-correlation-request-id": [ - "57127622-4cf5-44c3-b793-a60fb9d49640" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150418T015939Z:57127622-4cf5-44c3-b793-a60fb9d49640" - ], - "Date": [ - "Sat, 18 Apr 2015 01:59:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/westus/operations/e87194e5-e85f-49ac-a30a-9f208cb9050a?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTg3MTk0ZTUtZTg1Zi00OWFjLWEzMGEtOWYyMDhjYjkwNTBhP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - - - - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"operationId\": \"e87194e5-e85f-49ac-a30a-9f208cb9050a\",\r\n \"status\": \"Failed\",\r\n \"startTime\": \"2015-04-17T18:39:20.4685654-07:00\",\r\n \"endTime\": \"2015-04-17T18:59:51.3236431-07:00\",\r\n \"error\": {\r\n \"code\": \"InternalExecutionError\",\r\n \"message\": \"An internal execution error occurred.\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "294" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "78dd0fc3-c819-4970-9074-b988bf0e27aa" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31935" - ], - "x-ms-correlation-request-id": [ - "fc77673a-46ba-4dab-afdd-65f5bde8a876" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150418T020009Z:fc77673a-46ba-4dab-afdd-65f5bde8a876" - ], - "Date": [ - "Sat, 18 Apr 2015 02:00:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4897/providers/Microsoft.Compute/virtualMachines/vmpstestrg4897?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNDg5Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtcHN0ZXN0cmc0ODk3P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"sourceImage\": {\r\n \"id\": \"/9532a63e-f2eb-4649-bb23-5ed01077ce80/services/images/a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-Datacenter-201503.01-en.us-127GB.vhd\"\r\n },\r\n \"destinationVhdsContainer\": \"https://stopstestrg4897.blob.core.windows.net/test\",\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"vmpstestrg4897-os-20150418-013933-984184\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg4897.blob.core.windows.net/test/vmpstestrg4897-os-20150418-013933-984184.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"testDataDisk1\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg4897.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\"\r\n },\r\n {\r\n \"lun\": 1,\r\n \"diskSizeGB\": 11,\r\n \"name\": \"testDataDisk2\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg4897.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\"\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {\r\n \"primary\": false\r\n },\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4897/providers/Microsoft.Network/networkInterfaces/nic1pstestrg4897\"\r\n },\r\n {\r\n \"properties\": {\r\n \"primary\": true\r\n },\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4897/providers/Microsoft.Network/networkInterfaces/nic2pstestrg4897\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"failed\"\r\n },\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4897/providers/Microsoft.Compute/virtualMachines/vmpstestrg4897\",\r\n \"name\": \"vmpstestrg4897\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "2204" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "281ca807-84a7-456f-a25f-7d615a6d664f" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31934" - ], - "x-ms-correlation-request-id": [ - "fb286a71-332b-4967-9604-a25574049ebb" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150418T020009Z:fb286a71-332b-4967-9604-a25574049ebb" - ], - "Date": [ - "Sat, 18 Apr 2015 02:00:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4897/providers/Microsoft.Compute/virtualMachines/vmpstestrg4897?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNDg5Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtcHN0ZXN0cmc0ODk3P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/westus/operations/7d6cffa5-79cc-46a4-a3c5-763327154193?api-version=2015-05-01-preview" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "7d6cffa5-79cc-46a4-a3c5-763327154193" - ], - "Cache-Control": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/westus/operations/7d6cffa5-79cc-46a4-a3c5-763327154193?monitor=true&api-version=2015-05-01-preview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" - ], - "x-ms-correlation-request-id": [ - "78d8f53b-7c71-4022-9df5-48ed38f9f920" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150418T020010Z:78d8f53b-7c71-4022-9df5-48ed38f9f920" - ], - "Date": [ - "Sat, 18 Apr 2015 02:00:09 GMT" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/westus/operations/7d6cffa5-79cc-46a4-a3c5-763327154193?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2Q2Y2ZmYTUtNzljYy00NmE0LWEzYzUtNzYzMzI3MTU0MTkzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - - - - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"operationId\": \"7d6cffa5-79cc-46a4-a3c5-763327154193\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-17T19:00:11.1204976-07:00\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "132" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "32c7cdc9-7312-40f0-aadf-e3f90666fe99" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31933" - ], - "x-ms-correlation-request-id": [ - "3bf06bea-e553-450f-b4b2-c2e882f2290f" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150418T020010Z:3bf06bea-e553-450f-b4b2-c2e882f2290f" - ], - "Date": [ - "Sat, 18 Apr 2015 02:00:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/westus/operations/7d6cffa5-79cc-46a4-a3c5-763327154193?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2Q2Y2ZmYTUtNzljYy00NmE0LWEzYzUtNzYzMzI3MTU0MTkzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - - - - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"operationId\": \"7d6cffa5-79cc-46a4-a3c5-763327154193\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-17T19:00:11.1204976-07:00\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "132" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "f763514b-e55a-4173-91f0-855e2af955e8" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31932" - ], - "x-ms-correlation-request-id": [ - "102e6cd4-1f92-4559-b2ea-f53c4c13f0da" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150418T020040Z:102e6cd4-1f92-4559-b2ea-f53c4c13f0da" - ], - "Date": [ - "Sat, 18 Apr 2015 02:00:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/westus/operations/7d6cffa5-79cc-46a4-a3c5-763327154193?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2Q2Y2ZmYTUtNzljYy00NmE0LWEzYzUtNzYzMzI3MTU0MTkzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - - - - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"operationId\": \"7d6cffa5-79cc-46a4-a3c5-763327154193\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-17T19:00:11.1204976-07:00\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "132" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "95459675-526a-4286-9a0e-ccae9d0c0d42" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31931" - ], - "x-ms-correlation-request-id": [ - "a781b7c9-541d-420a-aa3c-a69c2d8f00ca" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150418T020110Z:a781b7c9-541d-420a-aa3c-a69c2d8f00ca" - ], - "Date": [ - "Sat, 18 Apr 2015 02:01:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/westus/operations/7d6cffa5-79cc-46a4-a3c5-763327154193?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2Q2Y2ZmYTUtNzljYy00NmE0LWEzYzUtNzYzMzI3MTU0MTkzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - - - - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"operationId\": \"7d6cffa5-79cc-46a4-a3c5-763327154193\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-17T19:00:11.1204976-07:00\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "132" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "69a68a28-bfd4-4927-ba9e-d1f0d42cf7f5" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31930" - ], - "x-ms-correlation-request-id": [ - "d25a80c8-c9c2-4cdb-9fa0-ae11d07856c4" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150418T020141Z:d25a80c8-c9c2-4cdb-9fa0-ae11d07856c4" - ], - "Date": [ - "Sat, 18 Apr 2015 02:01:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/westus/operations/7d6cffa5-79cc-46a4-a3c5-763327154193?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2Q2Y2ZmYTUtNzljYy00NmE0LWEzYzUtNzYzMzI3MTU0MTkzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - - - - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"operationId\": \"7d6cffa5-79cc-46a4-a3c5-763327154193\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-17T19:00:11.1204976-07:00\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "132" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "09762475-222b-4825-8c38-f086ff9f28f8" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31929" - ], - "x-ms-correlation-request-id": [ - "8cbcc0ba-5c71-4ee4-ad91-73c018bac225" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150418T020211Z:8cbcc0ba-5c71-4ee4-ad91-73c018bac225" - ], - "Date": [ - "Sat, 18 Apr 2015 02:02:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/westus/operations/7d6cffa5-79cc-46a4-a3c5-763327154193?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2Q2Y2ZmYTUtNzljYy00NmE0LWEzYzUtNzYzMzI3MTU0MTkzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - - - - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"operationId\": \"7d6cffa5-79cc-46a4-a3c5-763327154193\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-17T19:00:11.1204976-07:00\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "132" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "010f101d-33e5-4dfd-959a-196059d7100e" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31928" - ], - "x-ms-correlation-request-id": [ - "efd856d1-b590-4a45-a033-cf8900879c0e" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150418T020241Z:efd856d1-b590-4a45-a033-cf8900879c0e" - ], - "Date": [ - "Sat, 18 Apr 2015 02:02:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/westus/operations/7d6cffa5-79cc-46a4-a3c5-763327154193?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2Q2Y2ZmYTUtNzljYy00NmE0LWEzYzUtNzYzMzI3MTU0MTkzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - - - - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"operationId\": \"7d6cffa5-79cc-46a4-a3c5-763327154193\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-04-17T19:00:11.1204976-07:00\",\r\n \"endTime\": \"2015-04-17T19:02:53.7292946-07:00\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "182" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "e4c30eca-0683-48cc-892b-cd5a84245071" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31927" - ], - "x-ms-correlation-request-id": [ - "e5df30a3-3d86-4ceb-acec-3ec835ceacb3" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150418T020311Z:e5df30a3-3d86-4ceb-acec-3ec835ceacb3" - ], - "Date": [ - "Sat, 18 Apr 2015 02:03:10 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourcegroups/pstestrg4897?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNDg5Nz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" - ], - "x-ms-request-id": [ - "bf10da4a-93a9-4742-bf23-8e43d6e1d274" - ], - "x-ms-correlation-request-id": [ - "bf10da4a-93a9-4742-bf23-8e43d6e1d274" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150418T020312Z:bf10da4a-93a9-4742-bf23-8e43d6e1d274" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sat, 18 Apr 2015 02:03:11 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQ4OTctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQ4OTctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelE0T1RjdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31993" - ], - "x-ms-request-id": [ - "42348f87-af7d-4716-8acd-e3041b4b1f19" - ], - "x-ms-correlation-request-id": [ - "42348f87-af7d-4716-8acd-e3041b4b1f19" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150418T020312Z:42348f87-af7d-4716-8acd-e3041b4b1f19" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sat, 18 Apr 2015 02:03:11 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQ4OTctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQ4OTctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelE0T1RjdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31992" - ], - "x-ms-request-id": [ - "8011fe50-bbb5-4f28-a50a-e66fe6c5b9d1" - ], - "x-ms-correlation-request-id": [ - "8011fe50-bbb5-4f28-a50a-e66fe6c5b9d1" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150418T020327Z:8011fe50-bbb5-4f28-a50a-e66fe6c5b9d1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sat, 18 Apr 2015 02:03:26 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQ4OTctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQ4OTctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelE0T1RjdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31991" - ], - "x-ms-request-id": [ - "cad1179e-e44d-445f-9313-0256f912ef9b" - ], - "x-ms-correlation-request-id": [ - "cad1179e-e44d-445f-9313-0256f912ef9b" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150418T020342Z:cad1179e-e44d-445f-9313-0256f912ef9b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sat, 18 Apr 2015 02:03:41 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQ4OTctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQ4OTctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelE0T1RjdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31990" - ], - "x-ms-request-id": [ - "53f6ff56-4596-45d7-9117-28bd178fae18" - ], - "x-ms-correlation-request-id": [ - "53f6ff56-4596-45d7-9117-28bd178fae18" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150418T020357Z:53f6ff56-4596-45d7-9117-28bd178fae18" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sat, 18 Apr 2015 02:03:56 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQ4OTctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQ4OTctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelE0T1RjdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31989" - ], - "x-ms-request-id": [ - "e797dc42-9669-46a3-a2cc-275facb405db" - ], - "x-ms-correlation-request-id": [ - "e797dc42-9669-46a3-a2cc-275facb405db" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150418T020412Z:e797dc42-9669-46a3-a2cc-275facb405db" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sat, 18 Apr 2015 02:04:12 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQ4OTctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQ4OTctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelE0T1RjdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31988" - ], - "x-ms-request-id": [ - "7f745a80-25e1-4d66-b1a0-dbb7df4b101f" - ], - "x-ms-correlation-request-id": [ - "7f745a80-25e1-4d66-b1a0-dbb7df4b101f" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150418T020427Z:7f745a80-25e1-4d66-b1a0-dbb7df4b101f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sat, 18 Apr 2015 02:04:27 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQ4OTctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQ4OTctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelE0T1RjdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31987" - ], - "x-ms-request-id": [ - "6d37c373-ca6a-4c32-93a0-bd481a597a2f" - ], - "x-ms-correlation-request-id": [ - "6d37c373-ca6a-4c32-93a0-bd481a597a2f" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150418T020442Z:6d37c373-ca6a-4c32-93a0-bd481a597a2f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sat, 18 Apr 2015 02:04:41 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQ4OTctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQ4OTctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelE0T1RjdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31986" - ], - "x-ms-request-id": [ - "6b91a1fc-501e-4d25-ade2-55964777fc6a" - ], - "x-ms-correlation-request-id": [ - "6b91a1fc-501e-4d25-ade2-55964777fc6a" - ], - "x-ms-routing-request-id": [ - "WESTUS:20150418T020457Z:6b91a1fc-501e-4d25-ade2-55964777fc6a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "ee690c60-3fca-4eb2-a83c-81e668533196" + ], + "x-ms-correlation-request-id": [ + "ee690c60-3fca-4eb2-a83c-81e668533196" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150424T161908Z:ee690c60-3fca-4eb2-a83c-81e668533196" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Sat, 18 Apr 2015 02:04:57 GMT" + "Fri, 24 Apr 2015 16:19:08 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQ4OTctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzUyNTYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQ4OTctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelE0T1RjdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzUyNTYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelV5TlRZdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4692,16 +3076,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31985" + "31978" ], "x-ms-request-id": [ - "dfee2c88-7177-46b2-a76e-43a2a89b1ae4" + "7e4e0a49-7a17-42fb-b489-3619f5a52bfc" ], "x-ms-correlation-request-id": [ - "dfee2c88-7177-46b2-a76e-43a2a89b1ae4" + "7e4e0a49-7a17-42fb-b489-3619f5a52bfc" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T020512Z:dfee2c88-7177-46b2-a76e-43a2a89b1ae4" + "NORTHCENTRALUS:20150424T161923Z:7e4e0a49-7a17-42fb-b489-3619f5a52bfc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4710,17 +3094,17 @@ "no-cache" ], "Date": [ - "Sat, 18 Apr 2015 02:05:12 GMT" + "Fri, 24 Apr 2015 16:19:23 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQ4OTctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzUyNTYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQ4OTctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelE0T1RjdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzUyNTYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelV5TlRZdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4746,16 +3130,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31984" + "31977" ], "x-ms-request-id": [ - "a14ad721-3bab-4401-b88c-885417f2f81b" + "934a8959-71b3-441c-b42e-1bbd9ce4653b" ], "x-ms-correlation-request-id": [ - "a14ad721-3bab-4401-b88c-885417f2f81b" + "934a8959-71b3-441c-b42e-1bbd9ce4653b" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T020527Z:a14ad721-3bab-4401-b88c-885417f2f81b" + "NORTHCENTRALUS:20150424T161939Z:934a8959-71b3-441c-b42e-1bbd9ce4653b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4764,17 +3148,17 @@ "no-cache" ], "Date": [ - "Sat, 18 Apr 2015 02:05:27 GMT" + "Fri, 24 Apr 2015 16:19:38 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQ4OTctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzUyNTYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQ4OTctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelE0T1RjdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzUyNTYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelV5TlRZdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4800,16 +3184,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31983" + "31976" ], "x-ms-request-id": [ - "3e931cec-0914-4334-b503-ee83fd411a51" + "deb77272-7e57-443b-9adc-a9a33d45489d" ], "x-ms-correlation-request-id": [ - "3e931cec-0914-4334-b503-ee83fd411a51" + "deb77272-7e57-443b-9adc-a9a33d45489d" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T020543Z:3e931cec-0914-4334-b503-ee83fd411a51" + "NORTHCENTRALUS:20150424T161955Z:deb77272-7e57-443b-9adc-a9a33d45489d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4818,17 +3202,17 @@ "no-cache" ], "Date": [ - "Sat, 18 Apr 2015 02:05:42 GMT" + "Fri, 24 Apr 2015 16:19:54 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQ4OTctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzUyNTYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQ4OTctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelE0T1RjdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzUyNTYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelV5TlRZdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4851,16 +3235,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31982" + "31975" ], "x-ms-request-id": [ - "817e99e1-a204-4366-9391-51e22dd8c077" + "e051dc9c-2711-47ba-9bb0-c6fef9ae1c3b" ], "x-ms-correlation-request-id": [ - "817e99e1-a204-4366-9391-51e22dd8c077" + "e051dc9c-2711-47ba-9bb0-c6fef9ae1c3b" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T020558Z:817e99e1-a204-4366-9391-51e22dd8c077" + "NORTHCENTRALUS:20150424T162010Z:e051dc9c-2711-47ba-9bb0-c6fef9ae1c3b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4869,7 +3253,7 @@ "no-cache" ], "Date": [ - "Sat, 18 Apr 2015 02:05:57 GMT" + "Fri, 24 Apr 2015 16:20:10 GMT" ] }, "StatusCode": 200 @@ -4877,7 +3261,7 @@ ], "Names": { "Test-MultipleNetworkInterface": [ - "pstestrg4897" + "pstestrg5256" ] }, "Variables": { @@ -4885,4 +3269,4 @@ "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", "Domain": "microsoft.com" } -} +} \ No newline at end of file diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineNetworkInterfaceTests/TestVirtualMachineSingleNetworkInterface.json b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineNetworkInterfaceTests/TestVirtualMachineSingleNetworkInterface.json index b5ac9fd4fe42..3ab2cce82088 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineNetworkInterfaceTests/TestVirtualMachineSingleNetworkInterface.json +++ b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineNetworkInterfaceTests/TestVirtualMachineSingleNetworkInterface.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourcegroups/pstestrg5600?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNTYwMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourcegroups/pstestrg4902?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNDkwMj9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -28,16 +28,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31998" + "31999" ], "x-ms-request-id": [ - "393d624a-7b4a-4f7f-b983-7d0e4357302e" + "3f81461f-ae09-4b36-ba00-2cb8a9866be2" ], "x-ms-correlation-request-id": [ - "393d624a-7b4a-4f7f-b983-7d0e4357302e" + "3f81461f-ae09-4b36-ba00-2cb8a9866be2" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T012351Z:393d624a-7b4a-4f7f-b983-7d0e4357302e" + "NORTHCENTRALUS:20150424T062859Z:3f81461f-ae09-4b36-ba00-2cb8a9866be2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,14 +46,14 @@ "no-cache" ], "Date": [ - "Sat, 18 Apr 2015 01:23:51 GMT" + "Fri, 24 Apr 2015 06:28:59 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourcegroups/pstestrg5600?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNTYwMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourcegroups/pstestrg4902?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNDkwMj9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31986" + "31997" ], "x-ms-request-id": [ - "d3233832-c8be-4189-8b2a-65b404d6216d" + "e94d9aea-91d5-4dc2-9004-b2c4ca6044ee" ], "x-ms-correlation-request-id": [ - "d3233832-c8be-4189-8b2a-65b404d6216d" + "e94d9aea-91d5-4dc2-9004-b2c4ca6044ee" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T013430Z:d3233832-c8be-4189-8b2a-65b404d6216d" + "NORTHCENTRALUS:20150424T064108Z:e94d9aea-91d5-4dc2-9004-b2c4ca6044ee" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,31 +91,31 @@ "no-cache" ], "Date": [ - "Sat, 18 Apr 2015 01:34:29 GMT" + "Fri, 24 Apr 2015 06:41:07 GMT" ] }, "StatusCode": 204 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourcegroups/pstestrg5600?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNTYwMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourcegroups/pstestrg4902?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNDkwMj9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestBody": "{\r\n \"location\": \"eastasia\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "29" + "30" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5600\",\r\n \"name\": \"pstestrg5600\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4902\",\r\n \"name\": \"pstestrg4902\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "177" + "179" ], "Content-Type": [ "application/json; charset=utf-8" @@ -127,16 +127,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-request-id": [ - "e4c3b285-cf21-4d27-a3dc-6b6e1acbf0f2" + "1575d672-d5ff-48af-b000-76a5b9c3ed44" ], "x-ms-correlation-request-id": [ - "e4c3b285-cf21-4d27-a3dc-6b6e1acbf0f2" + "1575d672-d5ff-48af-b000-76a5b9c3ed44" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T012351Z:e4c3b285-cf21-4d27-a3dc-6b6e1acbf0f2" + "NORTHCENTRALUS:20150424T062903Z:1575d672-d5ff-48af-b000-76a5b9c3ed44" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -145,14 +145,14 @@ "no-cache" ], "Date": [ - "Sat, 18 Apr 2015 01:23:51 GMT" + "Fri, 24 Apr 2015 06:29:02 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5600/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTYwMC9yZXNvdXJjZXM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4902/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNDkwMi9yZXNvdXJjZXM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -175,16 +175,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31997" + "31998" ], "x-ms-request-id": [ - "c0e83f63-766d-49dd-ad7e-503e1d44965c" + "a74a9c61-ac8b-42c4-9e6f-9cec65531d8a" ], "x-ms-correlation-request-id": [ - "c0e83f63-766d-49dd-ad7e-503e1d44965c" + "a74a9c61-ac8b-42c4-9e6f-9cec65531d8a" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T012351Z:c0e83f63-766d-49dd-ad7e-503e1d44965c" + "NORTHCENTRALUS:20150424T062903Z:a74a9c61-ac8b-42c4-9e6f-9cec65531d8a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -193,14 +193,14 @@ "no-cache" ], "Date": [ - "Sat, 18 Apr 2015 01:23:51 GMT" + "Fri, 24 Apr 2015 06:29:03 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourcegroups/pstestrg5600/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNTYwMC9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcGVybWlzc2lvbnM/YXBpLXZlcnNpb249MjAxNC0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourcegroups/pstestrg4902/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNDkwMi9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcGVybWlzc2lvbnM/YXBpLXZlcnNpb249MjAxNC0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -226,16 +226,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:56817f4c-de02-4c4d-baec-61af04ad8565" + "northcentralus:9ab24387-267b-408e-9ae8-43fbbd3a367a" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31979" + "31983" ], "x-ms-correlation-request-id": [ - "1db603a9-a6a6-432c-9f30-3dcbf98a260e" + "2c1a90aa-7718-4de3-ad51-ade29f72ebb4" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T012352Z:1db603a9-a6a6-432c-9f30-3dcbf98a260e" + "NORTHCENTRALUS:20150424T062904Z:2c1a90aa-7718-4de3-ad51-ade29f72ebb4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -244,14 +244,14 @@ "no-cache" ], "Date": [ - "Sat, 18 Apr 2015 01:23:51 GMT" + "Fri, 24 Apr 2015 06:29:04 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5600/providers/Microsoft.Network/virtualnetworks/vnetpstestrg5600?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTYwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzU2MDA/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4902/providers/Microsoft.Network/virtualnetworks/vnetpstestrg4902?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNDkwMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzQ5MDI/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -277,13 +277,13 @@ "gateway" ], "x-ms-request-id": [ - "2bd947f3-d616-4444-a703-e8b4b501ba7d" + "71cb059e-1d17-4d4c-bf14-99a24393efd3" ], "x-ms-correlation-request-id": [ - "2bd947f3-d616-4444-a703-e8b4b501ba7d" + "71cb059e-1d17-4d4c-bf14-99a24393efd3" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T012352Z:2bd947f3-d616-4444-a703-e8b4b501ba7d" + "NORTHCENTRALUS:20150424T062906Z:71cb059e-1d17-4d4c-bf14-99a24393efd3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -292,14 +292,14 @@ "no-cache" ], "Date": [ - "Sat, 18 Apr 2015 01:23:52 GMT" + "Fri, 24 Apr 2015 06:29:06 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5600/providers/Microsoft.Network/virtualnetworks/vnetpstestrg5600?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTYwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzU2MDA/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4902/providers/Microsoft.Network/virtualnetworks/vnetpstestrg4902?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNDkwMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzQ5MDI/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -307,10 +307,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetpstestrg5600\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5600/providers/Microsoft.Network/virtualNetworks/vnetpstestrg5600\",\r\n \"etag\": \"W/\\\"99a24231-75fc-4ac1-8029-668de74479b9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\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 \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg5600\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5600/providers/Microsoft.Network/virtualNetworks/vnetpstestrg5600/subnets/subnetpstestrg5600\",\r\n \"etag\": \"W/\\\"99a24231-75fc-4ac1-8029-668de74479b9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"vnetpstestrg4902\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4902/providers/Microsoft.Network/virtualNetworks/vnetpstestrg4902\",\r\n \"etag\": \"W/\\\"e0a823a9-5533-407f-94bb-3f0dfb2ddffb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\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 \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg4902\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4902/providers/Microsoft.Network/virtualNetworks/vnetpstestrg4902/subnets/subnetpstestrg4902\",\r\n \"etag\": \"W/\\\"e0a823a9-5533-407f-94bb-3f0dfb2ddffb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"eastasia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "961" + "962" ], "Content-Type": [ "application/json; charset=utf-8" @@ -322,7 +322,7 @@ "no-cache" ], "x-ms-request-id": [ - "9352ad87-aa43-4275-ac69-29a19e8a2bf2" + "fb565649-5f2e-45d5-96e2-06e9b81d00fa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -331,7 +331,7 @@ "no-cache" ], "ETag": [ - "W/\"99a24231-75fc-4ac1-8029-668de74479b9\"" + "W/\"e0a823a9-5533-407f-94bb-3f0dfb2ddffb\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -341,20 +341,20 @@ "31997" ], "x-ms-correlation-request-id": [ - "e76472f8-fe2c-43c7-8abb-e8b7577fc4a9" + "9148c0b0-179b-443a-923d-0cc5707d0be4" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T012353Z:e76472f8-fe2c-43c7-8abb-e8b7577fc4a9" + "NORTHCENTRALUS:20150424T062917Z:9148c0b0-179b-443a-923d-0cc5707d0be4" ], "Date": [ - "Sat, 18 Apr 2015 01:23:53 GMT" + "Fri, 24 Apr 2015 06:29:16 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5600/providers/Microsoft.Network/virtualnetworks/vnetpstestrg5600?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTYwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzU2MDA/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4902/providers/Microsoft.Network/virtualnetworks/vnetpstestrg4902?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNDkwMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzQ5MDI/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,10 +362,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetpstestrg5600\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5600/providers/Microsoft.Network/virtualNetworks/vnetpstestrg5600\",\r\n \"etag\": \"W/\\\"99a24231-75fc-4ac1-8029-668de74479b9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\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 \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg5600\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5600/providers/Microsoft.Network/virtualNetworks/vnetpstestrg5600/subnets/subnetpstestrg5600\",\r\n \"etag\": \"W/\\\"99a24231-75fc-4ac1-8029-668de74479b9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"vnetpstestrg4902\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4902/providers/Microsoft.Network/virtualNetworks/vnetpstestrg4902\",\r\n \"etag\": \"W/\\\"e0a823a9-5533-407f-94bb-3f0dfb2ddffb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\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 \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg4902\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4902/providers/Microsoft.Network/virtualNetworks/vnetpstestrg4902/subnets/subnetpstestrg4902\",\r\n \"etag\": \"W/\\\"e0a823a9-5533-407f-94bb-3f0dfb2ddffb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"eastasia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "961" + "962" ], "Content-Type": [ "application/json; charset=utf-8" @@ -377,7 +377,7 @@ "no-cache" ], "x-ms-request-id": [ - "76b97733-98c9-4e07-983e-19d9dcbad7f2" + "8ae1ed0c-f11c-4247-acac-baffed520d38" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -386,7 +386,7 @@ "no-cache" ], "ETag": [ - "W/\"99a24231-75fc-4ac1-8029-668de74479b9\"" + "W/\"e0a823a9-5533-407f-94bb-3f0dfb2ddffb\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -396,37 +396,37 @@ "31996" ], "x-ms-correlation-request-id": [ - "a28ff109-d4db-4d61-95e8-aa0a05ee31b7" + "eb99d8b3-e5a1-4471-a3e0-8f01cf8f1cdd" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T012353Z:a28ff109-d4db-4d61-95e8-aa0a05ee31b7" + "NORTHCENTRALUS:20150424T062917Z:eb99d8b3-e5a1-4471-a3e0-8f01cf8f1cdd" ], "Date": [ - "Sat, 18 Apr 2015 01:23:53 GMT" + "Fri, 24 Apr 2015 06:29:16 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5600/providers/Microsoft.Network/virtualnetworks/vnetpstestrg5600?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTYwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzU2MDA/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4902/providers/Microsoft.Network/virtualnetworks/vnetpstestrg4902?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNDkwMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzQ5MDI/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "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 \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": []\r\n },\r\n \"name\": \"subnetpstestrg5600\"\r\n }\r\n ]\r\n },\r\n \"name\": \"vnetpstestrg5600\",\r\n \"type\": \"microsoft.network/virtualNetworks\",\r\n \"location\": \"West US\"\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 \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": []\r\n },\r\n \"name\": \"subnetpstestrg4902\"\r\n }\r\n ]\r\n },\r\n \"name\": \"vnetpstestrg4902\",\r\n \"type\": \"microsoft.network/virtualNetworks\",\r\n \"location\": \"eastasia\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "501" + "502" ], "User-Agent": [ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetpstestrg5600\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5600/providers/Microsoft.Network/virtualNetworks/vnetpstestrg5600\",\r\n \"etag\": \"W/\\\"fae574fb-4e0a-4507-a4a7-d04fe0af8c32\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\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 \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg5600\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5600/providers/Microsoft.Network/virtualNetworks/vnetpstestrg5600/subnets/subnetpstestrg5600\",\r\n \"etag\": \"W/\\\"fae574fb-4e0a-4507-a4a7-d04fe0af8c32\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"vnetpstestrg4902\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4902/providers/Microsoft.Network/virtualNetworks/vnetpstestrg4902\",\r\n \"etag\": \"W/\\\"30b11ab9-9fce-4490-8272-094ba2492e4b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\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 \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg4902\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4902/providers/Microsoft.Network/virtualNetworks/vnetpstestrg4902/subnets/subnetpstestrg4902\",\r\n \"etag\": \"W/\\\"30b11ab9-9fce-4490-8272-094ba2492e4b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"eastasia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "959" + "960" ], "Content-Type": [ "application/json; charset=utf-8" @@ -441,10 +441,10 @@ "10" ], "x-ms-request-id": [ - "7808b3c8-d3a2-407b-bb16-9723761eeb54" + "11bbd71a-9420-445f-81e0-4fd836c52735" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/7808b3c8-d3a2-407b-bb16-9723761eeb54?api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/eastasia/operations/11bbd71a-9420-445f-81e0-4fd836c52735?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -460,20 +460,20 @@ "1199" ], "x-ms-correlation-request-id": [ - "774c5c46-6fbb-4b03-9a91-068b083814a4" + "9797af09-88e4-40b4-8edd-e9670f303de3" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T012353Z:774c5c46-6fbb-4b03-9a91-068b083814a4" + "NORTHCENTRALUS:20150424T062915Z:9797af09-88e4-40b4-8edd-e9670f303de3" ], "Date": [ - "Sat, 18 Apr 2015 01:23:52 GMT" + "Fri, 24 Apr 2015 06:29:15 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/7808b3c8-d3a2-407b-bb16-9723761eeb54?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzgwOGIzYzgtZDNhMi00MDdiLWJiMTYtOTcyMzc2MWVlYjU0P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/eastasia/operations/11bbd71a-9420-445f-81e0-4fd836c52735?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy8xMWJiZDcxYS05NDIwLTQ0NWYtODFlMC00ZmQ4MzZjNTI3MzU/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -499,7 +499,7 @@ "no-cache" ], "x-ms-request-id": [ - "1377a1e5-a647-4412-ab21-be40db0890bf" + "7218fe11-0ef1-444f-a205-f5c938abdeb6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -515,20 +515,20 @@ "31998" ], "x-ms-correlation-request-id": [ - "f62d524f-ab05-4c0f-b25a-72a6d081a333" + "583a807e-7fe1-4a40-905a-79428294a487" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T012353Z:f62d524f-ab05-4c0f-b25a-72a6d081a333" + "NORTHCENTRALUS:20150424T062916Z:583a807e-7fe1-4a40-905a-79428294a487" ], "Date": [ - "Sat, 18 Apr 2015 01:23:53 GMT" + "Fri, 24 Apr 2015 06:29:16 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5600/providers/Microsoft.Network/publicIPAddresses/pubippstestrg5600/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTYwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHViaXBwc3Rlc3RyZzU2MDAvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4902/providers/Microsoft.Network/publicIPAddresses/pubippstestrg4902/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNDkwMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHViaXBwc3Rlc3RyZzQ5MDIvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,13 +554,13 @@ "gateway" ], "x-ms-request-id": [ - "48199a04-50bc-4f8c-993e-2537cd0e20f7" + "e51dcd9f-ba37-4776-a976-5d7653c2c749" ], "x-ms-correlation-request-id": [ - "48199a04-50bc-4f8c-993e-2537cd0e20f7" + "e51dcd9f-ba37-4776-a976-5d7653c2c749" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T012353Z:48199a04-50bc-4f8c-993e-2537cd0e20f7" + "NORTHCENTRALUS:20150424T062917Z:e51dcd9f-ba37-4776-a976-5d7653c2c749" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -569,14 +569,14 @@ "no-cache" ], "Date": [ - "Sat, 18 Apr 2015 01:23:53 GMT" + "Fri, 24 Apr 2015 06:29:17 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5600/providers/Microsoft.Network/publicIPAddresses/pubippstestrg5600/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTYwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHViaXBwc3Rlc3RyZzU2MDAvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4902/providers/Microsoft.Network/publicIPAddresses/pubippstestrg4902/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNDkwMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHViaXBwc3Rlc3RyZzQ5MDIvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -584,10 +584,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"pubippstestrg5600\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5600/providers/Microsoft.Network/publicIPAddresses/pubippstestrg5600\",\r\n \"etag\": \"W/\\\"e3db7ab7-724d-43b2-b5ec-5248442b98f4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubippstestrg5600\",\r\n \"fqdn\": \"pubippstestrg5600.westus.cloudapp.azure.com.\"\r\n }\r\n },\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pubippstestrg4902\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4902/providers/Microsoft.Network/publicIPAddresses/pubippstestrg4902\",\r\n \"etag\": \"W/\\\"6a32315f-9fb2-4941-bbcb-55dbd3c3587e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubippstestrg4902\",\r\n \"fqdn\": \"pubippstestrg4902.eastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"eastasia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "552" + "554" ], "Content-Type": [ "application/json; charset=utf-8" @@ -599,7 +599,7 @@ "no-cache" ], "x-ms-request-id": [ - "22836210-a7c8-4fc0-ad04-8037df8ce484" + "798740b8-eabf-48a8-b6af-c8de63073265" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -608,7 +608,7 @@ "no-cache" ], "ETag": [ - "W/\"e3db7ab7-724d-43b2-b5ec-5248442b98f4\"" + "W/\"6a32315f-9fb2-4941-bbcb-55dbd3c3587e\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -618,20 +618,20 @@ "31993" ], "x-ms-correlation-request-id": [ - "dd9b92fb-93a1-4938-8871-cdf1d571b348" + "2dde79ca-aa33-47a0-aa2c-cd5d1ad8287b" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T012354Z:dd9b92fb-93a1-4938-8871-cdf1d571b348" + "NORTHCENTRALUS:20150424T062926Z:2dde79ca-aa33-47a0-aa2c-cd5d1ad8287b" ], "Date": [ - "Sat, 18 Apr 2015 01:23:54 GMT" + "Fri, 24 Apr 2015 06:29:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5600/providers/Microsoft.Network/publicIPAddresses/pubippstestrg5600/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTYwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHViaXBwc3Rlc3RyZzU2MDAvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4902/providers/Microsoft.Network/publicIPAddresses/pubippstestrg4902/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNDkwMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHViaXBwc3Rlc3RyZzQ5MDIvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -639,10 +639,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"pubippstestrg5600\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5600/providers/Microsoft.Network/publicIPAddresses/pubippstestrg5600\",\r\n \"etag\": \"W/\\\"e3db7ab7-724d-43b2-b5ec-5248442b98f4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubippstestrg5600\",\r\n \"fqdn\": \"pubippstestrg5600.westus.cloudapp.azure.com.\"\r\n }\r\n },\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pubippstestrg4902\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4902/providers/Microsoft.Network/publicIPAddresses/pubippstestrg4902\",\r\n \"etag\": \"W/\\\"6a32315f-9fb2-4941-bbcb-55dbd3c3587e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubippstestrg4902\",\r\n \"fqdn\": \"pubippstestrg4902.eastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"eastasia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "552" + "554" ], "Content-Type": [ "application/json; charset=utf-8" @@ -654,7 +654,7 @@ "no-cache" ], "x-ms-request-id": [ - "7e46fd31-82a4-43e7-879d-fd343c05d575" + "699e9955-4894-4025-a229-88165940e1d8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -663,7 +663,7 @@ "no-cache" ], "ETag": [ - "W/\"e3db7ab7-724d-43b2-b5ec-5248442b98f4\"" + "W/\"6a32315f-9fb2-4941-bbcb-55dbd3c3587e\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -673,37 +673,37 @@ "31992" ], "x-ms-correlation-request-id": [ - "c058b219-4977-4120-808b-d8d8c8b329e5" + "0e0a5b67-425b-47a0-8333-3a1616b84952" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T012354Z:c058b219-4977-4120-808b-d8d8c8b329e5" + "NORTHCENTRALUS:20150424T062927Z:0e0a5b67-425b-47a0-8333-3a1616b84952" ], "Date": [ - "Sat, 18 Apr 2015 01:23:54 GMT" + "Fri, 24 Apr 2015 06:29:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5600/providers/Microsoft.Network/publicIPAddresses/pubippstestrg5600/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTYwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHViaXBwc3Rlc3RyZzU2MDAvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4902/providers/Microsoft.Network/publicIPAddresses/pubippstestrg4902/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNDkwMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHViaXBwc3Rlc3RyZzQ5MDIvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubippstestrg5600\"\r\n }\r\n },\r\n \"name\": \"pubippstestrg5600\",\r\n \"type\": \"microsoft.network/publicIPAddresses\",\r\n \"location\": \"West US\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubippstestrg4902\"\r\n }\r\n },\r\n \"name\": \"pubippstestrg4902\",\r\n \"type\": \"microsoft.network/publicIPAddresses\",\r\n \"location\": \"eastasia\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "255" + "256" ], "User-Agent": [ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"pubippstestrg5600\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5600/providers/Microsoft.Network/publicIPAddresses/pubippstestrg5600\",\r\n \"etag\": \"W/\\\"527ca440-0305-4bcb-8628-5b915d632129\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubippstestrg5600\",\r\n \"fqdn\": \"pubippstestrg5600.westus.cloudapp.azure.com.\"\r\n }\r\n },\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pubippstestrg4902\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4902/providers/Microsoft.Network/publicIPAddresses/pubippstestrg4902\",\r\n \"etag\": \"W/\\\"3bf849b5-0211-46fa-a621-0c9d833eafd8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubippstestrg4902\",\r\n \"fqdn\": \"pubippstestrg4902.eastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"eastasia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "551" + "553" ], "Content-Type": [ "application/json; charset=utf-8" @@ -718,10 +718,10 @@ "10" ], "x-ms-request-id": [ - "8622482b-91b3-4930-9519-8a1dec6122fb" + "d9a2a901-3a0d-498b-935b-0432335cfccc" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/8622482b-91b3-4930-9519-8a1dec6122fb?api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/eastasia/operations/d9a2a901-3a0d-498b-935b-0432335cfccc?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -737,20 +737,20 @@ "1198" ], "x-ms-correlation-request-id": [ - "9a892abf-9809-46c4-a33f-7b87262b1738" + "8383fe1c-c37e-4cf7-a731-4f2e468a8714" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T012354Z:9a892abf-9809-46c4-a33f-7b87262b1738" + "NORTHCENTRALUS:20150424T062925Z:8383fe1c-c37e-4cf7-a731-4f2e468a8714" ], "Date": [ - "Sat, 18 Apr 2015 01:23:53 GMT" + "Fri, 24 Apr 2015 06:29:24 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/8622482b-91b3-4930-9519-8a1dec6122fb?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODYyMjQ4MmItOTFiMy00OTMwLTk1MTktOGExZGVjNjEyMmZiP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/eastasia/operations/d9a2a901-3a0d-498b-935b-0432335cfccc?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9kOWEyYTkwMS0zYTBkLTQ5OGItOTM1Yi0wNDMyMzM1Y2ZjY2M/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -776,7 +776,7 @@ "no-cache" ], "x-ms-request-id": [ - "ff6022df-38a4-47df-9afc-8d6e03068eab" + "a7cb0876-b64b-4fbb-bb4a-d86ebf3162f8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -792,20 +792,20 @@ "31994" ], "x-ms-correlation-request-id": [ - "a012994a-b326-482f-8e09-3c1bab6736db" + "11629d86-d789-445e-9dda-3e17ddb7a17b" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T012354Z:a012994a-b326-482f-8e09-3c1bab6736db" + "NORTHCENTRALUS:20150424T062926Z:11629d86-d789-445e-9dda-3e17ddb7a17b" ], "Date": [ - "Sat, 18 Apr 2015 01:23:54 GMT" + "Fri, 24 Apr 2015 06:29:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5600/providers/Microsoft.Network/networkInterfaces/nicpstestrg5600?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTYwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljcHN0ZXN0cmc1NjAwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4902/providers/Microsoft.Network/networkInterfaces/nicpstestrg4902?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNDkwMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljcHN0ZXN0cmc0OTAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -831,13 +831,13 @@ "gateway" ], "x-ms-request-id": [ - "f193eb8a-fcd5-4abd-acc2-b72695a78745" + "42961232-ccb8-4453-91c0-0828bccedff1" ], "x-ms-correlation-request-id": [ - "f193eb8a-fcd5-4abd-acc2-b72695a78745" + "42961232-ccb8-4453-91c0-0828bccedff1" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T012354Z:f193eb8a-fcd5-4abd-acc2-b72695a78745" + "NORTHCENTRALUS:20150424T062927Z:42961232-ccb8-4453-91c0-0828bccedff1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -846,14 +846,14 @@ "no-cache" ], "Date": [ - "Sat, 18 Apr 2015 01:23:54 GMT" + "Fri, 24 Apr 2015 06:29:26 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5600/providers/Microsoft.Network/networkInterfaces/nicpstestrg5600?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTYwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljcHN0ZXN0cmc1NjAwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4902/providers/Microsoft.Network/networkInterfaces/nicpstestrg4902?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNDkwMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljcHN0ZXN0cmc0OTAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -861,10 +861,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"nicpstestrg5600\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5600/providers/Microsoft.Network/networkInterfaces/nicpstestrg5600\",\r\n \"etag\": \"W/\\\"f9dbe92c-47e6-462b-baf1-0b966c03176c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5600/providers/Microsoft.Network/networkInterfaces/nicpstestrg5600/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"f9dbe92c-47e6-462b-baf1-0b966c03176c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5600/providers/Microsoft.Network/publicIPAddresses/pubippstestrg5600\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5600/providers/Microsoft.Network/virtualNetworks/vnetpstestrg5600/subnets/subnetpstestrg5600\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"nicpstestrg4902\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4902/providers/Microsoft.Network/networkInterfaces/nicpstestrg4902\",\r\n \"etag\": \"W/\\\"63656156-9a80-41fe-9dfe-8db5e7b44d63\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4902/providers/Microsoft.Network/networkInterfaces/nicpstestrg4902/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"63656156-9a80-41fe-9dfe-8db5e7b44d63\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4902/providers/Microsoft.Network/publicIPAddresses/pubippstestrg4902\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4902/providers/Microsoft.Network/virtualNetworks/vnetpstestrg4902/subnets/subnetpstestrg4902\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"eastasia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1301" + "1302" ], "Content-Type": [ "application/json; charset=utf-8" @@ -876,7 +876,7 @@ "no-cache" ], "x-ms-request-id": [ - "7295efe2-3ef7-4546-8f9d-953a7162baf5" + "5b00ff79-b8d1-4cf4-9516-032d043e4f70" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -885,7 +885,7 @@ "no-cache" ], "ETag": [ - "W/\"f9dbe92c-47e6-462b-baf1-0b966c03176c\"" + "W/\"63656156-9a80-41fe-9dfe-8db5e7b44d63\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -895,20 +895,20 @@ "31989" ], "x-ms-correlation-request-id": [ - "e18bc036-8108-44b6-b120-3fe8f14cc4fc" + "6fd9378a-efb7-4e51-aecb-b34b2e79e04a" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T012355Z:e18bc036-8108-44b6-b120-3fe8f14cc4fc" + "NORTHCENTRALUS:20150424T062935Z:6fd9378a-efb7-4e51-aecb-b34b2e79e04a" ], "Date": [ - "Sat, 18 Apr 2015 01:23:54 GMT" + "Fri, 24 Apr 2015 06:29:34 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5600/providers/Microsoft.Network/networkInterfaces/nicpstestrg5600?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTYwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljcHN0ZXN0cmc1NjAwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4902/providers/Microsoft.Network/networkInterfaces/nicpstestrg4902?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNDkwMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljcHN0ZXN0cmc0OTAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -916,10 +916,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"nicpstestrg5600\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5600/providers/Microsoft.Network/networkInterfaces/nicpstestrg5600\",\r\n \"etag\": \"W/\\\"f9dbe92c-47e6-462b-baf1-0b966c03176c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5600/providers/Microsoft.Network/networkInterfaces/nicpstestrg5600/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"f9dbe92c-47e6-462b-baf1-0b966c03176c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5600/providers/Microsoft.Network/publicIPAddresses/pubippstestrg5600\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5600/providers/Microsoft.Network/virtualNetworks/vnetpstestrg5600/subnets/subnetpstestrg5600\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"nicpstestrg4902\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4902/providers/Microsoft.Network/networkInterfaces/nicpstestrg4902\",\r\n \"etag\": \"W/\\\"63656156-9a80-41fe-9dfe-8db5e7b44d63\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4902/providers/Microsoft.Network/networkInterfaces/nicpstestrg4902/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"63656156-9a80-41fe-9dfe-8db5e7b44d63\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4902/providers/Microsoft.Network/publicIPAddresses/pubippstestrg4902\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4902/providers/Microsoft.Network/virtualNetworks/vnetpstestrg4902/subnets/subnetpstestrg4902\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"eastasia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1301" + "1302" ], "Content-Type": [ "application/json; charset=utf-8" @@ -931,7 +931,7 @@ "no-cache" ], "x-ms-request-id": [ - "9e7c23a0-e3f4-48ec-9f9c-84db15e58c11" + "1415e503-5e24-4092-802a-f9b7623e2fd2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -940,7 +940,7 @@ "no-cache" ], "ETag": [ - "W/\"f9dbe92c-47e6-462b-baf1-0b966c03176c\"" + "W/\"63656156-9a80-41fe-9dfe-8db5e7b44d63\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -950,20 +950,20 @@ "31988" ], "x-ms-correlation-request-id": [ - "41b91d19-4e76-40f3-a6e3-945fa51a7ce9" + "e694ecc3-ad40-4723-9f71-732d2386b452" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T012355Z:41b91d19-4e76-40f3-a6e3-945fa51a7ce9" + "NORTHCENTRALUS:20150424T062935Z:e694ecc3-ad40-4723-9f71-732d2386b452" ], "Date": [ - "Sat, 18 Apr 2015 01:23:54 GMT" + "Fri, 24 Apr 2015 06:29:34 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5600/providers/Microsoft.Network/networkInterfaces/nicpstestrg5600?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTYwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljcHN0ZXN0cmc1NjAwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4902/providers/Microsoft.Network/networkInterfaces/nicpstestrg4902?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNDkwMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljcHN0ZXN0cmc0OTAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -971,10 +971,10 @@ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"nicpstestrg5600\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5600/providers/Microsoft.Network/networkInterfaces/nicpstestrg5600\",\r\n \"etag\": \"W/\\\"5759f629-7416-4de6-908c-8054226985e6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5600/providers/Microsoft.Network/networkInterfaces/nicpstestrg5600/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"5759f629-7416-4de6-908c-8054226985e6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5600/providers/Microsoft.Network/publicIPAddresses/pubippstestrg5600\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5600/providers/Microsoft.Network/virtualNetworks/vnetpstestrg5600/subnets/subnetpstestrg5600\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"macAddress\": \"00-0D-3A-30-1B-BC\",\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5600/providers/Microsoft.Compute/virtualMachines/vmpstestrg5600\"\r\n }\r\n },\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"nicpstestrg4902\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4902/providers/Microsoft.Network/networkInterfaces/nicpstestrg4902\",\r\n \"etag\": \"W/\\\"5005ec10-8836-407d-8326-7404738ff3d7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4902/providers/Microsoft.Network/networkInterfaces/nicpstestrg4902/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"5005ec10-8836-407d-8326-7404738ff3d7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4902/providers/Microsoft.Network/publicIPAddresses/pubippstestrg4902\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4902/providers/Microsoft.Network/virtualNetworks/vnetpstestrg4902/subnets/subnetpstestrg4902\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"macAddress\": \"00-0D-3A-80-0B-3C\",\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4902/providers/Microsoft.Compute/virtualMachines/vmpstestrg4902\"\r\n }\r\n },\r\n \"location\": \"eastasia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1550" + "1551" ], "Content-Type": [ "application/json; charset=utf-8" @@ -986,7 +986,7 @@ "no-cache" ], "x-ms-request-id": [ - "e20926cc-4526-4eb4-96e8-98e5a629fe5a" + "7a54c191-86b2-4840-b6a7-4247120e2f17" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -995,47 +995,47 @@ "no-cache" ], "ETag": [ - "W/\"5759f629-7416-4de6-908c-8054226985e6\"" + "W/\"5005ec10-8836-407d-8326-7404738ff3d7\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31981" + "31985" ], "x-ms-correlation-request-id": [ - "8ff505bb-e9bc-42a7-bf0c-ead32185d109" + "3e88e760-a063-49d6-8e13-28e812badc67" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T013018Z:8ff505bb-e9bc-42a7-bf0c-ead32185d109" + "NORTHCENTRALUS:20150424T063749Z:3e88e760-a063-49d6-8e13-28e812badc67" ], "Date": [ - "Sat, 18 Apr 2015 01:30:17 GMT" + "Fri, 24 Apr 2015 06:37:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5600/providers/Microsoft.Network/networkInterfaces/nicpstestrg5600?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTYwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljcHN0ZXN0cmc1NjAwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4902/providers/Microsoft.Network/networkInterfaces/nicpstestrg4902?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNDkwMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljcHN0ZXN0cmc0OTAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5600/providers/Microsoft.Network/virtualNetworks/vnetpstestrg5600/subnets/subnetpstestrg5600\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5600/providers/Microsoft.Network/publicIPAddresses/pubippstestrg5600\"\r\n },\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": []\r\n },\r\n \"name\": \"ipconfig1\"\r\n }\r\n ],\r\n \"primary\": false\r\n },\r\n \"name\": \"nicpstestrg5600\",\r\n \"type\": \"microsoft.network/networkInterfaces\",\r\n \"location\": \"West US\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4902/providers/Microsoft.Network/virtualNetworks/vnetpstestrg4902/subnets/subnetpstestrg4902\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4902/providers/Microsoft.Network/publicIPAddresses/pubippstestrg4902\"\r\n },\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": []\r\n },\r\n \"name\": \"ipconfig1\"\r\n }\r\n ],\r\n \"primary\": false\r\n },\r\n \"name\": \"nicpstestrg4902\",\r\n \"type\": \"microsoft.network/networkInterfaces\",\r\n \"location\": \"eastasia\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "858" + "859" ], "User-Agent": [ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"nicpstestrg5600\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5600/providers/Microsoft.Network/networkInterfaces/nicpstestrg5600\",\r\n \"etag\": \"W/\\\"f9dbe92c-47e6-462b-baf1-0b966c03176c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5600/providers/Microsoft.Network/networkInterfaces/nicpstestrg5600/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"f9dbe92c-47e6-462b-baf1-0b966c03176c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5600/providers/Microsoft.Network/publicIPAddresses/pubippstestrg5600\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5600/providers/Microsoft.Network/virtualNetworks/vnetpstestrg5600/subnets/subnetpstestrg5600\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"nicpstestrg4902\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4902/providers/Microsoft.Network/networkInterfaces/nicpstestrg4902\",\r\n \"etag\": \"W/\\\"63656156-9a80-41fe-9dfe-8db5e7b44d63\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4902/providers/Microsoft.Network/networkInterfaces/nicpstestrg4902/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"63656156-9a80-41fe-9dfe-8db5e7b44d63\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4902/providers/Microsoft.Network/publicIPAddresses/pubippstestrg4902\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4902/providers/Microsoft.Network/virtualNetworks/vnetpstestrg4902/subnets/subnetpstestrg4902\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"eastasia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1301" + "1302" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1046,14 +1046,11 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "10" - ], "x-ms-request-id": [ - "12a94307-b29e-4701-a8cd-cb019fc6b912" + "84c7d528-4dbb-4df1-be26-1e8bd4aa96cb" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/12a94307-b29e-4701-a8cd-cb019fc6b912?api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/eastasia/operations/84c7d528-4dbb-4df1-be26-1e8bd4aa96cb?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1069,20 +1066,20 @@ "1197" ], "x-ms-correlation-request-id": [ - "953c4431-fa73-4e51-a82f-56438eca361b" + "81239144-a309-4fd0-9ef3-50ed956c1d9d" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T012355Z:953c4431-fa73-4e51-a82f-56438eca361b" + "NORTHCENTRALUS:20150424T062934Z:81239144-a309-4fd0-9ef3-50ed956c1d9d" ], "Date": [ - "Sat, 18 Apr 2015 01:23:54 GMT" + "Fri, 24 Apr 2015 06:29:33 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/12a94307-b29e-4701-a8cd-cb019fc6b912?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMTJhOTQzMDctYjI5ZS00NzAxLWE4Y2QtY2IwMTlmYzZiOTEyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/eastasia/operations/84c7d528-4dbb-4df1-be26-1e8bd4aa96cb?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy84NGM3ZDUyOC00ZGJiLTRkZjEtYmUyNi0xZThiZDRhYTk2Y2I/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1108,7 +1105,7 @@ "no-cache" ], "x-ms-request-id": [ - "c3907fe7-ff9f-4c46-8081-6abe7d3fc6d5" + "a844a5a3-4ba7-482d-a0bc-40c7c0b4e50b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1124,31 +1121,31 @@ "31990" ], "x-ms-correlation-request-id": [ - "87a5342e-569b-46ee-9138-8bee10c18e18" + "a2d86fb9-8585-4a4c-b4ba-e6814f3f84de" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T012355Z:87a5342e-569b-46ee-9138-8bee10c18e18" + "NORTHCENTRALUS:20150424T062934Z:a2d86fb9-8585-4a4c-b4ba-e6814f3f84de" ], "Date": [ - "Sat, 18 Apr 2015 01:23:54 GMT" + "Fri, 24 Apr 2015 06:29:34 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5600/providers/Microsoft.Storage/storageAccounts/stopstestrg5600?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTYwMC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNTYwMD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4902/providers/Microsoft.Storage/storageAccounts/stopstestrg4902?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNDkwMi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNDkwMj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "89" + "90" ], "x-ms-client-request-id": [ - "a51ab984-44df-488b-b066-7e004537457c" + "0b27c9a8-1450-48f5-bbfc-d62b2a33f7f7" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" @@ -1172,44 +1169,44 @@ "25" ], "x-ms-request-id": [ - "27a35326-5426-4c45-8f53-d79d00a7dec5" + "0cd6a932-4cd3-481a-9da8-bf8d4df7fda3" ], "Cache-Control": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Storage/operations/27a35326-5426-4c45-8f53-d79d00a7dec5?monitor=true&api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Storage/operations/0cd6a932-4cd3-481a-9da8-bf8d4df7fda3?monitor=true&api-version=2015-05-01-preview" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1198" ], "x-ms-correlation-request-id": [ - "3a91a908-d8ca-4edb-ae80-9081fbe2407b" + "054039ee-6b24-4760-9b8e-f8d19bb185a2" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T012401Z:3a91a908-d8ca-4edb-ae80-9081fbe2407b" + "NORTHCENTRALUS:20150424T062943Z:054039ee-6b24-4760-9b8e-f8d19bb185a2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Sat, 18 Apr 2015 01:24:01 GMT" + "Fri, 24 Apr 2015 06:29:43 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Storage/operations/27a35326-5426-4c45-8f53-d79d00a7dec5?monitor=true&api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzI3YTM1MzI2LTU0MjYtNGM0NS04ZjUzLWQ3OWQwMGE3ZGVjNT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Storage/operations/0cd6a932-4cd3-481a-9da8-bf8d4df7fda3?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzBjZDZhOTMyLTRjZDMtNDgxYS05ZGE4LWJmOGQ0ZGY3ZmRhMz9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f1ef7b33-e043-432a-9f5a-9f5455963483" + "71389389-9f1a-441c-9134-06e55069dce4" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" @@ -1233,53 +1230,53 @@ "25" ], "x-ms-request-id": [ - "2d0ffa90-d1d1-4afd-a5ce-87fd7ae948d1" + "8e36536f-6b7d-448a-988e-2ad819fc9d44" ], "Cache-Control": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Storage/operations/27a35326-5426-4c45-8f53-d79d00a7dec5?monitor=true&api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Storage/operations/0cd6a932-4cd3-481a-9da8-bf8d4df7fda3?monitor=true&api-version=2015-05-01-preview" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31984" + "31997" ], "x-ms-correlation-request-id": [ - "97f67888-4ce2-4c98-a8c4-151889464bc6" + "e43342cf-f786-42ce-a3c8-79c92cf84fdb" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T012401Z:97f67888-4ce2-4c98-a8c4-151889464bc6" + "NORTHCENTRALUS:20150424T062943Z:e43342cf-f786-42ce-a3c8-79c92cf84fdb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Sat, 18 Apr 2015 01:24:01 GMT" + "Fri, 24 Apr 2015 06:29:43 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Storage/operations/27a35326-5426-4c45-8f53-d79d00a7dec5?monitor=true&api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzI3YTM1MzI2LTU0MjYtNGM0NS04ZjUzLWQ3OWQwMGE3ZGVjNT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Storage/operations/0cd6a932-4cd3-481a-9da8-bf8d4df7fda3?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzBjZDZhOTMyLTRjZDMtNDgxYS05ZGE4LWJmOGQ0ZGY3ZmRhMz9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "11006075-7954-4779-8ca0-075195461dac" + "afe9e25c-fda0-46d4-9c77-f013de84d175" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n },\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n },\r\n \"location\": \"East Asia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "66" + "68" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1291,7 +1288,7 @@ "no-cache" ], "x-ms-request-id": [ - "2d646d6b-9526-42aa-a2a2-23df64d180c5" + "b54eb698-7386-4a52-af73-7ec6332032c5" ], "Cache-Control": [ "no-cache" @@ -1301,40 +1298,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31983" + "31996" ], "x-ms-correlation-request-id": [ - "4ad86888-1419-4fd7-91f0-71ba52ba4b1f" + "d2e09c26-f2e1-41e8-8b3e-2114fba0a6cb" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T012426Z:4ad86888-1419-4fd7-91f0-71ba52ba4b1f" + "NORTHCENTRALUS:20150424T063009Z:d2e09c26-f2e1-41e8-8b3e-2114fba0a6cb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Sat, 18 Apr 2015 01:24:26 GMT" + "Fri, 24 Apr 2015 06:30:08 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5600/providers/Microsoft.Storage/storageAccounts/stopstestrg5600?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTYwMC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNTYwMD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4902/providers/Microsoft.Storage/storageAccounts/stopstestrg4902?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNDkwMi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNDkwMj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f4a9dd06-a3f1-4f97-87ca-7a4c9402a5c8" + "f23521d3-cbcf-44cb-81c3-972a4db3e4f8" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5600/providers/Microsoft.Storage/storageAccounts/stopstestrg5600\",\r\n \"name\": \"stopstestrg5600\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stopstestrg5600.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg5600.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg5600.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-04-18T01:23:59.7940472Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4902/providers/Microsoft.Storage/storageAccounts/stopstestrg4902\",\r\n \"name\": \"stopstestrg4902\",\r\n \"location\": \"East Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stopstestrg4902.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg4902.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg4902.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"East Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"Southeast Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-04-24T06:29:41.0830103Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "672" + "683" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1346,7 +1343,7 @@ "no-cache" ], "x-ms-request-id": [ - "9ddb9c23-68c7-40cc-9789-dd612aa39bfc" + "24b65296-288c-447c-abf5-5e682e58fa1f" ], "Cache-Control": [ "no-cache" @@ -1356,43 +1353,92 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31982" + "31995" ], "x-ms-correlation-request-id": [ - "88430430-bbe3-4a32-8400-603bb2a577b7" + "ef7a8af3-496a-4dea-b838-8e80fbf43ae7" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T012426Z:88430430-bbe3-4a32-8400-603bb2a577b7" + "NORTHCENTRALUS:20150424T063009Z:ef7a8af3-496a-4dea-b838-8e80fbf43ae7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Sat, 18 Apr 2015 01:24:26 GMT" + "Fri, 24 Apr 2015 06:30:09 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5600/providers/Microsoft.Compute/virtualMachines/vmpstestrg5600?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTYwMC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtcHN0ZXN0cmc1NjAwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A2\"\r\n },\r\n \"storageProfile\": {\r\n \"sourceImage\": {\r\n \"id\": \"/9532a63e-f2eb-4649-bb23-5ed01077ce80/services/images/a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-Datacenter-201503.01-en.us-127GB.vhd\"\r\n },\r\n \"destinationVhdsContainer\": \"https://stopstestrg5600.blob.core.windows.net/test\",\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"testDataDisk1\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg5600.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\"\r\n },\r\n {\r\n \"lun\": 1,\r\n \"diskSizeGB\": 11,\r\n \"name\": \"testDataDisk2\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg5600.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\"\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123pstestrg5600\"\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5600/providers/Microsoft.Network/networkInterfaces/nicpstestrg5600\"\r\n }\r\n ]\r\n }\r\n },\r\n \"name\": \"vmpstestrg5600\",\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4902/providers/Microsoft.Storage/storageAccounts/stopstestrg4902?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNDkwMi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNDkwMj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json" + "x-ms-client-request-id": [ + "3d3f8bb7-9b87-418e-8600-43155683a107" ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4902/providers/Microsoft.Storage/storageAccounts/stopstestrg4902\",\r\n \"name\": \"stopstestrg4902\",\r\n \"location\": \"East Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stopstestrg4902.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg4902.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg4902.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"East Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"Southeast Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-04-24T06:29:41.0830103Z\"\r\n }\r\n}", + "ResponseHeaders": { "Content-Length": [ - "1450" + "683" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "4209e0c8-26a7-438c-94ef-90f782997913" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31994" + ], + "x-ms-correlation-request-id": [ + "17bb52c5-fefb-4198-b5ea-58f2a3b9a8af" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150424T063009Z:17bb52c5-fefb-4198-b5ea-58f2a3b9a8af" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Fri, 24 Apr 2015 06:30:09 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/eastasia/publishers?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A2\"\r\n },\r\n \"storageProfile\": {\r\n \"sourceImage\": {\r\n \"id\": \"/9532a63e-f2eb-4649-bb23-5ed01077ce80/services/images/a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-Datacenter-201503.01-en.us-127GB.vhd\"\r\n },\r\n \"destinationVhdsContainer\": \"https://stopstestrg5600.blob.core.windows.net/test\",\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"vmpstestrg5600-os-20150418-012443-440338\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg5600.blob.core.windows.net/test/vmpstestrg5600-os-20150418-012443-440338.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"testDataDisk1\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg5600.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\"\r\n },\r\n {\r\n \"lun\": 1,\r\n \"diskSizeGB\": 11,\r\n \"name\": \"testDataDisk2\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg5600.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\"\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5600/providers/Microsoft.Network/networkInterfaces/nicpstestrg5600\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"creating\"\r\n },\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5600/providers/Microsoft.Compute/virtualMachines/vmpstestrg5600\",\r\n \"name\": \"vmpstestrg5600\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"boxless\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/boxless\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"CloudLink.SecureVM\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/CloudLink.SecureVM\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"informatica-cloud\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/informatica-cloud\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"marketplace-test\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/marketplace-test\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"metavistech\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/metavistech\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.Azure.ServiceFabric\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Azure.ServiceFabric\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.WindowsAzure.GuestAgent\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.WindowsAzure.GuestAgent\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftWindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServerEssentials\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MSOpenTech.Extensions\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MSOpenTech.Extensions\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"seagate\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/seagate\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"sharefile\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/sharefile\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"sisense\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/sisense\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"vision_solutions\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/vision_solutions\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/wowza\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "2008" + "14225" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1403,14 +1449,11 @@ "Pragma": [ "no-cache" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/westus/operations/370e67b0-f328-4c4f-b5d6-5bea0e40a49e?api-version=2015-05-01-preview" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "370e67b0-f328-4c4f-b5d6-5bea0e40a49e" + "4d9f8681-b986-4ae4-8d6b-4e75bb6b264a" ], "Cache-Control": [ "no-cache" @@ -1419,38 +1462,35 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "x-ms-ratelimit-remaining-subscription-reads": [ + "31995" ], "x-ms-correlation-request-id": [ - "a0da4070-386b-48ab-9e3a-07ab9f1f1d7a" + "185eebb3-cb8a-49d9-a8bf-b2574b60f5a5" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T012442Z:a0da4070-386b-48ab-9e3a-07ab9f1f1d7a" + "NORTHCENTRALUS:20150424T063012Z:185eebb3-cb8a-49d9-a8bf-b2574b60f5a5" ], "Date": [ - "Sat, 18 Apr 2015 01:24:42 GMT" + "Fri, 24 Apr 2015 06:30:11 GMT" ] }, - "StatusCode": 201 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/westus/operations/370e67b0-f328-4c4f-b5d6-5bea0e40a49e?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzcwZTY3YjAtZjMyOC00YzRmLWI1ZDYtNWJlYTBlNDBhNDllP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/eastasia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - - - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"370e67b0-f328-4c4f-b5d6-5bea0e40a49e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-17T18:24:28.4404069-07:00\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"WindowsServer\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "132" + "262" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1465,7 +1505,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4240af3a-1d3a-49bd-bea1-8609f28e2dfb" + "cefc6755-3afe-4aec-86eb-db8b7169d692" ], "Cache-Control": [ "no-cache" @@ -1475,37 +1515,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31998" + "31994" ], "x-ms-correlation-request-id": [ - "b4b1dfce-0803-43e1-b347-4b6d0f90470f" + "2431b608-2acd-4e39-801c-bd3a82236f43" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T012442Z:b4b1dfce-0803-43e1-b347-4b6d0f90470f" + "NORTHCENTRALUS:20150424T063013Z:2431b608-2acd-4e39-801c-bd3a82236f43" ], "Date": [ - "Sat, 18 Apr 2015 01:24:42 GMT" + "Fri, 24 Apr 2015 06:30:13 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/westus/operations/370e67b0-f328-4c4f-b5d6-5bea0e40a49e?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzcwZTY3YjAtZjMyOC00YzRmLWI1ZDYtNWJlYTBlNDBhNDllP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/eastasia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvV2luZG93c1NlcnZlci9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - - - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"370e67b0-f328-4c4f-b5d6-5bea0e40a49e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-17T18:24:28.4404069-07:00\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"2008-R2-SP1\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"2012-Datacenter\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"2012-R2-Datacenter\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Windows-Server-Technical-Preview\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/Windows-Server-Technical-Preview\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "132" + "1163" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1520,7 +1557,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1f126761-562f-47ff-8169-f943d4c457a9" + "e97ce7b8-5d0a-4cf1-ae59-95525e5c5f06" ], "Cache-Control": [ "no-cache" @@ -1530,37 +1567,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31997" + "31993" ], "x-ms-correlation-request-id": [ - "354495ec-c429-4a76-af8f-6f7ed51478ae" + "4f479a37-e3db-4666-b94a-d0fb9bfbab74" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T012516Z:354495ec-c429-4a76-af8f-6f7ed51478ae" + "NORTHCENTRALUS:20150424T063015Z:4f479a37-e3db-4666-b94a-d0fb9bfbab74" ], "Date": [ - "Sat, 18 Apr 2015 01:25:15 GMT" + "Fri, 24 Apr 2015 06:30:14 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/westus/operations/370e67b0-f328-4c4f-b5d6-5bea0e40a49e?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzcwZTY3YjAtZjMyOC00YzRmLWI1ZDYtNWJlYTBlNDBhNDllP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/eastasia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvV2luZG93c1NlcnZlci9za3VzLzIwMDgtUjItU1AxL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - - - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"370e67b0-f328-4c4f-b5d6-5bea0e40a49e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-17T18:24:28.4404069-07:00\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"2.0.201502\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201502\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"2.0.201503\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201503\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "132" + "589" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1575,7 +1609,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8019f77e-284b-4c87-a10d-78a3bf502f45" + "7678bbd0-e8fe-40ad-96b5-949a664ceb7f" ], "Cache-Control": [ "no-cache" @@ -1585,37 +1619,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31996" + "31992" ], "x-ms-correlation-request-id": [ - "dbfaf047-454b-4078-a4d4-417f18da129b" + "6d7fe307-5483-4076-9ab7-9c32ef6986d4" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T012546Z:dbfaf047-454b-4078-a4d4-417f18da129b" + "NORTHCENTRALUS:20150424T063016Z:6d7fe307-5483-4076-9ab7-9c32ef6986d4" ], "Date": [ - "Sat, 18 Apr 2015 01:25:45 GMT" + "Fri, 24 Apr 2015 06:30:16 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/westus/operations/370e67b0-f328-4c4f-b5d6-5bea0e40a49e?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzcwZTY3YjAtZjMyOC00YzRmLWI1ZDYtNWJlYTBlNDBhNDllP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/eastasia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions/2.0.201502?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvV2luZG93c1NlcnZlci9za3VzLzIwMDgtUjItU1AxL3ZlcnNpb25zLzIuMC4yMDE1MDI/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - - - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"370e67b0-f328-4c4f-b5d6-5bea0e40a49e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-17T18:24:28.4404069-07:00\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastasia\",\r\n \"name\": \"2.0.201502\",\r\n \"id\": \"/Subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201502\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "132" + "397" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1630,7 +1661,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "849244e1-143f-4ee5-84b6-1173c593f02b" + "4ce2e528-2767-4b69-abc7-d4ed4828fcfc" ], "Cache-Control": [ "no-cache" @@ -1640,37 +1671,95 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31995" + "31991" ], "x-ms-correlation-request-id": [ - "6a9d8f23-29ea-469a-81af-d7763752dd66" + "f870d6c7-45fd-427c-bd69-3a697fc78844" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T012616Z:6a9d8f23-29ea-469a-81af-d7763752dd66" + "NORTHCENTRALUS:20150424T063017Z:f870d6c7-45fd-427c-bd69-3a697fc78844" ], "Date": [ - "Sat, 18 Apr 2015 01:26:16 GMT" + "Fri, 24 Apr 2015 06:30:17 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/westus/operations/370e67b0-f328-4c4f-b5d6-5bea0e40a49e?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzcwZTY3YjAtZjMyOC00YzRmLWI1ZDYtNWJlYTBlNDBhNDllP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4902/providers/Microsoft.Compute/virtualMachines/vmpstestrg4902?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNDkwMi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtcHN0ZXN0cmc0OTAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201502\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"osDisk\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg4902.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"createOption\": \"FromImage\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123pstestrg4902\",\r\n \"windowsConfiguration\": {}\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4902/providers/Microsoft.Network/networkInterfaces/nicpstestrg4902\"\r\n }\r\n ]\r\n }\r\n },\r\n \"name\": \"vmpstestrg4902\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "1070" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201502\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg4902.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4902/providers/Microsoft.Network/networkInterfaces/nicpstestrg4902\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4902/providers/Microsoft.Compute/virtualMachines/vmpstestrg4902\",\r\n \"name\": \"vmpstestrg4902\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {}\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1350" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/eastasia/operations/eb22cbbe-725e-45ec-b3d3-5b7f3427f199?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "eb22cbbe-725e-45ec-b3d3-5b7f3427f199" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "7755ea66-a76d-40d2-9acf-5b7be252aa65" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150424T063026Z:7755ea66-a76d-40d2-9acf-5b7be252aa65" + ], + "Date": [ + "Fri, 24 Apr 2015 06:30:25 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/eastasia/operations/eb22cbbe-725e-45ec-b3d3-5b7f3427f199?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9lYjIyY2JiZS03MjVlLTQ1ZWMtYjNkMy01YjdmMzQyN2YxOTk/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - - - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"370e67b0-f328-4c4f-b5d6-5bea0e40a49e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-17T18:24:28.4404069-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"eb22cbbe-725e-45ec-b3d3-5b7f3427f199\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-23T23:30:23.8048753-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "132" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1685,7 +1774,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e4516545-74dc-4437-9832-9782a1b2ac20" + "edb34ea7-c2e5-446a-9126-589b4be5081f" ], "Cache-Control": [ "no-cache" @@ -1695,37 +1784,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31994" + "31990" ], "x-ms-correlation-request-id": [ - "761d3646-3ff2-4336-acfb-c177b7538007" + "318bc992-c25e-4cb9-8f83-058033187032" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T012646Z:761d3646-3ff2-4336-acfb-c177b7538007" + "NORTHCENTRALUS:20150424T063027Z:318bc992-c25e-4cb9-8f83-058033187032" ], "Date": [ - "Sat, 18 Apr 2015 01:26:46 GMT" + "Fri, 24 Apr 2015 06:30:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/westus/operations/370e67b0-f328-4c4f-b5d6-5bea0e40a49e?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzcwZTY3YjAtZjMyOC00YzRmLWI1ZDYtNWJlYTBlNDBhNDllP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/eastasia/operations/eb22cbbe-725e-45ec-b3d3-5b7f3427f199?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9lYjIyY2JiZS03MjVlLTQ1ZWMtYjNkMy01YjdmMzQyN2YxOTk/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - - - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"370e67b0-f328-4c4f-b5d6-5bea0e40a49e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-17T18:24:28.4404069-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"eb22cbbe-725e-45ec-b3d3-5b7f3427f199\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-23T23:30:23.8048753-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "132" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1740,7 +1826,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "393cbec3-8363-4fcb-aef2-1dfd5161013d" + "3f177ca3-5cd5-4e9c-a295-af057b82d74c" ], "Cache-Control": [ "no-cache" @@ -1750,37 +1836,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31993" + "31989" ], "x-ms-correlation-request-id": [ - "2b42b644-4857-4cdc-bfb3-7d0d8cef9d5d" + "43f06089-069c-40ce-84a9-a086e124c5f2" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T012716Z:2b42b644-4857-4cdc-bfb3-7d0d8cef9d5d" + "NORTHCENTRALUS:20150424T063059Z:43f06089-069c-40ce-84a9-a086e124c5f2" ], "Date": [ - "Sat, 18 Apr 2015 01:27:16 GMT" + "Fri, 24 Apr 2015 06:30:58 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/westus/operations/370e67b0-f328-4c4f-b5d6-5bea0e40a49e?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzcwZTY3YjAtZjMyOC00YzRmLWI1ZDYtNWJlYTBlNDBhNDllP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/eastasia/operations/eb22cbbe-725e-45ec-b3d3-5b7f3427f199?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9lYjIyY2JiZS03MjVlLTQ1ZWMtYjNkMy01YjdmMzQyN2YxOTk/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - - - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"370e67b0-f328-4c4f-b5d6-5bea0e40a49e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-17T18:24:28.4404069-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"eb22cbbe-725e-45ec-b3d3-5b7f3427f199\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-23T23:30:23.8048753-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "132" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1795,7 +1878,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ed62a1e1-7e04-43d1-b31d-945829d28973" + "1cda87a5-4cd6-4122-b6c9-8543904c1aba" ], "Cache-Control": [ "no-cache" @@ -1805,37 +1888,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31992" + "31988" ], "x-ms-correlation-request-id": [ - "7d87b843-2855-4fdf-a252-06c32be1f8a8" + "874a99a9-0b10-4f3c-baca-f18dd220a6ff" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T012746Z:7d87b843-2855-4fdf-a252-06c32be1f8a8" + "NORTHCENTRALUS:20150424T063130Z:874a99a9-0b10-4f3c-baca-f18dd220a6ff" ], "Date": [ - "Sat, 18 Apr 2015 01:27:46 GMT" + "Fri, 24 Apr 2015 06:31:29 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/westus/operations/370e67b0-f328-4c4f-b5d6-5bea0e40a49e?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzcwZTY3YjAtZjMyOC00YzRmLWI1ZDYtNWJlYTBlNDBhNDllP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/eastasia/operations/eb22cbbe-725e-45ec-b3d3-5b7f3427f199?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9lYjIyY2JiZS03MjVlLTQ1ZWMtYjNkMy01YjdmMzQyN2YxOTk/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - - - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"370e67b0-f328-4c4f-b5d6-5bea0e40a49e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-17T18:24:28.4404069-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"eb22cbbe-725e-45ec-b3d3-5b7f3427f199\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-23T23:30:23.8048753-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "132" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1850,7 +1930,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8f3a69ad-6971-4e63-8241-c1c74a9ea652" + "d9cc78be-6ed6-4815-9fec-f41cee60498e" ], "Cache-Control": [ "no-cache" @@ -1860,37 +1940,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31991" + "31987" ], "x-ms-correlation-request-id": [ - "d40e3341-6185-49fb-86b1-51483b9b3a9c" + "97186ffe-cd1a-4087-b6f6-8372aa623159" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T012817Z:d40e3341-6185-49fb-86b1-51483b9b3a9c" + "NORTHCENTRALUS:20150424T063201Z:97186ffe-cd1a-4087-b6f6-8372aa623159" ], "Date": [ - "Sat, 18 Apr 2015 01:28:16 GMT" + "Fri, 24 Apr 2015 06:32:01 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/westus/operations/370e67b0-f328-4c4f-b5d6-5bea0e40a49e?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzcwZTY3YjAtZjMyOC00YzRmLWI1ZDYtNWJlYTBlNDBhNDllP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/eastasia/operations/eb22cbbe-725e-45ec-b3d3-5b7f3427f199?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9lYjIyY2JiZS03MjVlLTQ1ZWMtYjNkMy01YjdmMzQyN2YxOTk/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - - - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"370e67b0-f328-4c4f-b5d6-5bea0e40a49e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-17T18:24:28.4404069-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"eb22cbbe-725e-45ec-b3d3-5b7f3427f199\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-23T23:30:23.8048753-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "132" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1905,7 +1982,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "01406920-a088-422a-a507-a06323119bfc" + "4ce97e5b-746d-4aab-9bf4-e0d9445da8da" ], "Cache-Control": [ "no-cache" @@ -1915,37 +1992,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31990" + "31986" ], "x-ms-correlation-request-id": [ - "c7fd6582-812b-4d56-a02b-036e3e7136a3" + "2e7bab70-2b46-4e6f-a989-3af31dbabb95" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T012847Z:c7fd6582-812b-4d56-a02b-036e3e7136a3" + "NORTHCENTRALUS:20150424T063233Z:2e7bab70-2b46-4e6f-a989-3af31dbabb95" ], "Date": [ - "Sat, 18 Apr 2015 01:28:46 GMT" + "Fri, 24 Apr 2015 06:32:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/westus/operations/370e67b0-f328-4c4f-b5d6-5bea0e40a49e?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzcwZTY3YjAtZjMyOC00YzRmLWI1ZDYtNWJlYTBlNDBhNDllP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/eastasia/operations/eb22cbbe-725e-45ec-b3d3-5b7f3427f199?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9lYjIyY2JiZS03MjVlLTQ1ZWMtYjNkMy01YjdmMzQyN2YxOTk/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - - - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"370e67b0-f328-4c4f-b5d6-5bea0e40a49e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-17T18:24:28.4404069-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"eb22cbbe-725e-45ec-b3d3-5b7f3427f199\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-23T23:30:23.8048753-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "132" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1960,7 +2034,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "87bbb1e4-ea24-4701-b225-687c3b989cc2" + "c24f9501-714e-467a-8a40-d265e8e35aa5" ], "Cache-Control": [ "no-cache" @@ -1970,37 +2044,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31989" + "31985" ], "x-ms-correlation-request-id": [ - "89551b11-9458-4476-969b-5c418c0dda3b" + "4b217309-0b33-4abc-aaaf-05c8e8ef8b6a" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T012917Z:89551b11-9458-4476-969b-5c418c0dda3b" + "NORTHCENTRALUS:20150424T063304Z:4b217309-0b33-4abc-aaaf-05c8e8ef8b6a" ], "Date": [ - "Sat, 18 Apr 2015 01:29:16 GMT" + "Fri, 24 Apr 2015 06:33:04 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/westus/operations/370e67b0-f328-4c4f-b5d6-5bea0e40a49e?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzcwZTY3YjAtZjMyOC00YzRmLWI1ZDYtNWJlYTBlNDBhNDllP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/eastasia/operations/eb22cbbe-725e-45ec-b3d3-5b7f3427f199?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9lYjIyY2JiZS03MjVlLTQ1ZWMtYjNkMy01YjdmMzQyN2YxOTk/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - - - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"370e67b0-f328-4c4f-b5d6-5bea0e40a49e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-17T18:24:28.4404069-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"eb22cbbe-725e-45ec-b3d3-5b7f3427f199\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-23T23:30:23.8048753-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "132" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2015,7 +2086,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d838cca0-cbe6-4131-b29a-ec917c9eea83" + "82e2d3d4-a20b-4274-a724-6888e54ed7e5" ], "Cache-Control": [ "no-cache" @@ -2025,37 +2096,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31988" + "31984" ], "x-ms-correlation-request-id": [ - "dbbc012b-a73d-4106-a9ba-5e9837a0bccd" + "a2579f3e-2218-4b26-bc7c-404089589cb1" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T012947Z:dbbc012b-a73d-4106-a9ba-5e9837a0bccd" + "NORTHCENTRALUS:20150424T063336Z:a2579f3e-2218-4b26-bc7c-404089589cb1" ], "Date": [ - "Sat, 18 Apr 2015 01:29:47 GMT" + "Fri, 24 Apr 2015 06:33:35 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/westus/operations/370e67b0-f328-4c4f-b5d6-5bea0e40a49e?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzcwZTY3YjAtZjMyOC00YzRmLWI1ZDYtNWJlYTBlNDBhNDllP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/eastasia/operations/eb22cbbe-725e-45ec-b3d3-5b7f3427f199?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9lYjIyY2JiZS03MjVlLTQ1ZWMtYjNkMy01YjdmMzQyN2YxOTk/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - - - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"370e67b0-f328-4c4f-b5d6-5bea0e40a49e\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-04-17T18:24:28.4404069-07:00\",\r\n \"endTime\": \"2015-04-17T18:30:08.8923129-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"eb22cbbe-725e-45ec-b3d3-5b7f3427f199\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-23T23:30:23.8048753-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "182" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2070,7 +2138,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cf271769-94a0-486c-9927-e6352a0f5fcd" + "4442cfac-d57c-4a61-80e9-560893808c93" ], "Cache-Control": [ "no-cache" @@ -2080,34 +2148,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31987" + "31983" ], "x-ms-correlation-request-id": [ - "f71c3552-4b2f-405c-841a-0ac25bb9b556" + "ef7aa760-1a61-466e-b2ed-b61fec77cc9c" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T013017Z:f71c3552-4b2f-405c-841a-0ac25bb9b556" + "NORTHCENTRALUS:20150424T063407Z:ef7aa760-1a61-466e-b2ed-b61fec77cc9c" ], "Date": [ - "Sat, 18 Apr 2015 01:30:17 GMT" + "Fri, 24 Apr 2015 06:34:06 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5600/providers/Microsoft.Compute/virtualMachines/vmpstestrg5600?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTYwMC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtcHN0ZXN0cmc1NjAwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/eastasia/operations/eb22cbbe-725e-45ec-b3d3-5b7f3427f199?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9lYjIyY2JiZS03MjVlLTQ1ZWMtYjNkMy01YjdmMzQyN2YxOTk/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A2\"\r\n },\r\n \"storageProfile\": {\r\n \"sourceImage\": {\r\n \"id\": \"/9532a63e-f2eb-4649-bb23-5ed01077ce80/services/images/a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-Datacenter-201503.01-en.us-127GB.vhd\"\r\n },\r\n \"destinationVhdsContainer\": \"https://stopstestrg5600.blob.core.windows.net/test\",\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"vmpstestrg5600-os-20150418-012443-440338\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg5600.blob.core.windows.net/test/vmpstestrg5600-os-20150418-012443-440338.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"testDataDisk1\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg5600.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\"\r\n },\r\n {\r\n \"lun\": 1,\r\n \"diskSizeGB\": 11,\r\n \"name\": \"testDataDisk2\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg5600.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\"\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5600/providers/Microsoft.Network/networkInterfaces/nicpstestrg5600\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5600/providers/Microsoft.Compute/virtualMachines/vmpstestrg5600\",\r\n \"name\": \"vmpstestrg5600\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"eb22cbbe-725e-45ec-b3d3-5b7f3427f199\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-23T23:30:23.8048753-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "2009" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2122,7 +2190,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "13cb6197-7921-4546-8545-1c684f8ca5d1" + "75893173-3026-47e7-a76b-228a9891e278" ], "Cache-Control": [ "no-cache" @@ -2132,34 +2200,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31986" + "31982" ], "x-ms-correlation-request-id": [ - "38611935-9989-4f76-bdd3-70b388ea75e1" + "7ad4119f-8924-4f43-9eb4-910c4f258322" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T013017Z:38611935-9989-4f76-bdd3-70b388ea75e1" + "NORTHCENTRALUS:20150424T063438Z:7ad4119f-8924-4f43-9eb4-910c4f258322" ], "Date": [ - "Sat, 18 Apr 2015 01:30:17 GMT" + "Fri, 24 Apr 2015 06:34:38 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg5600/providers/Microsoft.Compute/virtualMachines/vmpstestrg5600?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTYwMC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtcHN0ZXN0cmc1NjAwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/eastasia/operations/eb22cbbe-725e-45ec-b3d3-5b7f3427f199?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9lYjIyY2JiZS03MjVlLTQ1ZWMtYjNkMy01YjdmMzQyN2YxOTk/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"operationId\": \"eb22cbbe-725e-45ec-b3d3-5b7f3427f199\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-23T23:30:23.8048753-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "0" + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" @@ -2167,57 +2238,152 @@ "Pragma": [ "no-cache" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/westus/operations/e379e1f6-1489-4e05-8e95-616d62d120eb?api-version=2015-05-01-preview" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "26c4dd05-fa73-4f6f-86b9-29053351c13b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31981" + ], + "x-ms-correlation-request-id": [ + "fd037253-0e18-4a17-adb9-41d8e08d21f0" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150424T063510Z:fd037253-0e18-4a17-adb9-41d8e08d21f0" + ], + "Date": [ + "Fri, 24 Apr 2015 06:35:09 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/eastasia/operations/eb22cbbe-725e-45ec-b3d3-5b7f3427f199?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9lYjIyY2JiZS03MjVlLTQ1ZWMtYjNkMy01YjdmMzQyN2YxOTk/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"eb22cbbe-725e-45ec-b3d3-5b7f3427f199\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-23T23:30:23.8048753-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e379e1f6-1489-4e05-8e95-616d62d120eb" + "d1d82392-b8e7-49b1-80fd-02bd09e07393" ], "Cache-Control": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/westus/operations/e379e1f6-1489-4e05-8e95-616d62d120eb?monitor=true&api-version=2015-05-01-preview" + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31980" + ], + "x-ms-correlation-request-id": [ + "2e30c3d9-acd7-40e1-b180-a3bcc677306d" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150424T063541Z:2e30c3d9-acd7-40e1-b180-a3bcc677306d" + ], + "Date": [ + "Fri, 24 Apr 2015 06:35:41 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/eastasia/operations/eb22cbbe-725e-45ec-b3d3-5b7f3427f199?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9lYjIyY2JiZS03MjVlLTQ1ZWMtYjNkMy01YjdmMzQyN2YxOTk/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"eb22cbbe-725e-45ec-b3d3-5b7f3427f199\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-23T23:30:23.8048753-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "2330428d-33ef-49cb-96c2-17362d26fc86" + ], + "Cache-Control": [ + "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "x-ms-ratelimit-remaining-subscription-reads": [ + "31979" ], "x-ms-correlation-request-id": [ - "197c67d1-960f-4463-800e-04a8607cd9d3" + "5a8d1a4f-33bb-42bd-9cb4-7114b897cdcd" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T013028Z:197c67d1-960f-4463-800e-04a8607cd9d3" + "NORTHCENTRALUS:20150424T063613Z:5a8d1a4f-33bb-42bd-9cb4-7114b897cdcd" ], "Date": [ - "Sat, 18 Apr 2015 01:30:28 GMT" + "Fri, 24 Apr 2015 06:36:12 GMT" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/westus/operations/e379e1f6-1489-4e05-8e95-616d62d120eb?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTM3OWUxZjYtMTQ4OS00ZTA1LThlOTUtNjE2ZDYyZDEyMGViP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/eastasia/operations/eb22cbbe-725e-45ec-b3d3-5b7f3427f199?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9lYjIyY2JiZS03MjVlLTQ1ZWMtYjNkMy01YjdmMzQyN2YxOTk/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - - - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"e379e1f6-1489-4e05-8e95-616d62d120eb\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-17T18:30:29.3297839-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"eb22cbbe-725e-45ec-b3d3-5b7f3427f199\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-23T23:30:23.8048753-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "132" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2232,7 +2398,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "bbfee3b8-3861-4f18-b49b-da1e379d7771" + "19d3930b-5c5a-4262-b9be-b3e22cf407a3" ], "Cache-Control": [ "no-cache" @@ -2242,37 +2408,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31985" + "31978" ], "x-ms-correlation-request-id": [ - "1483fc53-2059-494f-931f-f9e5da612f5e" + "5475c508-67c6-4d05-a2d1-08d99314dd6f" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T013028Z:1483fc53-2059-494f-931f-f9e5da612f5e" + "NORTHCENTRALUS:20150424T063644Z:5475c508-67c6-4d05-a2d1-08d99314dd6f" ], "Date": [ - "Sat, 18 Apr 2015 01:30:28 GMT" + "Fri, 24 Apr 2015 06:36:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/westus/operations/e379e1f6-1489-4e05-8e95-616d62d120eb?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTM3OWUxZjYtMTQ4OS00ZTA1LThlOTUtNjE2ZDYyZDEyMGViP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/eastasia/operations/eb22cbbe-725e-45ec-b3d3-5b7f3427f199?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9lYjIyY2JiZS03MjVlLTQ1ZWMtYjNkMy01YjdmMzQyN2YxOTk/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - - - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"e379e1f6-1489-4e05-8e95-616d62d120eb\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-17T18:30:29.3297839-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"eb22cbbe-725e-45ec-b3d3-5b7f3427f199\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-23T23:30:23.8048753-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "132" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2287,7 +2450,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4e932ff3-9c56-4791-ac27-3ce88b146a39" + "71ef44e0-2b4a-46fb-8777-220fae4a2208" ], "Cache-Control": [ "no-cache" @@ -2297,37 +2460,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31984" + "31975" ], "x-ms-correlation-request-id": [ - "2a67c705-2200-46ca-8004-7dcea79a9cfc" + "769afab3-fe9e-470c-a22e-84c9f37c4446" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T013059Z:2a67c705-2200-46ca-8004-7dcea79a9cfc" + "NORTHCENTRALUS:20150424T063715Z:769afab3-fe9e-470c-a22e-84c9f37c4446" ], "Date": [ - "Sat, 18 Apr 2015 01:30:58 GMT" + "Fri, 24 Apr 2015 06:37:15 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/westus/operations/e379e1f6-1489-4e05-8e95-616d62d120eb?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTM3OWUxZjYtMTQ4OS00ZTA1LThlOTUtNjE2ZDYyZDEyMGViP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/eastasia/operations/eb22cbbe-725e-45ec-b3d3-5b7f3427f199?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9lYjIyY2JiZS03MjVlLTQ1ZWMtYjNkMy01YjdmMzQyN2YxOTk/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - - - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"e379e1f6-1489-4e05-8e95-616d62d120eb\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-17T18:30:29.3297839-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"eb22cbbe-725e-45ec-b3d3-5b7f3427f199\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-04-23T23:30:23.8048753-07:00\",\r\n \"endTime\": \"2015-04-23T23:37:42.5577047-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "132" + "191" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2342,7 +2502,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c6b68012-6ca2-4198-bbff-2e1759c73379" + "998586fa-a7a4-44bc-af62-b6998067bf19" ], "Cache-Control": [ "no-cache" @@ -2352,37 +2512,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31983" + "31974" ], "x-ms-correlation-request-id": [ - "a11244c6-f08b-4a3f-92df-3df1ae2f8975" + "4a011338-8a91-48e1-ab10-3ce90add2da3" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T013129Z:a11244c6-f08b-4a3f-92df-3df1ae2f8975" + "NORTHCENTRALUS:20150424T063747Z:4a011338-8a91-48e1-ab10-3ce90add2da3" ], "Date": [ - "Sat, 18 Apr 2015 01:31:28 GMT" + "Fri, 24 Apr 2015 06:37:46 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/westus/operations/e379e1f6-1489-4e05-8e95-616d62d120eb?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTM3OWUxZjYtMTQ4OS00ZTA1LThlOTUtNjE2ZDYyZDEyMGViP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4902/providers/Microsoft.Compute/virtualMachines/vmpstestrg4902?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNDkwMi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtcHN0ZXN0cmc0OTAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - - - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"e379e1f6-1489-4e05-8e95-616d62d120eb\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-17T18:30:29.3297839-07:00\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201502\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg4902.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4902/providers/Microsoft.Network/networkInterfaces/nicpstestrg4902\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4902/providers/Microsoft.Compute/virtualMachines/vmpstestrg4902\",\r\n \"name\": \"vmpstestrg4902\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {}\r\n}", "ResponseHeaders": { "Content-Length": [ - "132" + "1351" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2397,7 +2554,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "39bb9315-0299-4cd0-8520-4735f2a7ffec" + "1936dde9-3656-4c70-9798-de7c5b725b63" ], "Cache-Control": [ "no-cache" @@ -2407,37 +2564,89 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31982" + "31973" ], "x-ms-correlation-request-id": [ - "27194e8f-ab20-42bc-a0b5-41a6ca6a0405" + "52b45d14-2074-4a75-96c0-d8dbe4b40eb4" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T013159Z:27194e8f-ab20-42bc-a0b5-41a6ca6a0405" + "NORTHCENTRALUS:20150424T063748Z:52b45d14-2074-4a75-96c0-d8dbe4b40eb4" ], "Date": [ - "Sat, 18 Apr 2015 01:31:58 GMT" + "Fri, 24 Apr 2015 06:37:48 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/westus/operations/e379e1f6-1489-4e05-8e95-616d62d120eb?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTM3OWUxZjYtMTQ4OS00ZTA1LThlOTUtNjE2ZDYyZDEyMGViP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/pstestrg4902/providers/Microsoft.Compute/virtualMachines/vmpstestrg4902?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNDkwMi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtcHN0ZXN0cmc0OTAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/eastasia/operations/c6a4ce03-d235-4b0b-8c8e-f56563e5ae9c?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c6a4ce03-d235-4b0b-8c8e-f56563e5ae9c" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/eastasia/operations/c6a4ce03-d235-4b0b-8c8e-f56563e5ae9c?monitor=true&api-version=2015-05-01-preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "24cf6fe9-8d50-42a9-95c6-962d23df4435" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150424T063758Z:24cf6fe9-8d50-42a9-95c6-962d23df4435" + ], + "Date": [ + "Fri, 24 Apr 2015 06:37:57 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/eastasia/operations/c6a4ce03-d235-4b0b-8c8e-f56563e5ae9c?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9jNmE0Y2UwMy1kMjM1LTRiMGItOGM4ZS1mNTY1NjNlNWFlOWM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - - - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"e379e1f6-1489-4e05-8e95-616d62d120eb\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-17T18:30:29.3297839-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"c6a4ce03-d235-4b0b-8c8e-f56563e5ae9c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-23T23:37:54.8546548-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "132" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2452,7 +2661,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7ad9ef67-8af5-48f3-a41e-62102907cac2" + "38a9b02a-d396-4959-bb92-68c13edca318" ], "Cache-Control": [ "no-cache" @@ -2462,37 +2671,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31981" + "31984" ], "x-ms-correlation-request-id": [ - "0904a5a6-59e5-4185-bf3c-62cd70052822" + "e5bc096b-8b2a-4011-adbe-c50c779c6819" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T013229Z:0904a5a6-59e5-4185-bf3c-62cd70052822" + "NORTHCENTRALUS:20150424T063759Z:e5bc096b-8b2a-4011-adbe-c50c779c6819" ], "Date": [ - "Sat, 18 Apr 2015 01:32:28 GMT" + "Fri, 24 Apr 2015 06:37:58 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/westus/operations/e379e1f6-1489-4e05-8e95-616d62d120eb?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTM3OWUxZjYtMTQ4OS00ZTA1LThlOTUtNjE2ZDYyZDEyMGViP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/eastasia/operations/c6a4ce03-d235-4b0b-8c8e-f56563e5ae9c?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9jNmE0Y2UwMy1kMjM1LTRiMGItOGM4ZS1mNTY1NjNlNWFlOWM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - - - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"e379e1f6-1489-4e05-8e95-616d62d120eb\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-17T18:30:29.3297839-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"c6a4ce03-d235-4b0b-8c8e-f56563e5ae9c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-23T23:37:54.8546548-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "132" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2507,7 +2713,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "58d1aee6-31be-40d3-8265-a4f2e0c58ddc" + "28fd4fcf-7dc7-406d-a582-5d76baa3665a" ], "Cache-Control": [ "no-cache" @@ -2520,34 +2726,31 @@ "31980" ], "x-ms-correlation-request-id": [ - "3a8d0070-7c6c-41a7-a1b5-62180404e523" + "dc211675-4aea-4a6c-80a7-42ea3ff1a3f0" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T013259Z:3a8d0070-7c6c-41a7-a1b5-62180404e523" + "NORTHCENTRALUS:20150424T063830Z:dc211675-4aea-4a6c-80a7-42ea3ff1a3f0" ], "Date": [ - "Sat, 18 Apr 2015 01:32:59 GMT" + "Fri, 24 Apr 2015 06:38:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/westus/operations/e379e1f6-1489-4e05-8e95-616d62d120eb?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTM3OWUxZjYtMTQ4OS00ZTA1LThlOTUtNjE2ZDYyZDEyMGViP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/eastasia/operations/c6a4ce03-d235-4b0b-8c8e-f56563e5ae9c?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9jNmE0Y2UwMy1kMjM1LTRiMGItOGM4ZS1mNTY1NjNlNWFlOWM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - - - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"e379e1f6-1489-4e05-8e95-616d62d120eb\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-17T18:30:29.3297839-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"c6a4ce03-d235-4b0b-8c8e-f56563e5ae9c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-23T23:37:54.8546548-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "132" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2562,7 +2765,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4f3c1fd2-3f3a-4be2-ae5e-4905b8ec45d2" + "c458fc91-4134-4822-93e5-f1a0ab2230ad" ], "Cache-Control": [ "no-cache" @@ -2575,34 +2778,31 @@ "31979" ], "x-ms-correlation-request-id": [ - "b4329dfb-33db-4e19-9610-709a4947122a" + "5048fef3-725d-4791-a2ae-026345f3d09d" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T013329Z:b4329dfb-33db-4e19-9610-709a4947122a" + "NORTHCENTRALUS:20150424T063901Z:5048fef3-725d-4791-a2ae-026345f3d09d" ], "Date": [ - "Sat, 18 Apr 2015 01:33:28 GMT" + "Fri, 24 Apr 2015 06:39:01 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/westus/operations/e379e1f6-1489-4e05-8e95-616d62d120eb?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTM3OWUxZjYtMTQ4OS00ZTA1LThlOTUtNjE2ZDYyZDEyMGViP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/eastasia/operations/c6a4ce03-d235-4b0b-8c8e-f56563e5ae9c?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9jNmE0Y2UwMy1kMjM1LTRiMGItOGM4ZS1mNTY1NjNlNWFlOWM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - - - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"e379e1f6-1489-4e05-8e95-616d62d120eb\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-17T18:30:29.3297839-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"c6a4ce03-d235-4b0b-8c8e-f56563e5ae9c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-23T23:37:54.8546548-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "132" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2617,7 +2817,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c7ea1863-3aa2-4cb8-803f-9ba7eda32781" + "58708764-5a45-4ee7-b45f-59e2627edd18" ], "Cache-Control": [ "no-cache" @@ -2630,34 +2830,31 @@ "31978" ], "x-ms-correlation-request-id": [ - "5b5e71fb-6408-4720-becb-8525e11f0a5c" + "eac3eb5d-66f7-4b6e-9eae-0b687a776a16" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T013359Z:5b5e71fb-6408-4720-becb-8525e11f0a5c" + "NORTHCENTRALUS:20150424T063933Z:eac3eb5d-66f7-4b6e-9eae-0b687a776a16" ], "Date": [ - "Sat, 18 Apr 2015 01:33:59 GMT" + "Fri, 24 Apr 2015 06:39:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/westus/operations/e379e1f6-1489-4e05-8e95-616d62d120eb?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTM3OWUxZjYtMTQ4OS00ZTA1LThlOTUtNjE2ZDYyZDEyMGViP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/eastasia/operations/c6a4ce03-d235-4b0b-8c8e-f56563e5ae9c?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9jNmE0Y2UwMy1kMjM1LTRiMGItOGM4ZS1mNTY1NjNlNWFlOWM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - - - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"e379e1f6-1489-4e05-8e95-616d62d120eb\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-04-17T18:30:29.3297839-07:00\",\r\n \"endTime\": \"2015-04-17T18:34:11.4852457-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"c6a4ce03-d235-4b0b-8c8e-f56563e5ae9c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-23T23:37:54.8546548-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "182" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2672,7 +2869,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d03405ce-38b0-4186-b935-d854738e2ca2" + "11cdf7ff-669c-4fc9-892f-1236c31ef52d" ], "Cache-Control": [ "no-cache" @@ -2685,31 +2882,34 @@ "31977" ], "x-ms-correlation-request-id": [ - "03b49ed6-55b6-4ae5-8718-6ab75eb8b068" + "2f9090cc-9b3b-4cd2-b04d-3aca82b4c10a" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T013430Z:03b49ed6-55b6-4ae5-8718-6ab75eb8b068" + "NORTHCENTRALUS:20150424T064004Z:2f9090cc-9b3b-4cd2-b04d-3aca82b4c10a" ], "Date": [ - "Sat, 18 Apr 2015 01:34:29 GMT" + "Fri, 24 Apr 2015 06:40:04 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourcegroups/pstestrg5600?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNTYwMD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/eastasia/operations/c6a4ce03-d235-4b0b-8c8e-f56563e5ae9c?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9jNmE0Y2UwMy1kMjM1LTRiMGItOGM4ZS1mNTY1NjNlNWFlOWM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"operationId\": \"c6a4ce03-d235-4b0b-8c8e-f56563e5ae9c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-23T23:37:54.8546548-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "0" + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" @@ -2717,45 +2917,92 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7d66411d-aa63-45fd-b6d4-c61a20288e55" + "eac0d416-1344-4b9f-9013-6879e9fcc8cc" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31976" ], "x-ms-correlation-request-id": [ - "7d66411d-aa63-45fd-b6d4-c61a20288e55" + "95d9d4e5-09c3-48b0-a554-a38c0c667b55" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T013430Z:7d66411d-aa63-45fd-b6d4-c61a20288e55" + "NORTHCENTRALUS:20150424T064036Z:95d9d4e5-09c3-48b0-a554-a38c0c667b55" + ], + "Date": [ + "Fri, 24 Apr 2015 06:40:35 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Compute/locations/eastasia/operations/c6a4ce03-d235-4b0b-8c8e-f56563e5ae9c?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9jNmE0Y2UwMy1kMjM1LTRiMGItOGM4ZS1mNTY1NjNlNWFlOWM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"c6a4ce03-d235-4b0b-8c8e-f56563e5ae9c\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-04-23T23:37:54.8546548-07:00\",\r\n \"endTime\": \"2015-04-23T23:40:57.5745763-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ + "f7d83d9a-4518-4764-b587-e7831a9169d7" + ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 18 Apr 2015 01:34:29 GMT" + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], - "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU2MDAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "x-ms-ratelimit-remaining-subscription-reads": [ + "31975" + ], + "x-ms-correlation-request-id": [ + "db03ad2a-80e3-4656-9082-5c9046ba4eec" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150424T064107Z:db03ad2a-80e3-4656-9082-5c9046ba4eec" + ], + "Date": [ + "Fri, 24 Apr 2015 06:41:06 GMT" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU2MDAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelUyTURBdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourcegroups/pstestrg4902?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNDkwMj9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { - "x-ms-version": [ - "2014-04-01-preview" - ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] @@ -2774,17 +3021,17 @@ "Retry-After": [ "15" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31985" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" ], "x-ms-request-id": [ - "65e16739-8887-4f83-850d-b02920296b9d" + "c13ca891-4eed-4a93-bdc8-15c6b0355219" ], "x-ms-correlation-request-id": [ - "65e16739-8887-4f83-850d-b02920296b9d" + "c13ca891-4eed-4a93-bdc8-15c6b0355219" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T013430Z:65e16739-8887-4f83-850d-b02920296b9d" + "NORTHCENTRALUS:20150424T064111Z:c13ca891-4eed-4a93-bdc8-15c6b0355219" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2793,17 +3040,17 @@ "no-cache" ], "Date": [ - "Sat, 18 Apr 2015 01:34:29 GMT" + "Fri, 24 Apr 2015 06:41:11 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU2MDAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQ5MDItRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU2MDAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelUyTURBdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQ5MDItRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelE1TURJdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2829,16 +3076,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31984" + "31996" ], "x-ms-request-id": [ - "9b7ddb25-d3fe-45e5-8e1d-83fc8031c5e7" + "426222ce-f7c3-4d4d-9e9b-9b3817461a44" ], "x-ms-correlation-request-id": [ - "9b7ddb25-d3fe-45e5-8e1d-83fc8031c5e7" + "426222ce-f7c3-4d4d-9e9b-9b3817461a44" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T013445Z:9b7ddb25-d3fe-45e5-8e1d-83fc8031c5e7" + "NORTHCENTRALUS:20150424T064112Z:426222ce-f7c3-4d4d-9e9b-9b3817461a44" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2847,17 +3094,17 @@ "no-cache" ], "Date": [ - "Sat, 18 Apr 2015 01:34:45 GMT" + "Fri, 24 Apr 2015 06:41:12 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU2MDAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQ5MDItRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU2MDAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelUyTURBdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQ5MDItRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelE1TURJdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2883,16 +3130,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31983" + "31995" ], "x-ms-request-id": [ - "35641f6a-5056-4c2b-9656-cc21c64f9027" + "805d41c3-6643-4c12-900e-a2343b5c356d" ], "x-ms-correlation-request-id": [ - "35641f6a-5056-4c2b-9656-cc21c64f9027" + "805d41c3-6643-4c12-900e-a2343b5c356d" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T013501Z:35641f6a-5056-4c2b-9656-cc21c64f9027" + "NORTHCENTRALUS:20150424T064128Z:805d41c3-6643-4c12-900e-a2343b5c356d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2901,17 +3148,17 @@ "no-cache" ], "Date": [ - "Sat, 18 Apr 2015 01:35:01 GMT" + "Fri, 24 Apr 2015 06:41:27 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU2MDAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQ5MDItRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU2MDAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelUyTURBdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQ5MDItRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelE1TURJdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2937,16 +3184,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31982" + "31994" ], "x-ms-request-id": [ - "703e8daa-06c5-4f27-9c22-674d8bbe82b5" + "f51f4c59-f797-42dd-97e8-46144e4acf8a" ], "x-ms-correlation-request-id": [ - "703e8daa-06c5-4f27-9c22-674d8bbe82b5" + "f51f4c59-f797-42dd-97e8-46144e4acf8a" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T013516Z:703e8daa-06c5-4f27-9c22-674d8bbe82b5" + "NORTHCENTRALUS:20150424T064143Z:f51f4c59-f797-42dd-97e8-46144e4acf8a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2955,17 +3202,17 @@ "no-cache" ], "Date": [ - "Sat, 18 Apr 2015 01:35:15 GMT" + "Fri, 24 Apr 2015 06:41:43 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU2MDAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQ5MDItRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU2MDAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelUyTURBdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQ5MDItRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelE1TURJdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2991,16 +3238,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31981" + "31993" ], "x-ms-request-id": [ - "a05d783f-30f4-4486-822f-4083a441b74e" + "b098d6d9-f55c-4e09-8156-a8cd1a879f30" ], "x-ms-correlation-request-id": [ - "a05d783f-30f4-4486-822f-4083a441b74e" + "b098d6d9-f55c-4e09-8156-a8cd1a879f30" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T013531Z:a05d783f-30f4-4486-822f-4083a441b74e" + "NORTHCENTRALUS:20150424T064159Z:b098d6d9-f55c-4e09-8156-a8cd1a879f30" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3009,17 +3256,17 @@ "no-cache" ], "Date": [ - "Sat, 18 Apr 2015 01:35:31 GMT" + "Fri, 24 Apr 2015 06:41:58 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU2MDAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQ5MDItRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU2MDAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelUyTURBdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQ5MDItRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelE1TURJdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3045,16 +3292,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31980" + "31992" ], "x-ms-request-id": [ - "bfe3fd11-6dbb-4705-b0fd-a0f32022e864" + "4c0615b3-115a-412b-a3c6-058d6696d9ac" ], "x-ms-correlation-request-id": [ - "bfe3fd11-6dbb-4705-b0fd-a0f32022e864" + "4c0615b3-115a-412b-a3c6-058d6696d9ac" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T013546Z:bfe3fd11-6dbb-4705-b0fd-a0f32022e864" + "NORTHCENTRALUS:20150424T064214Z:4c0615b3-115a-412b-a3c6-058d6696d9ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3063,17 +3310,17 @@ "no-cache" ], "Date": [ - "Sat, 18 Apr 2015 01:35:45 GMT" + "Fri, 24 Apr 2015 06:42:14 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU2MDAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQ5MDItRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU2MDAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelUyTURBdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQ5MDItRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelE1TURJdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3099,16 +3346,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31979" + "31991" ], "x-ms-request-id": [ - "143a8a78-9101-402e-b8ec-793c588f7e0a" + "15456f65-0fcb-4af6-8f92-35cd4ed1d0ec" ], "x-ms-correlation-request-id": [ - "143a8a78-9101-402e-b8ec-793c588f7e0a" + "15456f65-0fcb-4af6-8f92-35cd4ed1d0ec" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T013601Z:143a8a78-9101-402e-b8ec-793c588f7e0a" + "NORTHCENTRALUS:20150424T064230Z:15456f65-0fcb-4af6-8f92-35cd4ed1d0ec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3117,17 +3364,17 @@ "no-cache" ], "Date": [ - "Sat, 18 Apr 2015 01:36:00 GMT" + "Fri, 24 Apr 2015 06:42:29 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU2MDAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQ5MDItRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU2MDAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelUyTURBdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQ5MDItRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelE1TURJdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3153,16 +3400,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31978" + "31990" ], "x-ms-request-id": [ - "788543d5-f634-42eb-9dde-3b5479699385" + "691ae0c6-f6f3-4e3f-ba04-550827e35cc8" ], "x-ms-correlation-request-id": [ - "788543d5-f634-42eb-9dde-3b5479699385" + "691ae0c6-f6f3-4e3f-ba04-550827e35cc8" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T013616Z:788543d5-f634-42eb-9dde-3b5479699385" + "NORTHCENTRALUS:20150424T064245Z:691ae0c6-f6f3-4e3f-ba04-550827e35cc8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3171,17 +3418,17 @@ "no-cache" ], "Date": [ - "Sat, 18 Apr 2015 01:36:16 GMT" + "Fri, 24 Apr 2015 06:42:44 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU2MDAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQ5MDItRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU2MDAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelUyTURBdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQ5MDItRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelE1TURJdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3207,16 +3454,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31977" + "31989" ], "x-ms-request-id": [ - "6c9d48b0-b950-4bc5-bda4-bf47b446b5fa" + "1e22e03b-9755-42f8-a2ad-9e9deaaf4e6a" ], "x-ms-correlation-request-id": [ - "6c9d48b0-b950-4bc5-bda4-bf47b446b5fa" + "1e22e03b-9755-42f8-a2ad-9e9deaaf4e6a" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T013631Z:6c9d48b0-b950-4bc5-bda4-bf47b446b5fa" + "NORTHCENTRALUS:20150424T064301Z:1e22e03b-9755-42f8-a2ad-9e9deaaf4e6a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3225,17 +3472,17 @@ "no-cache" ], "Date": [ - "Sat, 18 Apr 2015 01:36:30 GMT" + "Fri, 24 Apr 2015 06:43:01 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU2MDAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQ5MDItRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU2MDAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelUyTURBdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQ5MDItRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelE1TURJdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3261,16 +3508,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31976" + "31988" ], "x-ms-request-id": [ - "c0fbb207-2b72-430c-bc5a-acd194832fd1" + "4f506eea-3212-4616-9b40-fcc091f99951" ], "x-ms-correlation-request-id": [ - "c0fbb207-2b72-430c-bc5a-acd194832fd1" + "4f506eea-3212-4616-9b40-fcc091f99951" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T013646Z:c0fbb207-2b72-430c-bc5a-acd194832fd1" + "NORTHCENTRALUS:20150424T064316Z:4f506eea-3212-4616-9b40-fcc091f99951" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3279,17 +3526,17 @@ "no-cache" ], "Date": [ - "Sat, 18 Apr 2015 01:36:46 GMT" + "Fri, 24 Apr 2015 06:43:16 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU2MDAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQ5MDItRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU2MDAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelUyTURBdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQ5MDItRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelE1TURJdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3315,16 +3562,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31975" + "31987" ], "x-ms-request-id": [ - "3cbf6b34-b5f5-4161-949a-5ab433f275f8" + "2ec28097-e5c1-42d3-8b65-3ad3fed9ede3" ], "x-ms-correlation-request-id": [ - "3cbf6b34-b5f5-4161-949a-5ab433f275f8" + "2ec28097-e5c1-42d3-8b65-3ad3fed9ede3" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T013701Z:3cbf6b34-b5f5-4161-949a-5ab433f275f8" + "NORTHCENTRALUS:20150424T064332Z:2ec28097-e5c1-42d3-8b65-3ad3fed9ede3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3333,17 +3580,17 @@ "no-cache" ], "Date": [ - "Sat, 18 Apr 2015 01:37:01 GMT" + "Fri, 24 Apr 2015 06:43:31 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU2MDAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQ5MDItRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU2MDAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelUyTURBdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzQ5MDItRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelE1TURJdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3366,16 +3613,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31974" + "31986" ], "x-ms-request-id": [ - "745712af-ac6c-4ad6-8d73-6d7b73935827" + "df847b1e-796d-4f2d-9cbb-2cd6eb09d8ce" ], "x-ms-correlation-request-id": [ - "745712af-ac6c-4ad6-8d73-6d7b73935827" + "df847b1e-796d-4f2d-9cbb-2cd6eb09d8ce" ], "x-ms-routing-request-id": [ - "WESTUS:20150418T013716Z:745712af-ac6c-4ad6-8d73-6d7b73935827" + "NORTHCENTRALUS:20150424T064347Z:df847b1e-796d-4f2d-9cbb-2cd6eb09d8ce" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3384,7 +3631,7 @@ "no-cache" ], "Date": [ - "Sat, 18 Apr 2015 01:37:16 GMT" + "Fri, 24 Apr 2015 06:43:47 GMT" ] }, "StatusCode": 200 @@ -3392,7 +3639,7 @@ ], "Names": { "Test-SingleNetworkInterface": [ - "pstestrg5600" + "pstestrg4902" ] }, "Variables": { @@ -3400,4 +3647,4 @@ "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", "Domain": "microsoft.com" } -} +} \ No newline at end of file diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestVirtualMachineCapture.json b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestVirtualMachineCapture.json new file mode 100644 index 000000000000..8aa4871c988f --- /dev/null +++ b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestVirtualMachineCapture.json @@ -0,0 +1,3449 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg7389?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNzM4OT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "104" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31999" + ], + "x-ms-request-id": [ + "92201f00-1e52-461c-a171-c44483145198" + ], + "x-ms-correlation-request-id": [ + "92201f00-1e52-461c-a171-c44483145198" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150425T225210Z:92201f00-1e52-461c-a171-c44483145198" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 25 Apr 2015 22:52:10 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg7389?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNzM4OT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31999" + ], + "x-ms-request-id": [ + "715035d1-3f48-4ae3-842b-5a5024f16cbf" + ], + "x-ms-correlation-request-id": [ + "715035d1-3f48-4ae3-842b-5a5024f16cbf" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150425T230158Z:715035d1-3f48-4ae3-842b-5a5024f16cbf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 25 Apr 2015 23:01:58 GMT" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg7389?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNzM4OT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastasia\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "30" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7389\",\r\n \"name\": \"pstestrg7389\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "179" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "2e2039d8-1627-4cd6-be00-227ca8be694a" + ], + "x-ms-correlation-request-id": [ + "2e2039d8-1627-4cd6-be00-227ca8be694a" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150425T225213Z:2e2039d8-1627-4cd6-be00-227ca8be694a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 25 Apr 2015 22:52:13 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7389/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzM4OS9yZXNvdXJjZXM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31998" + ], + "x-ms-request-id": [ + "5762b7ec-2214-4915-a630-8c080cc93fca" + ], + "x-ms-correlation-request-id": [ + "5762b7ec-2214-4915-a630-8c080cc93fca" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150425T225214Z:5762b7ec-2214-4915-a630-8c080cc93fca" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 25 Apr 2015 22:52:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg7389/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNzM4OS9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcGVybWlzc2lvbnM/YXBpLXZlcnNpb249MjAxNC0wNy0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "45" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "northcentralus:414ac16b-7ed5-4738-ab4a-5c57367ccfa7" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31999" + ], + "x-ms-correlation-request-id": [ + "95f93904-da81-437d-9ec5-c5ca3a2d10ed" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150425T225215Z:95f93904-da81-437d-9ec5-c5ca3a2d10ed" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 25 Apr 2015 22:52:14 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7389/providers/Microsoft.Network/virtualnetworks/vnetpstestrg7389?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzM4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzczODk/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "69" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "c0055a97-81ae-4842-b329-645768ef24fe" + ], + "x-ms-correlation-request-id": [ + "c0055a97-81ae-4842-b329-645768ef24fe" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150425T225214Z:c0055a97-81ae-4842-b329-645768ef24fe" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 25 Apr 2015 22:52:14 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7389/providers/Microsoft.Network/virtualnetworks/vnetpstestrg7389?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzM4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzczODk/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vnetpstestrg7389\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7389/providers/Microsoft.Network/virtualNetworks/vnetpstestrg7389\",\r\n \"etag\": \"W/\\\"7a13861b-299d-44bb-9d75-f9148bd23bc4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\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 \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg7389\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7389/providers/Microsoft.Network/virtualNetworks/vnetpstestrg7389/subnets/subnetpstestrg7389\",\r\n \"etag\": \"W/\\\"7a13861b-299d-44bb-9d75-f9148bd23bc4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"eastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "962" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "f672027c-f028-4224-a46b-c97136d4a32c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"7a13861b-299d-44bb-9d75-f9148bd23bc4\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31995" + ], + "x-ms-correlation-request-id": [ + "d7604112-4fb3-4b01-a1bd-470d16da68ab" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150425T225224Z:d7604112-4fb3-4b01-a1bd-470d16da68ab" + ], + "Date": [ + "Sat, 25 Apr 2015 22:52:24 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7389/providers/Microsoft.Network/virtualnetworks/vnetpstestrg7389?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzM4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzczODk/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vnetpstestrg7389\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7389/providers/Microsoft.Network/virtualNetworks/vnetpstestrg7389\",\r\n \"etag\": \"W/\\\"7a13861b-299d-44bb-9d75-f9148bd23bc4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\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 \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg7389\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7389/providers/Microsoft.Network/virtualNetworks/vnetpstestrg7389/subnets/subnetpstestrg7389\",\r\n \"etag\": \"W/\\\"7a13861b-299d-44bb-9d75-f9148bd23bc4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"eastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "962" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "790d1009-c45d-4e0f-ac3b-91a9d73a924c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"7a13861b-299d-44bb-9d75-f9148bd23bc4\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31994" + ], + "x-ms-correlation-request-id": [ + "033aa050-6b8e-4023-9b84-f7fe37a2256d" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150425T225225Z:033aa050-6b8e-4023-9b84-f7fe37a2256d" + ], + "Date": [ + "Sat, 25 Apr 2015 22:52:24 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7389/providers/Microsoft.Network/virtualnetworks/vnetpstestrg7389?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzM4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzczODk/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "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 \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": []\r\n },\r\n \"name\": \"subnetpstestrg7389\"\r\n }\r\n ]\r\n },\r\n \"name\": \"vnetpstestrg7389\",\r\n \"type\": \"microsoft.network/virtualNetworks\",\r\n \"location\": \"eastasia\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "502" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vnetpstestrg7389\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7389/providers/Microsoft.Network/virtualNetworks/vnetpstestrg7389\",\r\n \"etag\": \"W/\\\"7fe13bad-a089-4fc5-baa8-125921e865e7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\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 \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg7389\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7389/providers/Microsoft.Network/virtualNetworks/vnetpstestrg7389/subnets/subnetpstestrg7389\",\r\n \"etag\": \"W/\\\"7fe13bad-a089-4fc5-baa8-125921e865e7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"eastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "960" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "1f74598f-6fd3-43cd-843a-a783ff2c32ac" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/eastasia/operations/1f74598f-6fd3-43cd-843a-a783ff2c32ac?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "87f5b90a-35e1-4043-8190-1ed83133b05b" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150425T225223Z:87f5b90a-35e1-4043-8190-1ed83133b05b" + ], + "Date": [ + "Sat, 25 Apr 2015 22:52:23 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/eastasia/operations/1f74598f-6fd3-43cd-843a-a783ff2c32ac?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy8xZjc0NTk4Zi02ZmQzLTQzY2QtODQzYS1hNzgzZmYyYzMyYWM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-05-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "678cbe41-ef40-493e-b966-06efdf5f7f93" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31996" + ], + "x-ms-correlation-request-id": [ + "698e3974-0749-4736-a08c-6a0641e0be11" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150425T225224Z:698e3974-0749-4736-a08c-6a0641e0be11" + ], + "Date": [ + "Sat, 25 Apr 2015 22:52:24 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7389/providers/Microsoft.Network/publicIPAddresses/pubippstestrg7389/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzM4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHViaXBwc3Rlc3RyZzczODkvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "69" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "0a7e7d7d-9bae-4d1a-8450-940acbf16cbc" + ], + "x-ms-correlation-request-id": [ + "0a7e7d7d-9bae-4d1a-8450-940acbf16cbc" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150425T225225Z:0a7e7d7d-9bae-4d1a-8450-940acbf16cbc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 25 Apr 2015 22:52:25 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7389/providers/Microsoft.Network/publicIPAddresses/pubippstestrg7389/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzM4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHViaXBwc3Rlc3RyZzczODkvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pubippstestrg7389\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7389/providers/Microsoft.Network/publicIPAddresses/pubippstestrg7389\",\r\n \"etag\": \"W/\\\"5f040bd2-2ef1-43d4-8b85-79b27c64b5de\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubippstestrg7389\",\r\n \"fqdn\": \"pubippstestrg7389.eastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"eastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "554" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d37fcadf-9fe5-4593-baf1-11505692b2a6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"5f040bd2-2ef1-43d4-8b85-79b27c64b5de\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31991" + ], + "x-ms-correlation-request-id": [ + "280196c9-c83e-4d8d-b2ef-99fbc1aa49fa" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150425T225234Z:280196c9-c83e-4d8d-b2ef-99fbc1aa49fa" + ], + "Date": [ + "Sat, 25 Apr 2015 22:52:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7389/providers/Microsoft.Network/publicIPAddresses/pubippstestrg7389/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzM4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHViaXBwc3Rlc3RyZzczODkvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pubippstestrg7389\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7389/providers/Microsoft.Network/publicIPAddresses/pubippstestrg7389\",\r\n \"etag\": \"W/\\\"5f040bd2-2ef1-43d4-8b85-79b27c64b5de\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubippstestrg7389\",\r\n \"fqdn\": \"pubippstestrg7389.eastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"eastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "554" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e37f6db9-d3fb-4412-ad98-9e33294f287a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"5f040bd2-2ef1-43d4-8b85-79b27c64b5de\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31990" + ], + "x-ms-correlation-request-id": [ + "8ca15a2b-c0e6-453b-9313-8f3ad4f49c94" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150425T225235Z:8ca15a2b-c0e6-453b-9313-8f3ad4f49c94" + ], + "Date": [ + "Sat, 25 Apr 2015 22:52:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7389/providers/Microsoft.Network/publicIPAddresses/pubippstestrg7389/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzM4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHViaXBwc3Rlc3RyZzczODkvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubippstestrg7389\"\r\n }\r\n },\r\n \"name\": \"pubippstestrg7389\",\r\n \"type\": \"microsoft.network/publicIPAddresses\",\r\n \"location\": \"eastasia\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "256" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pubippstestrg7389\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7389/providers/Microsoft.Network/publicIPAddresses/pubippstestrg7389\",\r\n \"etag\": \"W/\\\"429c1e40-6b95-441f-8f11-8e76a9badc46\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubippstestrg7389\",\r\n \"fqdn\": \"pubippstestrg7389.eastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"eastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "553" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "486b4241-4af9-4fd9-b77a-3044b0dd29ab" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/eastasia/operations/486b4241-4af9-4fd9-b77a-3044b0dd29ab?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "edd0f315-327f-402e-9337-f44576142516" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150425T225233Z:edd0f315-327f-402e-9337-f44576142516" + ], + "Date": [ + "Sat, 25 Apr 2015 22:52:33 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/eastasia/operations/486b4241-4af9-4fd9-b77a-3044b0dd29ab?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy80ODZiNDI0MS00YWY5LTRmZDktYjc3YS0zMDQ0YjBkZDI5YWI/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-05-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "9cf38782-a76a-4b47-9bc1-933a5ac5b195" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31992" + ], + "x-ms-correlation-request-id": [ + "0d0d0d72-e1e7-4a66-adca-358eb5448bdc" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150425T225234Z:0d0d0d72-e1e7-4a66-adca-358eb5448bdc" + ], + "Date": [ + "Sat, 25 Apr 2015 22:52:33 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7389/providers/Microsoft.Network/networkInterfaces/nicpstestrg7389?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzM4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljcHN0ZXN0cmc3Mzg5P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "69" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "518c9255-902e-4369-9dec-7ab9dfad3921" + ], + "x-ms-correlation-request-id": [ + "518c9255-902e-4369-9dec-7ab9dfad3921" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150425T225235Z:518c9255-902e-4369-9dec-7ab9dfad3921" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 25 Apr 2015 22:52:34 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7389/providers/Microsoft.Network/networkInterfaces/nicpstestrg7389?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzM4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljcHN0ZXN0cmc3Mzg5P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"nicpstestrg7389\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7389/providers/Microsoft.Network/networkInterfaces/nicpstestrg7389\",\r\n \"etag\": \"W/\\\"ff0f39af-18d3-45b7-99bb-edf066f99f97\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7389/providers/Microsoft.Network/networkInterfaces/nicpstestrg7389/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"ff0f39af-18d3-45b7-99bb-edf066f99f97\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7389/providers/Microsoft.Network/publicIPAddresses/pubippstestrg7389\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7389/providers/Microsoft.Network/virtualNetworks/vnetpstestrg7389/subnets/subnetpstestrg7389\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"eastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1302" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "9702b36e-3c8b-42e7-bfb1-43a7472f0fed" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"ff0f39af-18d3-45b7-99bb-edf066f99f97\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31987" + ], + "x-ms-correlation-request-id": [ + "307b5201-fd18-4b3b-a946-b6d5c64887e5" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150425T225243Z:307b5201-fd18-4b3b-a946-b6d5c64887e5" + ], + "Date": [ + "Sat, 25 Apr 2015 22:52:42 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7389/providers/Microsoft.Network/networkInterfaces/nicpstestrg7389?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzM4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljcHN0ZXN0cmc3Mzg5P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"nicpstestrg7389\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7389/providers/Microsoft.Network/networkInterfaces/nicpstestrg7389\",\r\n \"etag\": \"W/\\\"ff0f39af-18d3-45b7-99bb-edf066f99f97\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7389/providers/Microsoft.Network/networkInterfaces/nicpstestrg7389/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"ff0f39af-18d3-45b7-99bb-edf066f99f97\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7389/providers/Microsoft.Network/publicIPAddresses/pubippstestrg7389\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7389/providers/Microsoft.Network/virtualNetworks/vnetpstestrg7389/subnets/subnetpstestrg7389\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"eastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1302" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "66e08ea8-c174-44d2-b61a-bdd3f412ce9f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"ff0f39af-18d3-45b7-99bb-edf066f99f97\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31986" + ], + "x-ms-correlation-request-id": [ + "8888d988-f234-4e59-a54c-b89102fd3d65" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150425T225243Z:8888d988-f234-4e59-a54c-b89102fd3d65" + ], + "Date": [ + "Sat, 25 Apr 2015 22:52:42 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7389/providers/Microsoft.Network/networkInterfaces/nicpstestrg7389?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzM4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljcHN0ZXN0cmc3Mzg5P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7389/providers/Microsoft.Network/virtualNetworks/vnetpstestrg7389/subnets/subnetpstestrg7389\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7389/providers/Microsoft.Network/publicIPAddresses/pubippstestrg7389\"\r\n },\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": []\r\n },\r\n \"name\": \"ipconfig1\"\r\n }\r\n ],\r\n \"primary\": false\r\n },\r\n \"name\": \"nicpstestrg7389\",\r\n \"type\": \"microsoft.network/networkInterfaces\",\r\n \"location\": \"eastasia\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "859" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"nicpstestrg7389\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7389/providers/Microsoft.Network/networkInterfaces/nicpstestrg7389\",\r\n \"etag\": \"W/\\\"ff0f39af-18d3-45b7-99bb-edf066f99f97\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7389/providers/Microsoft.Network/networkInterfaces/nicpstestrg7389/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"ff0f39af-18d3-45b7-99bb-edf066f99f97\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7389/providers/Microsoft.Network/publicIPAddresses/pubippstestrg7389\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7389/providers/Microsoft.Network/virtualNetworks/vnetpstestrg7389/subnets/subnetpstestrg7389\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"eastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1302" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "8cdb6aaf-343d-43c3-9a74-bddac407d444" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/eastasia/operations/8cdb6aaf-343d-43c3-9a74-bddac407d444?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "03371ee0-397e-4477-be23-48d0ee07962e" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150425T225242Z:03371ee0-397e-4477-be23-48d0ee07962e" + ], + "Date": [ + "Sat, 25 Apr 2015 22:52:41 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/eastasia/operations/8cdb6aaf-343d-43c3-9a74-bddac407d444?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy84Y2RiNmFhZi0zNDNkLTQzYzMtOWE3NC1iZGRhYzQwN2Q0NDQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-05-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "4888bc53-3d5d-403f-b2f3-edd884afd90b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31988" + ], + "x-ms-correlation-request-id": [ + "bb97d619-088a-42ee-b8f4-2d2b8b190e7f" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150425T225243Z:bb97d619-088a-42ee-b8f4-2d2b8b190e7f" + ], + "Date": [ + "Sat, 25 Apr 2015 22:52:42 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7389/providers/Microsoft.Storage/storageAccounts/stopstestrg7389?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzM4OS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzM4OT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "90" + ], + "x-ms-client-request-id": [ + "31d17335-0ea0-45c8-b5cb-9e302793f42b" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "25" + ], + "x-ms-request-id": [ + "e04fc9a3-ad8b-401d-8f84-ad56861813cd" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/e04fc9a3-ad8b-401d-8f84-ad56861813cd?monitor=true&api-version=2015-05-01-preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "8c38d88c-304d-4cde-8910-bcb070573632" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150425T225259Z:8c38d88c-304d-4cde-8910-bcb070573632" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Sat, 25 Apr 2015 22:52:59 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/e04fc9a3-ad8b-401d-8f84-ad56861813cd?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2UwNGZjOWEzLWFkOGItNDAxZC04Zjg0LWFkNTY4NjE4MTNjZD9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5e747e82-6c67-4663-ae13-1c2bbdfe0af5" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "25" + ], + "x-ms-request-id": [ + "74ab708e-9f11-447d-b149-0bc22938c24b" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/e04fc9a3-ad8b-401d-8f84-ad56861813cd?monitor=true&api-version=2015-05-01-preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31999" + ], + "x-ms-correlation-request-id": [ + "3ff14ed6-399a-4681-a12f-4c291657683f" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150425T225300Z:3ff14ed6-399a-4681-a12f-4c291657683f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Sat, 25 Apr 2015 22:53:00 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/e04fc9a3-ad8b-401d-8f84-ad56861813cd?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2UwNGZjOWEzLWFkOGItNDAxZC04Zjg0LWFkNTY4NjE4MTNjZD9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1f3ba36a-5a29-4cef-b231-8544f66f340a" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n },\r\n \"location\": \"East Asia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "68" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "2c821d95-4dd8-4ef7-9474-55083aa659c3" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31998" + ], + "x-ms-correlation-request-id": [ + "dde81749-329e-42fc-b912-6f2cd754f098" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150425T225325Z:dde81749-329e-42fc-b912-6f2cd754f098" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Sat, 25 Apr 2015 22:53:24 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7389/providers/Microsoft.Storage/storageAccounts/stopstestrg7389?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzM4OS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzM4OT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7f5eb936-803d-4c70-8bdc-2501be0cc092" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7389/providers/Microsoft.Storage/storageAccounts/stopstestrg7389\",\r\n \"name\": \"stopstestrg7389\",\r\n \"location\": \"East Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stopstestrg7389.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg7389.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg7389.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"East Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"Southeast Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-04-25T22:52:56.2859179Z\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "683" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "841d66a0-85d4-47fa-b156-60b312b84063" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31997" + ], + "x-ms-correlation-request-id": [ + "337de1db-4820-4791-afdc-47ae863446bb" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150425T225325Z:337de1db-4820-4791-afdc-47ae863446bb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Sat, 25 Apr 2015 22:53:24 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7389/providers/Microsoft.Storage/storageAccounts/stopstestrg7389?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzM4OS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzM4OT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "422e0fe8-abef-4757-866b-e427c497b053" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7389/providers/Microsoft.Storage/storageAccounts/stopstestrg7389\",\r\n \"name\": \"stopstestrg7389\",\r\n \"location\": \"East Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stopstestrg7389.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg7389.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg7389.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"East Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"Southeast Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-04-25T22:52:56.2859179Z\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "683" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a585f09d-a6e2-4f29-ad07-f0d8134ff414" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31996" + ], + "x-ms-correlation-request-id": [ + "a1dc2c90-88c9-4973-83cd-b07c7ed48c36" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150425T225325Z:a1dc2c90-88c9-4973-83cd-b07c7ed48c36" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Sat, 25 Apr 2015 22:53:24 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/publishers?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"boxless\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/boxless\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"CloudLink.SecureVM\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/CloudLink.SecureVM\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"informatica-cloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/informatica-cloud\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"marketplace-test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/marketplace-test\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"metavistech\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/metavistech\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftWindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServerEssentials\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MSOpenTech.Extensions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MSOpenTech.Extensions\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"seagate\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/seagate\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"sharefile\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/sharefile\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"sisense\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/sisense\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"vision_solutions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/vision_solutions\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/wowza\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "14133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f3d18298-e6d4-4f1e-8efb-d453cc898102" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31985" + ], + "x-ms-correlation-request-id": [ + "ab308a9c-7a8d-4a71-9073-06e991d8a753" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150425T225326Z:ab308a9c-7a8d-4a71-9073-06e991d8a753" + ], + "Date": [ + "Sat, 25 Apr 2015 22:53:25 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"WindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "262" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "7b016651-b27e-4cc2-8fe5-4ea18ea6eb87" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31998" + ], + "x-ms-correlation-request-id": [ + "ed388ef4-8c8b-4ef4-812b-a4eb62862c67" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150425T225429Z:ed388ef4-8c8b-4ef4-812b-a4eb62862c67" + ], + "Date": [ + "Sat, 25 Apr 2015 22:54:28 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvV2luZG93c1NlcnZlci9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"2008-R2-SP1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"2012-Datacenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"2012-R2-Datacenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Windows-Server-Technical-Preview\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/Windows-Server-Technical-Preview\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "1163" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "caaee8e9-ba34-450d-a6be-fd9be670e102" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31997" + ], + "x-ms-correlation-request-id": [ + "ccad0648-8a3d-4958-871b-0994e5632599" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150425T225430Z:ccad0648-8a3d-4958-871b-0994e5632599" + ], + "Date": [ + "Sat, 25 Apr 2015 22:54:29 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvV2luZG93c1NlcnZlci9za3VzLzIwMDgtUjItU1AxL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"2.0.201502\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201502\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"2.0.201503\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201503\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "589" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ba988a92-08bc-459e-866d-31d5f70e7069" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31996" + ], + "x-ms-correlation-request-id": [ + "0e7706cc-2838-4e0d-96a8-b726b1021371" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150425T225431Z:0e7706cc-2838-4e0d-96a8-b726b1021371" + ], + "Date": [ + "Sat, 25 Apr 2015 22:54:30 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions/2.0.201502?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvV2luZG93c1NlcnZlci9za3VzLzIwMDgtUjItU1AxL3ZlcnNpb25zLzIuMC4yMDE1MDI/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastasia\",\r\n \"name\": \"2.0.201502\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201502\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "397" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "8679a001-b176-405c-9345-34e0dd490b82" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31995" + ], + "x-ms-correlation-request-id": [ + "4fc2cbe7-9993-4529-8e41-26ad21ad3e3f" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150425T225432Z:4fc2cbe7-9993-4529-8e41-26ad21ad3e3f" + ], + "Date": [ + "Sat, 25 Apr 2015 22:54:32 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7389/providers/Microsoft.Compute/virtualMachines/vmpstestrg7389?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzM4OS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtcHN0ZXN0cmc3Mzg5P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201502\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"osDisk\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg7389.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"createOption\": \"FromImage\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123pstestrg7389\",\r\n \"windowsConfiguration\": {}\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7389/providers/Microsoft.Network/networkInterfaces/nicpstestrg7389\"\r\n }\r\n ]\r\n }\r\n },\r\n \"name\": \"vmpstestrg7389\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "1070" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201502\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg7389.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7389/providers/Microsoft.Network/networkInterfaces/nicpstestrg7389\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7389/providers/Microsoft.Compute/virtualMachines/vmpstestrg7389\",\r\n \"name\": \"vmpstestrg7389\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {}\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1350" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/04e4d368-bfa0-47c2-81d4-6d067574a999?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "04e4d368-bfa0-47c2-81d4-6d067574a999" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "429bd5d7-c22a-447a-aeb4-8dc38fc4b7e1" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150425T225442Z:429bd5d7-c22a-447a-aeb4-8dc38fc4b7e1" + ], + "Date": [ + "Sat, 25 Apr 2015 22:54:42 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/04e4d368-bfa0-47c2-81d4-6d067574a999?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy8wNGU0ZDM2OC1iZmEwLTQ3YzItODFkNC02ZDA2NzU3NGE5OTk/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"04e4d368-bfa0-47c2-81d4-6d067574a999\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-25T15:54:38.7995707-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "0d8e2806-3902-49aa-952e-407e776f7c0f" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31994" + ], + "x-ms-correlation-request-id": [ + "8f862fa3-dc7a-4b96-83fd-263af0698913" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150425T225443Z:8f862fa3-dc7a-4b96-83fd-263af0698913" + ], + "Date": [ + "Sat, 25 Apr 2015 22:54:43 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/04e4d368-bfa0-47c2-81d4-6d067574a999?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy8wNGU0ZDM2OC1iZmEwLTQ3YzItODFkNC02ZDA2NzU3NGE5OTk/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"04e4d368-bfa0-47c2-81d4-6d067574a999\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-25T15:54:38.7995707-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "14935061-05a9-4cdc-a009-2ebd1bf70d60" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31993" + ], + "x-ms-correlation-request-id": [ + "2df4505b-76fe-46c3-a87b-56902e9504ba" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150425T225514Z:2df4505b-76fe-46c3-a87b-56902e9504ba" + ], + "Date": [ + "Sat, 25 Apr 2015 22:55:14 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/04e4d368-bfa0-47c2-81d4-6d067574a999?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy8wNGU0ZDM2OC1iZmEwLTQ3YzItODFkNC02ZDA2NzU3NGE5OTk/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"04e4d368-bfa0-47c2-81d4-6d067574a999\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-25T15:54:38.7995707-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a5f309a0-703f-4a5a-baf9-628df239b9df" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31992" + ], + "x-ms-correlation-request-id": [ + "fd7eb7a6-f687-49f0-9ea1-dcdbe0c1c83a" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150425T225545Z:fd7eb7a6-f687-49f0-9ea1-dcdbe0c1c83a" + ], + "Date": [ + "Sat, 25 Apr 2015 22:55:45 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/04e4d368-bfa0-47c2-81d4-6d067574a999?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy8wNGU0ZDM2OC1iZmEwLTQ3YzItODFkNC02ZDA2NzU3NGE5OTk/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"04e4d368-bfa0-47c2-81d4-6d067574a999\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-25T15:54:38.7995707-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "be05904d-a106-4db4-9fc8-e13f6b20e6be" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31991" + ], + "x-ms-correlation-request-id": [ + "eb63f96e-8b32-4390-bf08-41f7fa233f2d" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150425T225616Z:eb63f96e-8b32-4390-bf08-41f7fa233f2d" + ], + "Date": [ + "Sat, 25 Apr 2015 22:56:16 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/04e4d368-bfa0-47c2-81d4-6d067574a999?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy8wNGU0ZDM2OC1iZmEwLTQ3YzItODFkNC02ZDA2NzU3NGE5OTk/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"04e4d368-bfa0-47c2-81d4-6d067574a999\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-25T15:54:38.7995707-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "4c2f7d37-76bf-4f66-87ad-96d942b096a3" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31990" + ], + "x-ms-correlation-request-id": [ + "9ba15c0e-350b-4111-9071-2e5033ab5ba7" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150425T225647Z:9ba15c0e-350b-4111-9071-2e5033ab5ba7" + ], + "Date": [ + "Sat, 25 Apr 2015 22:56:47 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/04e4d368-bfa0-47c2-81d4-6d067574a999?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy8wNGU0ZDM2OC1iZmEwLTQ3YzItODFkNC02ZDA2NzU3NGE5OTk/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"04e4d368-bfa0-47c2-81d4-6d067574a999\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-25T15:54:38.7995707-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "e3ee5299-8cc9-4203-a5e2-ca18717c3289" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31989" + ], + "x-ms-correlation-request-id": [ + "394debf7-6636-4dea-bda6-4f25c641b47b" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150425T225718Z:394debf7-6636-4dea-bda6-4f25c641b47b" + ], + "Date": [ + "Sat, 25 Apr 2015 22:57:17 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/04e4d368-bfa0-47c2-81d4-6d067574a999?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy8wNGU0ZDM2OC1iZmEwLTQ3YzItODFkNC02ZDA2NzU3NGE5OTk/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"04e4d368-bfa0-47c2-81d4-6d067574a999\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-25T15:54:38.7995707-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "84f3da53-aa85-4763-8793-d5df1fb98f9a" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31988" + ], + "x-ms-correlation-request-id": [ + "5948f070-de07-4914-814d-70a012568828" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150425T225749Z:5948f070-de07-4914-814d-70a012568828" + ], + "Date": [ + "Sat, 25 Apr 2015 22:57:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/04e4d368-bfa0-47c2-81d4-6d067574a999?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy8wNGU0ZDM2OC1iZmEwLTQ3YzItODFkNC02ZDA2NzU3NGE5OTk/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"04e4d368-bfa0-47c2-81d4-6d067574a999\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-25T15:54:38.7995707-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "dce660a5-8281-4efa-b88a-4604895c9e7a" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31987" + ], + "x-ms-correlation-request-id": [ + "449caa47-b452-4a17-b310-8975c6b1996e" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150425T225820Z:449caa47-b452-4a17-b310-8975c6b1996e" + ], + "Date": [ + "Sat, 25 Apr 2015 22:58:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/04e4d368-bfa0-47c2-81d4-6d067574a999?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy8wNGU0ZDM2OC1iZmEwLTQ3YzItODFkNC02ZDA2NzU3NGE5OTk/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"04e4d368-bfa0-47c2-81d4-6d067574a999\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-25T15:54:38.7995707-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "0252bf48-fc30-4881-b57f-c440e1a3893e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31986" + ], + "x-ms-correlation-request-id": [ + "d02da6ea-b153-430d-b5b4-ee2d4b758b10" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150425T225851Z:d02da6ea-b153-430d-b5b4-ee2d4b758b10" + ], + "Date": [ + "Sat, 25 Apr 2015 22:58:51 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/04e4d368-bfa0-47c2-81d4-6d067574a999?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy8wNGU0ZDM2OC1iZmEwLTQ3YzItODFkNC02ZDA2NzU3NGE5OTk/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"04e4d368-bfa0-47c2-81d4-6d067574a999\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-25T15:54:38.7995707-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "0408be00-7fb1-4327-a46d-24dd98b441e4" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31985" + ], + "x-ms-correlation-request-id": [ + "61186158-621b-44f4-83b2-2e5c6f561845" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150425T225922Z:61186158-621b-44f4-83b2-2e5c6f561845" + ], + "Date": [ + "Sat, 25 Apr 2015 22:59:22 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/04e4d368-bfa0-47c2-81d4-6d067574a999?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy8wNGU0ZDM2OC1iZmEwLTQ3YzItODFkNC02ZDA2NzU3NGE5OTk/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"04e4d368-bfa0-47c2-81d4-6d067574a999\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-04-25T15:54:38.7995707-07:00\",\r\n \"endTime\": \"2015-04-25T15:59:48.914839-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "190" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "e7b50d2f-5fa1-4ffb-95a6-80d8ae72541d" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31984" + ], + "x-ms-correlation-request-id": [ + "eda47c26-2d3e-4a32-95b7-29857f0d53fa" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150425T225953Z:eda47c26-2d3e-4a32-95b7-29857f0d53fa" + ], + "Date": [ + "Sat, 25 Apr 2015 22:59:52 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7389/providers/Microsoft.Compute/virtualMachines/vmpstestrg7389/deallocate?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzM4OS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtcHN0ZXN0cmc3Mzg5L2RlYWxsb2NhdGU/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/d2fd5059-0728-4f26-ab08-15d2022e0a28?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d2fd5059-0728-4f26-ab08-15d2022e0a28" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/d2fd5059-0728-4f26-ab08-15d2022e0a28?monitor=true&api-version=2015-05-01-preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "fdc0a065-41f9-4cfc-a726-a9d65c71a6df" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150425T225954Z:fdc0a065-41f9-4cfc-a726-a9d65c71a6df" + ], + "Date": [ + "Sat, 25 Apr 2015 22:59:53 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/d2fd5059-0728-4f26-ab08-15d2022e0a28?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9kMmZkNTA1OS0wNzI4LTRmMjYtYWIwOC0xNWQyMDIyZTBhMjg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"d2fd5059-0728-4f26-ab08-15d2022e0a28\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-25T15:59:53.2274811-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "1bfa81db-86e4-451d-8d85-d5c5daa31210" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31983" + ], + "x-ms-correlation-request-id": [ + "b332853f-55ad-4179-9e35-31c3ca72bcff" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150425T230016Z:b332853f-55ad-4179-9e35-31c3ca72bcff" + ], + "Date": [ + "Sat, 25 Apr 2015 23:00:15 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/d2fd5059-0728-4f26-ab08-15d2022e0a28?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9kMmZkNTA1OS0wNzI4LTRmMjYtYWIwOC0xNWQyMDIyZTBhMjg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"d2fd5059-0728-4f26-ab08-15d2022e0a28\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-25T15:59:53.2274811-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "387ccac1-521c-4c76-a307-6b16d3fb6cc0" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31982" + ], + "x-ms-correlation-request-id": [ + "c9397b95-b058-4a9d-aacd-a373ea65e303" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150425T230047Z:c9397b95-b058-4a9d-aacd-a373ea65e303" + ], + "Date": [ + "Sat, 25 Apr 2015 23:00:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/d2fd5059-0728-4f26-ab08-15d2022e0a28?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9kMmZkNTA1OS0wNzI4LTRmMjYtYWIwOC0xNWQyMDIyZTBhMjg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"d2fd5059-0728-4f26-ab08-15d2022e0a28\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-25T15:59:53.2274811-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "1eab8e37-d121-4c40-8ed0-5c585fa1eb5f" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31981" + ], + "x-ms-correlation-request-id": [ + "028a94c5-59b7-45e2-a608-20782c6dfbfc" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150425T230118Z:028a94c5-59b7-45e2-a608-20782c6dfbfc" + ], + "Date": [ + "Sat, 25 Apr 2015 23:01:17 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/d2fd5059-0728-4f26-ab08-15d2022e0a28?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9kMmZkNTA1OS0wNzI4LTRmMjYtYWIwOC0xNWQyMDIyZTBhMjg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"d2fd5059-0728-4f26-ab08-15d2022e0a28\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-04-25T15:59:53.2274811-07:00\",\r\n \"endTime\": \"2015-04-25T16:01:46.6828028-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "634337e1-2047-4595-8be8-7986e09ae226" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31980" + ], + "x-ms-correlation-request-id": [ + "5e2cf978-e401-4ad9-a6d7-71be8dc17d95" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150425T230148Z:5e2cf978-e401-4ad9-a6d7-71be8dc17d95" + ], + "Date": [ + "Sat, 25 Apr 2015 23:01:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7389/providers/Microsoft.Compute/virtualMachines/vmpstestrg7389/generalize?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzM4OS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtcHN0ZXN0cmc3Mzg5L2dlbmVyYWxpemU/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d1bc127d-7620-4fb8-9ce7-ea1f1d61ccc2" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "89a09085-cb27-42f5-8971-bfc6f67a813b" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150425T230149Z:89a09085-cb27-42f5-8971-bfc6f67a813b" + ], + "Date": [ + "Sat, 25 Apr 2015 23:01:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7389/providers/Microsoft.Compute/virtualMachines/vmpstestrg7389/capture?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzM4OS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtcHN0ZXN0cmc3Mzg5L2NhcHR1cmU/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"vhdPrefix\": \"pslib\",\r\n \"destinationContainerName\": \"pstestrg8449\",\r\n \"overwriteVhds\": true\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "101" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/c002b611-422e-4bef-9092-94962d0c0616?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c002b611-422e-4bef-9092-94962d0c0616" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/c002b611-422e-4bef-9092-94962d0c0616?monitor=true&api-version=2015-05-01-preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "0f4279b5-3215-4c08-a064-1727b974a5b1" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150425T230150Z:0f4279b5-3215-4c08-a064-1727b974a5b1" + ], + "Date": [ + "Sat, 25 Apr 2015 23:01:50 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/c002b611-422e-4bef-9092-94962d0c0616?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9jMDAyYjYxMS00MjJlLTRiZWYtOTA5Mi05NDk2MmQwYzA2MTY/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"c002b611-422e-4bef-9092-94962d0c0616\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-04-25T16:01:49.6672363-07:00\",\r\n \"endTime\": \"2015-04-25T16:01:50.4016085-07:00\",\r\n \"properties\": {\r\n \"output\": {\r\n \"$schema\": \"http://schema.management.azure.com/schemas/2014-04-01-preview/VM_IP.json\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"vmName\": {\r\n \"type\": \"string\"\r\n },\r\n \"vmSize\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"Standard_A4\"\r\n },\r\n \"adminUserName\": {\r\n \"type\": \"string\"\r\n },\r\n \"adminPassword\": {\r\n \"type\": \"securestring\"\r\n },\r\n \"networkInterfaceId\": {\r\n \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"apiVersion\": \"2015-05-01-preview\",\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"[parameters('vmSize')]\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"name\": \"pslib-osDisk.19faad43-2312-40e4-9008-ab69e76217fb.vhd\",\r\n \"createOption\": \"FromImage\",\r\n \"image\": {\r\n \"uri\": \"https://stopstestrg7389.blob.core.windows.net/system/Microsoft.Compute/Images/pstestrg8449/pslib-osDisk.19faad43-2312-40e4-9008-ab69e76217fb.vhd\"\r\n },\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg7389.blob.core.windows.net/vmcontainerdf20d042-9116-4921-853a-22bfffda3c03/osDisk.df20d042-9116-4921-853a-22bfffda3c03.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"[parameters('vmName')]\",\r\n \"adminUsername\": \"[parameters('adminUsername')]\",\r\n \"adminPassword\": \"[parameters('adminPassword')]\"\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"[parameters('networkInterfaceId')]\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": 0\r\n },\r\n \"name\": \"[parameters('vmName')]\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastasia\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2005" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "9b51208d-4f47-4bc1-9ae4-a8f3a832a234" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31979" + ], + "x-ms-correlation-request-id": [ + "f916c926-fb7f-4726-8694-52345f258b56" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150425T230151Z:f916c926-fb7f-4726-8694-52345f258b56" + ], + "Date": [ + "Sat, 25 Apr 2015 23:01:51 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg7389/providers/Microsoft.Compute/virtualMachines/vmpstestrg7389?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzM4OS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtcHN0ZXN0cmc3Mzg5P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/f3502cf2-9ebc-493c-9813-a5c28ffe0dac?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f3502cf2-9ebc-493c-9813-a5c28ffe0dac" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/f3502cf2-9ebc-493c-9813-a5c28ffe0dac?monitor=true&api-version=2015-05-01-preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "2b6fb765-3bf3-4524-a0f5-726ea5939161" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150425T230157Z:2b6fb765-3bf3-4524-a0f5-726ea5939161" + ], + "Date": [ + "Sat, 25 Apr 2015 23:01:57 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/f3502cf2-9ebc-493c-9813-a5c28ffe0dac?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9mMzUwMmNmMi05ZWJjLTQ5M2MtOTgxMy1hNWMyOGZmZTBkYWM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"f3502cf2-9ebc-493c-9813-a5c28ffe0dac\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-04-25T16:01:54.2454482-07:00\",\r\n \"endTime\": \"2015-04-25T16:01:57.4486356-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "946b1dc1-1a98-4d05-a73e-145204fc1fb2" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31978" + ], + "x-ms-correlation-request-id": [ + "d884f1b4-0d4e-4965-abf1-b5b574b74985" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150425T230158Z:d884f1b4-0d4e-4965-abf1-b5b574b74985" + ], + "Date": [ + "Sat, 25 Apr 2015 23:01:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg7389?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNzM4OT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "33f8a492-752d-41a7-b5a2-f09ccfb5f222" + ], + "x-ms-correlation-request-id": [ + "33f8a492-752d-41a7-b5a2-f09ccfb5f222" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150425T230204Z:33f8a492-752d-41a7-b5a2-f09ccfb5f222" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 25 Apr 2015 23:02:03 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzczODktRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzczODktRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemN6T0RrdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31998" + ], + "x-ms-request-id": [ + "35afac4e-95c7-4ef2-9974-6657c860154b" + ], + "x-ms-correlation-request-id": [ + "35afac4e-95c7-4ef2-9974-6657c860154b" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150425T230204Z:35afac4e-95c7-4ef2-9974-6657c860154b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 25 Apr 2015 23:02:04 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzczODktRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzczODktRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemN6T0RrdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31997" + ], + "x-ms-request-id": [ + "442acd5a-4026-46ef-b66f-b1f4aaec0d70" + ], + "x-ms-correlation-request-id": [ + "442acd5a-4026-46ef-b66f-b1f4aaec0d70" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150425T230220Z:442acd5a-4026-46ef-b66f-b1f4aaec0d70" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 25 Apr 2015 23:02:20 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzczODktRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzczODktRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemN6T0RrdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31996" + ], + "x-ms-request-id": [ + "41716205-0792-436a-857c-e988f104458c" + ], + "x-ms-correlation-request-id": [ + "41716205-0792-436a-857c-e988f104458c" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150425T230235Z:41716205-0792-436a-857c-e988f104458c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 25 Apr 2015 23:02:35 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzczODktRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzczODktRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemN6T0RrdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31995" + ], + "x-ms-request-id": [ + "6720ddad-70fa-4c5f-9e50-9213901a7028" + ], + "x-ms-correlation-request-id": [ + "6720ddad-70fa-4c5f-9e50-9213901a7028" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150425T230251Z:6720ddad-70fa-4c5f-9e50-9213901a7028" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 25 Apr 2015 23:02:51 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzczODktRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzczODktRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemN6T0RrdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31994" + ], + "x-ms-request-id": [ + "9ec7c05b-b45e-4820-9702-d648d479487f" + ], + "x-ms-correlation-request-id": [ + "9ec7c05b-b45e-4820-9702-d648d479487f" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150425T230307Z:9ec7c05b-b45e-4820-9702-d648d479487f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 25 Apr 2015 23:03:06 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzczODktRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzczODktRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemN6T0RrdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31993" + ], + "x-ms-request-id": [ + "e7ad8fd6-fb31-49f8-8a7b-00dca1f95485" + ], + "x-ms-correlation-request-id": [ + "e7ad8fd6-fb31-49f8-8a7b-00dca1f95485" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150425T230322Z:e7ad8fd6-fb31-49f8-8a7b-00dca1f95485" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 25 Apr 2015 23:03:21 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzczODktRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzczODktRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemN6T0RrdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31992" + ], + "x-ms-request-id": [ + "bec22d67-21fe-4134-a5c7-b5d89ed5897b" + ], + "x-ms-correlation-request-id": [ + "bec22d67-21fe-4134-a5c7-b5d89ed5897b" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150425T230338Z:bec22d67-21fe-4134-a5c7-b5d89ed5897b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 25 Apr 2015 23:03:37 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzczODktRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzczODktRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemN6T0RrdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31991" + ], + "x-ms-request-id": [ + "8123281b-df4e-4f10-997a-561f77df7e63" + ], + "x-ms-correlation-request-id": [ + "8123281b-df4e-4f10-997a-561f77df7e63" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150425T230353Z:8123281b-df4e-4f10-997a-561f77df7e63" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 25 Apr 2015 23:03:53 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzczODktRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzczODktRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemN6T0RrdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31990" + ], + "x-ms-request-id": [ + "55c8cb89-58da-4fa2-9b3c-6e52bbfb1950" + ], + "x-ms-correlation-request-id": [ + "55c8cb89-58da-4fa2-9b3c-6e52bbfb1950" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150425T230409Z:55c8cb89-58da-4fa2-9b3c-6e52bbfb1950" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 25 Apr 2015 23:04:09 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzczODktRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzczODktRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemN6T0RrdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31989" + ], + "x-ms-request-id": [ + "d972bd4a-20da-499d-91ae-d63360ed7a71" + ], + "x-ms-correlation-request-id": [ + "d972bd4a-20da-499d-91ae-d63360ed7a71" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150425T230424Z:d972bd4a-20da-499d-91ae-d63360ed7a71" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 25 Apr 2015 23:04:23 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzczODktRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzczODktRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemN6T0RrdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31988" + ], + "x-ms-request-id": [ + "680d5e99-f640-42cf-9d06-bd261ffc106e" + ], + "x-ms-correlation-request-id": [ + "680d5e99-f640-42cf-9d06-bd261ffc106e" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150425T230440Z:680d5e99-f640-42cf-9d06-bd261ffc106e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 25 Apr 2015 23:04:39 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "Test-VirtualMachineCapture": [ + "pstestrg7389", + "pstestrg8449" + ] + }, + "Variables": { + "SubscriptionId": "4d368445-cbb1-42a7-97a6-6850ab99f48e", + "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "Domain": "microsoft.com" + } +} \ No newline at end of file diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestVirtualMachineDataDisk.json b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestVirtualMachineDataDisk.json new file mode 100644 index 000000000000..951527d7f664 --- /dev/null +++ b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestVirtualMachineDataDisk.json @@ -0,0 +1,2341 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg750?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNzUwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "103" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31994" + ], + "x-ms-request-id": [ + "f12b9b2d-2bc1-4adf-ad7b-9b857cb7c3ff" + ], + "x-ms-correlation-request-id": [ + "f12b9b2d-2bc1-4adf-ad7b-9b857cb7c3ff" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150425T174055Z:f12b9b2d-2bc1-4adf-ad7b-9b857cb7c3ff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 25 Apr 2015 17:40:54 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg750?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNzUwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31976" + ], + "x-ms-request-id": [ + "f0df8433-b7f6-423b-b71c-882269df1f86" + ], + "x-ms-correlation-request-id": [ + "f0df8433-b7f6-423b-b71c-882269df1f86" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150425T174210Z:f0df8433-b7f6-423b-b71c-882269df1f86" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 25 Apr 2015 17:42:10 GMT" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg750?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNzUwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastasia\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "30" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg750\",\r\n \"name\": \"pstestrg750\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "177" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-request-id": [ + "f1c5c8a5-9b5b-4c78-8663-8982e0b52097" + ], + "x-ms-correlation-request-id": [ + "f1c5c8a5-9b5b-4c78-8663-8982e0b52097" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150425T174057Z:f1c5c8a5-9b5b-4c78-8663-8982e0b52097" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 25 Apr 2015 17:40:57 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg750/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzUwL3Jlc291cmNlcz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31993" + ], + "x-ms-request-id": [ + "425cf2a4-85d8-430d-b1ee-10b62a7041a5" + ], + "x-ms-correlation-request-id": [ + "425cf2a4-85d8-430d-b1ee-10b62a7041a5" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150425T174057Z:425cf2a4-85d8-430d-b1ee-10b62a7041a5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 25 Apr 2015 17:40:57 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg750/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNzUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXV0aG9yaXphdGlvbi9wZXJtaXNzaW9ucz9hcGktdmVyc2lvbj0yMDE0LTA3LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "45" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "northcentralus:2e7d58f0-244d-4f18-af54-61363189162d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31993" + ], + "x-ms-correlation-request-id": [ + "017411ef-ce4a-4fec-bee2-b67b8dde76a8" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150425T174058Z:017411ef-ce4a-4fec-bee2-b67b8dde76a8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 25 Apr 2015 17:40:57 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg750/providers/Microsoft.Network/virtualnetworks/vnetpstestrg750?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsbmV0d29ya3Mvdm5ldHBzdGVzdHJnNzUwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "69" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "96707cd6-b37b-4f19-a121-4b7b67942329" + ], + "x-ms-correlation-request-id": [ + "96707cd6-b37b-4f19-a121-4b7b67942329" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150425T174059Z:96707cd6-b37b-4f19-a121-4b7b67942329" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 25 Apr 2015 17:40:58 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg750/providers/Microsoft.Network/virtualnetworks/vnetpstestrg750?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsbmV0d29ya3Mvdm5ldHBzdGVzdHJnNzUwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vnetpstestrg750\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg750/providers/Microsoft.Network/virtualNetworks/vnetpstestrg750\",\r\n \"etag\": \"W/\\\"80a4d246-3b11-498a-93fd-dc167106b047\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\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 \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg750\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg750/providers/Microsoft.Network/virtualNetworks/vnetpstestrg750/subnets/subnetpstestrg750\",\r\n \"etag\": \"W/\\\"80a4d246-3b11-498a-93fd-dc167106b047\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"eastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "955" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "6ac0ed94-f4fb-471a-9a64-086be5427386" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"80a4d246-3b11-498a-93fd-dc167106b047\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31990" + ], + "x-ms-correlation-request-id": [ + "afe602ad-30f1-407f-ba61-7ef2e0f0e254" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150425T174107Z:afe602ad-30f1-407f-ba61-7ef2e0f0e254" + ], + "Date": [ + "Sat, 25 Apr 2015 17:41:06 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg750/providers/Microsoft.Network/virtualnetworks/vnetpstestrg750?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsbmV0d29ya3Mvdm5ldHBzdGVzdHJnNzUwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vnetpstestrg750\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg750/providers/Microsoft.Network/virtualNetworks/vnetpstestrg750\",\r\n \"etag\": \"W/\\\"80a4d246-3b11-498a-93fd-dc167106b047\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\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 \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg750\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg750/providers/Microsoft.Network/virtualNetworks/vnetpstestrg750/subnets/subnetpstestrg750\",\r\n \"etag\": \"W/\\\"80a4d246-3b11-498a-93fd-dc167106b047\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"eastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "955" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "81f5276b-5de2-41fa-825d-46b6182a442e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"80a4d246-3b11-498a-93fd-dc167106b047\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31989" + ], + "x-ms-correlation-request-id": [ + "cbb152ff-2210-458e-b5b6-69f976237f4f" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150425T174107Z:cbb152ff-2210-458e-b5b6-69f976237f4f" + ], + "Date": [ + "Sat, 25 Apr 2015 17:41:06 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg750/providers/Microsoft.Network/virtualnetworks/vnetpstestrg750?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsbmV0d29ya3Mvdm5ldHBzdGVzdHJnNzUwP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "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 \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": []\r\n },\r\n \"name\": \"subnetpstestrg750\"\r\n }\r\n ]\r\n },\r\n \"name\": \"vnetpstestrg750\",\r\n \"type\": \"microsoft.network/virtualNetworks\",\r\n \"location\": \"eastasia\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "500" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vnetpstestrg750\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg750/providers/Microsoft.Network/virtualNetworks/vnetpstestrg750\",\r\n \"etag\": \"W/\\\"0b0b50a8-dde5-4d4a-bfc7-7d00240cccdb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\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 \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg750\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg750/providers/Microsoft.Network/virtualNetworks/vnetpstestrg750/subnets/subnetpstestrg750\",\r\n \"etag\": \"W/\\\"0b0b50a8-dde5-4d4a-bfc7-7d00240cccdb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"eastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "953" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "9af0fc6c-d188-4f73-bda5-0124b9e27513" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/eastasia/operations/9af0fc6c-d188-4f73-bda5-0124b9e27513?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "95ef91b5-32b8-48fc-9cdd-6d1792a9032e" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150425T174105Z:95ef91b5-32b8-48fc-9cdd-6d1792a9032e" + ], + "Date": [ + "Sat, 25 Apr 2015 17:41:05 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/eastasia/operations/9af0fc6c-d188-4f73-bda5-0124b9e27513?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy85YWYwZmM2Yy1kMTg4LTRmNzMtYmRhNS0wMTI0YjllMjc1MTM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-05-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "64ed5454-6bb2-4926-893b-030da9d3249a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31991" + ], + "x-ms-correlation-request-id": [ + "854891ed-2ab8-4f5e-a462-2a5172b08889" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150425T174106Z:854891ed-2ab8-4f5e-a462-2a5172b08889" + ], + "Date": [ + "Sat, 25 Apr 2015 17:41:05 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg750/providers/Microsoft.Network/publicIPAddresses/pubippstestrg750/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9wdWJpcHBzdGVzdHJnNzUwLz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "69" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "aee96e3d-5a26-4934-a38e-8aaa57b11e5e" + ], + "x-ms-correlation-request-id": [ + "aee96e3d-5a26-4934-a38e-8aaa57b11e5e" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150425T174107Z:aee96e3d-5a26-4934-a38e-8aaa57b11e5e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 25 Apr 2015 17:41:06 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg750/providers/Microsoft.Network/publicIPAddresses/pubippstestrg750/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9wdWJpcHBzdGVzdHJnNzUwLz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pubippstestrg750\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg750/providers/Microsoft.Network/publicIPAddresses/pubippstestrg750\",\r\n \"etag\": \"W/\\\"9c49b386-ee3b-4252-ab4a-05fa56005482\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubippstestrg750\",\r\n \"fqdn\": \"pubippstestrg750.eastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"eastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "549" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ae9c3f9b-d918-4c6d-92c3-6670e21dd25c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"9c49b386-ee3b-4252-ab4a-05fa56005482\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31986" + ], + "x-ms-correlation-request-id": [ + "de9a8711-2a10-43f5-a2ba-bddb4126fbf4" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150425T174115Z:de9a8711-2a10-43f5-a2ba-bddb4126fbf4" + ], + "Date": [ + "Sat, 25 Apr 2015 17:41:15 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg750/providers/Microsoft.Network/publicIPAddresses/pubippstestrg750/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9wdWJpcHBzdGVzdHJnNzUwLz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pubippstestrg750\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg750/providers/Microsoft.Network/publicIPAddresses/pubippstestrg750\",\r\n \"etag\": \"W/\\\"9c49b386-ee3b-4252-ab4a-05fa56005482\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubippstestrg750\",\r\n \"fqdn\": \"pubippstestrg750.eastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"eastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "549" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "4d4c1d8a-0b75-405e-b27d-907904b926f2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"9c49b386-ee3b-4252-ab4a-05fa56005482\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31985" + ], + "x-ms-correlation-request-id": [ + "cf9f3334-4819-43d4-8f1f-f771f499c772" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150425T174115Z:cf9f3334-4819-43d4-8f1f-f771f499c772" + ], + "Date": [ + "Sat, 25 Apr 2015 17:41:15 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg750/providers/Microsoft.Network/publicIPAddresses/pubippstestrg750/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9wdWJpcHBzdGVzdHJnNzUwLz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubippstestrg750\"\r\n }\r\n },\r\n \"name\": \"pubippstestrg750\",\r\n \"type\": \"microsoft.network/publicIPAddresses\",\r\n \"location\": \"eastasia\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "254" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pubippstestrg750\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg750/providers/Microsoft.Network/publicIPAddresses/pubippstestrg750\",\r\n \"etag\": \"W/\\\"36fb2e59-de2b-4110-a35e-0a74b625c1af\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubippstestrg750\",\r\n \"fqdn\": \"pubippstestrg750.eastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"eastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "548" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "18abc51a-da5c-443f-8813-a4f97d48307c" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/eastasia/operations/18abc51a-da5c-443f-8813-a4f97d48307c?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "bd4d73b5-af68-49c5-9986-bd827534d851" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150425T174114Z:bd4d73b5-af68-49c5-9986-bd827534d851" + ], + "Date": [ + "Sat, 25 Apr 2015 17:41:14 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/eastasia/operations/18abc51a-da5c-443f-8813-a4f97d48307c?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy8xOGFiYzUxYS1kYTVjLTQ0M2YtODgxMy1hNGY5N2Q0ODMwN2M/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-05-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "9266f77f-87f3-4575-8c26-27f341bceae7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31987" + ], + "x-ms-correlation-request-id": [ + "d6c4ba22-b4ee-446d-b821-0ce624aa363c" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150425T174115Z:d6c4ba22-b4ee-446d-b821-0ce624aa363c" + ], + "Date": [ + "Sat, 25 Apr 2015 17:41:14 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg750/providers/Microsoft.Network/networkInterfaces/nicpstestrg750?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWNwc3Rlc3RyZzc1MD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "69" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "bd51893b-c0bd-4648-9ec9-27580b296d55" + ], + "x-ms-correlation-request-id": [ + "bd51893b-c0bd-4648-9ec9-27580b296d55" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150425T174116Z:bd51893b-c0bd-4648-9ec9-27580b296d55" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 25 Apr 2015 17:41:15 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg750/providers/Microsoft.Network/networkInterfaces/nicpstestrg750?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWNwc3Rlc3RyZzc1MD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"nicpstestrg750\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg750/providers/Microsoft.Network/networkInterfaces/nicpstestrg750\",\r\n \"etag\": \"W/\\\"a97713cb-6949-4b8a-8d90-7f65e40cfbee\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg750/providers/Microsoft.Network/networkInterfaces/nicpstestrg750/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"a97713cb-6949-4b8a-8d90-7f65e40cfbee\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg750/providers/Microsoft.Network/publicIPAddresses/pubippstestrg750\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg750/providers/Microsoft.Network/virtualNetworks/vnetpstestrg750/subnets/subnetpstestrg750\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"eastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1292" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b6eda3be-c875-4a58-91c4-f78ddabac8b4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"a97713cb-6949-4b8a-8d90-7f65e40cfbee\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31982" + ], + "x-ms-correlation-request-id": [ + "0bad0299-15e8-4fbf-ae28-2628d5bbc84e" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150425T174123Z:0bad0299-15e8-4fbf-ae28-2628d5bbc84e" + ], + "Date": [ + "Sat, 25 Apr 2015 17:41:23 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg750/providers/Microsoft.Network/networkInterfaces/nicpstestrg750?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWNwc3Rlc3RyZzc1MD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"nicpstestrg750\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg750/providers/Microsoft.Network/networkInterfaces/nicpstestrg750\",\r\n \"etag\": \"W/\\\"a97713cb-6949-4b8a-8d90-7f65e40cfbee\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg750/providers/Microsoft.Network/networkInterfaces/nicpstestrg750/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"a97713cb-6949-4b8a-8d90-7f65e40cfbee\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg750/providers/Microsoft.Network/publicIPAddresses/pubippstestrg750\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg750/providers/Microsoft.Network/virtualNetworks/vnetpstestrg750/subnets/subnetpstestrg750\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"eastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1292" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "3123df8d-d137-498d-91c7-160ddc8df74d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"a97713cb-6949-4b8a-8d90-7f65e40cfbee\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31981" + ], + "x-ms-correlation-request-id": [ + "20645862-8026-42aa-9ce8-369f0a1a1918" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150425T174123Z:20645862-8026-42aa-9ce8-369f0a1a1918" + ], + "Date": [ + "Sat, 25 Apr 2015 17:41:23 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg750/providers/Microsoft.Network/networkInterfaces/nicpstestrg750?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWNwc3Rlc3RyZzc1MD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg750/providers/Microsoft.Network/virtualNetworks/vnetpstestrg750/subnets/subnetpstestrg750\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg750/providers/Microsoft.Network/publicIPAddresses/pubippstestrg750\"\r\n },\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": []\r\n },\r\n \"name\": \"ipconfig1\"\r\n }\r\n ],\r\n \"primary\": false\r\n },\r\n \"name\": \"nicpstestrg750\",\r\n \"type\": \"microsoft.network/networkInterfaces\",\r\n \"location\": \"eastasia\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "853" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"nicpstestrg750\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg750/providers/Microsoft.Network/networkInterfaces/nicpstestrg750\",\r\n \"etag\": \"W/\\\"a97713cb-6949-4b8a-8d90-7f65e40cfbee\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg750/providers/Microsoft.Network/networkInterfaces/nicpstestrg750/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"a97713cb-6949-4b8a-8d90-7f65e40cfbee\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg750/providers/Microsoft.Network/publicIPAddresses/pubippstestrg750\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg750/providers/Microsoft.Network/virtualNetworks/vnetpstestrg750/subnets/subnetpstestrg750\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"eastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1292" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "293550e5-5e04-42eb-8980-55ec75c730cd" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/eastasia/operations/293550e5-5e04-42eb-8980-55ec75c730cd?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-correlation-request-id": [ + "96afa3ee-275b-4f95-9b26-a82b0ac22bf8" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150425T174122Z:96afa3ee-275b-4f95-9b26-a82b0ac22bf8" + ], + "Date": [ + "Sat, 25 Apr 2015 17:41:21 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/eastasia/operations/293550e5-5e04-42eb-8980-55ec75c730cd?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy8yOTM1NTBlNS01ZTA0LTQyZWItODk4MC01NWVjNzVjNzMwY2Q/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-05-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "21627b46-7a27-4364-aa31-792a7a9a757f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31983" + ], + "x-ms-correlation-request-id": [ + "4a023bbf-b084-49d0-ae91-a2efeee73a9a" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150425T174123Z:4a023bbf-b084-49d0-ae91-a2efeee73a9a" + ], + "Date": [ + "Sat, 25 Apr 2015 17:41:22 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg750/providers/Microsoft.Storage/storageAccounts/stopstestrg750?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvc3RvcHN0ZXN0cmc3NTA/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "90" + ], + "x-ms-client-request-id": [ + "8bef652f-9266-435e-9355-76c4919f6ed1" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "25" + ], + "x-ms-request-id": [ + "94429399-2f39-4c56-88d9-0d50a7965500" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/94429399-2f39-4c56-88d9-0d50a7965500?monitor=true&api-version=2015-05-01-preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" + ], + "x-ms-correlation-request-id": [ + "94dd6736-42d7-4acc-beff-cf98cf34eafc" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150425T174131Z:94dd6736-42d7-4acc-beff-cf98cf34eafc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Sat, 25 Apr 2015 17:41:31 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/94429399-2f39-4c56-88d9-0d50a7965500?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzk0NDI5Mzk5LTJmMzktNGM1Ni04OGQ5LTBkNTBhNzk2NTUwMD9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0a5230da-e85b-430d-81a5-1d45db173226" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "25" + ], + "x-ms-request-id": [ + "70d49a27-aa2a-438e-997f-eeac8fac4935" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/94429399-2f39-4c56-88d9-0d50a7965500?monitor=true&api-version=2015-05-01-preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31980" + ], + "x-ms-correlation-request-id": [ + "64d88b65-753d-47e1-a6ff-ab285731f79b" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150425T174131Z:64d88b65-753d-47e1-a6ff-ab285731f79b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Sat, 25 Apr 2015 17:41:31 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/94429399-2f39-4c56-88d9-0d50a7965500?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzk0NDI5Mzk5LTJmMzktNGM1Ni04OGQ5LTBkNTBhNzk2NTUwMD9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "701f60d5-16b4-4749-a772-6fc6c97563db" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n },\r\n \"location\": \"East Asia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "68" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a4cb084b-0928-479d-9e52-dd6dd3cedab3" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31979" + ], + "x-ms-correlation-request-id": [ + "87aef85f-efd1-40bd-9b14-d3b9a41e5030" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150425T174156Z:87aef85f-efd1-40bd-9b14-d3b9a41e5030" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Sat, 25 Apr 2015 17:41:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg750/providers/Microsoft.Storage/storageAccounts/stopstestrg750?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvc3RvcHN0ZXN0cmc3NTA/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9d4b0e97-a21d-4ff4-8099-9e9a3ad6a283" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg750/providers/Microsoft.Storage/storageAccounts/stopstestrg750\",\r\n \"name\": \"stopstestrg750\",\r\n \"location\": \"East Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stopstestrg750.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg750.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg750.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"East Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"Southeast Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-04-25T17:41:28.7877869Z\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "677" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b4edc0b3-a077-4f0d-9404-952f3581fae4" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31978" + ], + "x-ms-correlation-request-id": [ + "b4f7f9dc-06f3-45dd-9331-5ed6023ed40f" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150425T174157Z:b4f7f9dc-06f3-45dd-9331-5ed6023ed40f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Sat, 25 Apr 2015 17:41:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg750/providers/Microsoft.Storage/storageAccounts/stopstestrg750?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvc3RvcHN0ZXN0cmc3NTA/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "69a1d498-dcbd-4387-a0c3-63fa1df84383" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg750/providers/Microsoft.Storage/storageAccounts/stopstestrg750\",\r\n \"name\": \"stopstestrg750\",\r\n \"location\": \"East Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stopstestrg750.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg750.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg750.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"East Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"Southeast Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-04-25T17:41:28.7877869Z\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "677" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c12a5df2-c86b-49a2-86f2-3fd317840373" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31977" + ], + "x-ms-correlation-request-id": [ + "1d26574f-0b36-4173-bdf3-2e5b0c70b001" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150425T174157Z:1d26574f-0b36-4173-bdf3-2e5b0c70b001" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Sat, 25 Apr 2015 17:41:57 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/publishers?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"boxless\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/boxless\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"CloudLink.SecureVM\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/CloudLink.SecureVM\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"informatica-cloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/informatica-cloud\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"marketplace-test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/marketplace-test\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"metavistech\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/metavistech\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.Azure.ServiceFabric\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Azure.ServiceFabric\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.WindowsAzure.GuestAgent\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.WindowsAzure.GuestAgent\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftWindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServerEssentials\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MSOpenTech.Extensions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MSOpenTech.Extensions\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"seagate\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/seagate\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"sharefile\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/sharefile\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"sisense\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/sisense\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"vision_solutions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/vision_solutions\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/wowza\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "14561" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d4c7371f-b979-406f-ad25-7349165e5453" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31984" + ], + "x-ms-correlation-request-id": [ + "60a28c86-3897-4e3b-b766-e2bd3ae53099" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150425T174159Z:60a28c86-3897-4e3b-b766-e2bd3ae53099" + ], + "Date": [ + "Sat, 25 Apr 2015 17:41:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"WindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "262" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "46c94a2b-79ef-439b-bb2d-feee489b503c" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31983" + ], + "x-ms-correlation-request-id": [ + "b9d3caff-dd2e-4727-b0a9-18a83be1a237" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150425T174200Z:b9d3caff-dd2e-4727-b0a9-18a83be1a237" + ], + "Date": [ + "Sat, 25 Apr 2015 17:41:59 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvV2luZG93c1NlcnZlci9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"2008-R2-SP1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"2012-Datacenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"2012-R2-Datacenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Windows-Server-Technical-Preview\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/Windows-Server-Technical-Preview\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "1163" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "e158eee6-1443-49a8-82dd-30a6074c4c3a" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31982" + ], + "x-ms-correlation-request-id": [ + "416f9eb2-6fdb-4603-8fdc-dedcea0bec7e" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150425T174201Z:416f9eb2-6fdb-4603-8fdc-dedcea0bec7e" + ], + "Date": [ + "Sat, 25 Apr 2015 17:42:00 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvV2luZG93c1NlcnZlci9za3VzLzIwMDgtUjItU1AxL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"2.0.201502\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201502\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"2.0.201503\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201503\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "589" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "23147477-a88d-4fd3-951e-7496032bbca5" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31981" + ], + "x-ms-correlation-request-id": [ + "4c653c43-979b-48cd-8df8-bdd46b540b64" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150425T174201Z:4c653c43-979b-48cd-8df8-bdd46b540b64" + ], + "Date": [ + "Sat, 25 Apr 2015 17:42:00 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions/2.0.201502?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvV2luZG93c1NlcnZlci9za3VzLzIwMDgtUjItU1AxL3ZlcnNpb25zLzIuMC4yMDE1MDI/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastasia\",\r\n \"name\": \"2.0.201502\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201502\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "397" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d600be29-7dbb-4122-98c3-0ac63f5e8e3d" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31980" + ], + "x-ms-correlation-request-id": [ + "4f7ee52f-9609-4e2c-b73d-c2fed007fadf" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150425T174202Z:4f7ee52f-9609-4e2c-b73d-c2fed007fadf" + ], + "Date": [ + "Sat, 25 Apr 2015 17:42:01 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg750/providers/Microsoft.Compute/virtualMachines/vmpstestrg750?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvdm1wc3Rlc3RyZzc1MD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201502\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"osDisk\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg750.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"createOption\": \"FromImage\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"testDataDisk1\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg750.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"createOption\": \"Empty\"\r\n },\r\n {\r\n \"lun\": 2,\r\n \"diskSizeGB\": 11,\r\n \"name\": \"testDataDisk2\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg750.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\",\r\n \"createOption\": \"Empty\"\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123pstestrg750\",\r\n \"windowsConfiguration\": {}\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg750/providers/Microsoft.Network/networkInterfaces/nicpstestrg750\"\r\n }\r\n ]\r\n }\r\n },\r\n \"name\": \"vmpstestrg750\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "1684" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"InvalidParameter\",\r\n \"target\": \"dataDisk.lun\",\r\n \"message\": \"The maximum number of data disks allowed to be attached to a VM is 1.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "175" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "22a59e21-c47e-40f6-b5b7-96dcd97d3b08" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "e675a362-9ea3-486b-ad00-140a5bd2d049" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150425T174210Z:e675a362-9ea3-486b-ad00-140a5bd2d049" + ], + "Date": [ + "Sat, 25 Apr 2015 17:42:10 GMT" + ] + }, + "StatusCode": 400 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg750?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNzUwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1192" + ], + "x-ms-request-id": [ + "06425dfc-aa7b-4964-9198-8d391c8771ec" + ], + "x-ms-correlation-request-id": [ + "06425dfc-aa7b-4964-9198-8d391c8771ec" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150425T174212Z:06425dfc-aa7b-4964-9198-8d391c8771ec" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 25 Apr 2015 17:42:12 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc1MC1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc1MC1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemMxTUMxRlFWTlVRVk5KUVNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRHRnphV0VpZlE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31975" + ], + "x-ms-request-id": [ + "89d639b5-abf0-4dcb-89a6-0f78b3e0c090" + ], + "x-ms-correlation-request-id": [ + "89d639b5-abf0-4dcb-89a6-0f78b3e0c090" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150425T174213Z:89d639b5-abf0-4dcb-89a6-0f78b3e0c090" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 25 Apr 2015 17:42:12 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc1MC1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc1MC1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemMxTUMxRlFWTlVRVk5KUVNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRHRnphV0VpZlE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31974" + ], + "x-ms-request-id": [ + "3f87d4cc-7443-496d-8b66-ca5bdccc6742" + ], + "x-ms-correlation-request-id": [ + "3f87d4cc-7443-496d-8b66-ca5bdccc6742" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150425T174228Z:3f87d4cc-7443-496d-8b66-ca5bdccc6742" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 25 Apr 2015 17:42:28 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc1MC1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc1MC1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemMxTUMxRlFWTlVRVk5KUVNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRHRnphV0VpZlE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31973" + ], + "x-ms-request-id": [ + "d1a6e643-2dc1-412e-b11b-f4398e5aecab" + ], + "x-ms-correlation-request-id": [ + "d1a6e643-2dc1-412e-b11b-f4398e5aecab" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150425T174244Z:d1a6e643-2dc1-412e-b11b-f4398e5aecab" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 25 Apr 2015 17:42:43 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc1MC1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc1MC1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemMxTUMxRlFWTlVRVk5KUVNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRHRnphV0VpZlE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31972" + ], + "x-ms-request-id": [ + "8870f7f7-60d9-422b-8461-7c1c07590acd" + ], + "x-ms-correlation-request-id": [ + "8870f7f7-60d9-422b-8461-7c1c07590acd" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150425T174259Z:8870f7f7-60d9-422b-8461-7c1c07590acd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 25 Apr 2015 17:42:59 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc1MC1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc1MC1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemMxTUMxRlFWTlVRVk5KUVNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRHRnphV0VpZlE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31971" + ], + "x-ms-request-id": [ + "9e760201-943d-4c4d-be89-83ae935ce624" + ], + "x-ms-correlation-request-id": [ + "9e760201-943d-4c4d-be89-83ae935ce624" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150425T174315Z:9e760201-943d-4c4d-be89-83ae935ce624" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 25 Apr 2015 17:43:14 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc1MC1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc1MC1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemMxTUMxRlFWTlVRVk5KUVNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRHRnphV0VpZlE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31970" + ], + "x-ms-request-id": [ + "167f4713-33fa-4317-8584-33f330cb7a53" + ], + "x-ms-correlation-request-id": [ + "167f4713-33fa-4317-8584-33f330cb7a53" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150425T174330Z:167f4713-33fa-4317-8584-33f330cb7a53" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 25 Apr 2015 17:43:30 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc1MC1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc1MC1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemMxTUMxRlFWTlVRVk5KUVNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRHRnphV0VpZlE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31969" + ], + "x-ms-request-id": [ + "6b9d53b6-6da1-4bcb-93b2-bd066405b167" + ], + "x-ms-correlation-request-id": [ + "6b9d53b6-6da1-4bcb-93b2-bd066405b167" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150425T174346Z:6b9d53b6-6da1-4bcb-93b2-bd066405b167" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 25 Apr 2015 17:43:45 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc1MC1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc1MC1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemMxTUMxRlFWTlVRVk5KUVNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRHRnphV0VpZlE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31968" + ], + "x-ms-request-id": [ + "e34b195c-d061-49db-aa6f-75030ea2726b" + ], + "x-ms-correlation-request-id": [ + "e34b195c-d061-49db-aa6f-75030ea2726b" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150425T174401Z:e34b195c-d061-49db-aa6f-75030ea2726b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 25 Apr 2015 17:44:01 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc1MC1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc1MC1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemMxTUMxRlFWTlVRVk5KUVNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRHRnphV0VpZlE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31967" + ], + "x-ms-request-id": [ + "9eb3a9fe-b9e8-42a8-8d1a-309a295ab23c" + ], + "x-ms-correlation-request-id": [ + "9eb3a9fe-b9e8-42a8-8d1a-309a295ab23c" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150425T174417Z:9eb3a9fe-b9e8-42a8-8d1a-309a295ab23c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 25 Apr 2015 17:44:16 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc1MC1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc1MC1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemMxTUMxRlFWTlVRVk5KUVNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRHRnphV0VpZlE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31966" + ], + "x-ms-request-id": [ + "40927f63-010f-41ea-bfea-aa445e578752" + ], + "x-ms-correlation-request-id": [ + "40927f63-010f-41ea-bfea-aa445e578752" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150425T174433Z:40927f63-010f-41ea-bfea-aa445e578752" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 25 Apr 2015 17:44:32 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc1MC1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc1MC1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemMxTUMxRlFWTlVRVk5KUVNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRHRnphV0VpZlE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31965" + ], + "x-ms-request-id": [ + "1d7f5623-c9a6-49f2-a7ff-addcf7fce13d" + ], + "x-ms-correlation-request-id": [ + "1d7f5623-c9a6-49f2-a7ff-addcf7fce13d" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150425T174448Z:1d7f5623-c9a6-49f2-a7ff-addcf7fce13d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 25 Apr 2015 17:44:48 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "Test-VirtualMachineDataDisk": [ + "pstestrg750" + ] + }, + "Variables": { + "SubscriptionId": "4d368445-cbb1-42a7-97a6-6850ab99f48e", + "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "Domain": "microsoft.com" + } +} \ No newline at end of file diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestVirtualMachineImageList.json b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestVirtualMachineImageList.json index 313a9c736b2f..3269b58da133 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestVirtualMachineImageList.json +++ b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestVirtualMachineImageList.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/EastAsia/publishers?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdEFzaWEvcHVibGlzaGVycz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/publishers?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"CloudLink.SecureVM\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/CloudLink.SecureVM\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"marketplace-test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/marketplace-test\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"metavistech\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/metavistech\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.WindowsAzure.GuestAgent\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.WindowsAzure.GuestAgent\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftWindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServerEssentials\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MSOpenTech.Extensions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MSOpenTech.Extensions\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"seagate\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/seagate\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"sharefile\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/sharefile\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/wowza\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"boxless\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/boxless\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"CloudLink.SecureVM\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/CloudLink.SecureVM\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"informatica-cloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/informatica-cloud\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"marketplace-test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/marketplace-test\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"metavistech\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/metavistech\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.WindowsAzure.GuestAgent\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.WindowsAzure.GuestAgent\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftWindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServerEssentials\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MSOpenTech.Extensions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MSOpenTech.Extensions\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"seagate\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/seagate\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"sharefile\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/sharefile\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"sisense\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/sisense\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"vision_solutions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/vision_solutions\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/wowza\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "10143" + "14015" ], "Content-Type": [ "application/json; charset=utf-8" @@ -28,7 +28,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "eb425a6e-eec7-493d-b8c8-bd59ad8392c1" + "e3836da8-d7dd-46e6-b8f7-b152c751dbc8" ], "Cache-Control": [ "no-cache" @@ -38,23 +38,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31999" + "31985" ], "x-ms-correlation-request-id": [ - "c4853478-f4f0-427e-a9e2-841a01b9de39" + "df80fb5f-cb84-4a32-a1f1-e5d74104b52c" ], "x-ms-routing-request-id": [ - "WESTUS:20150421T214926Z:c4853478-f4f0-427e-a9e2-841a01b9de39" + "WESTUS:20150424T002915Z:df80fb5f-cb84-4a32-a1f1-e5d74104b52c" ], "Date": [ - "Tue, 21 Apr 2015 21:49:25 GMT" + "Fri, 24 Apr 2015 00:29:15 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/EastAsia/publishers?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdEFzaWEvcHVibGlzaGVycz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/publishers?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -62,10 +62,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"CloudLink.SecureVM\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/CloudLink.SecureVM\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"marketplace-test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/marketplace-test\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"metavistech\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/metavistech\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.WindowsAzure.GuestAgent\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.WindowsAzure.GuestAgent\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftWindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServerEssentials\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MSOpenTech.Extensions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MSOpenTech.Extensions\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"seagate\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/seagate\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"sharefile\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/sharefile\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/wowza\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"boxless\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/boxless\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"CloudLink.SecureVM\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/CloudLink.SecureVM\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"informatica-cloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/informatica-cloud\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"marketplace-test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/marketplace-test\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"metavistech\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/metavistech\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.WindowsAzure.GuestAgent\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.WindowsAzure.GuestAgent\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftWindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServerEssentials\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MSOpenTech.Extensions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MSOpenTech.Extensions\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"seagate\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/seagate\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"sharefile\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/sharefile\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"sisense\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/sisense\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"vision_solutions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/vision_solutions\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/wowza\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "10143" + "14015" ], "Content-Type": [ "application/json; charset=utf-8" @@ -80,7 +80,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ba8ba35a-e652-471d-882c-4ca598fc9561" + "44c5b5ec-f303-40d6-8929-9777bcf6ceaa" ], "Cache-Control": [ "no-cache" @@ -90,23 +90,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31960" + "31940" ], "x-ms-correlation-request-id": [ - "e5c56832-2184-4bfd-9b2a-354c8b210604" + "d5e1619a-3d6b-42b0-9ad3-4b3d0e4f67aa" ], "x-ms-routing-request-id": [ - "WESTUS:20150421T215009Z:e5c56832-2184-4bfd-9b2a-354c8b210604" + "WESTUS:20150424T003003Z:d5e1619a-3d6b-42b0-9ad3-4b3d0e4f67aa" ], "Date": [ - "Tue, 21 Apr 2015 21:50:08 GMT" + "Fri, 24 Apr 2015 00:30:03 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/EastAsia/publishers?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdEFzaWEvcHVibGlzaGVycz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/publishers?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -114,10 +114,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"CloudLink.SecureVM\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/CloudLink.SecureVM\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"marketplace-test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/marketplace-test\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"metavistech\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/metavistech\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.WindowsAzure.GuestAgent\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.WindowsAzure.GuestAgent\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftWindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServerEssentials\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MSOpenTech.Extensions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MSOpenTech.Extensions\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"seagate\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/seagate\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"sharefile\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/sharefile\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/wowza\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"boxless\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/boxless\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"CloudLink.SecureVM\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/CloudLink.SecureVM\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"informatica-cloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/informatica-cloud\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"marketplace-test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/marketplace-test\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"metavistech\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/metavistech\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.WindowsAzure.GuestAgent\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.WindowsAzure.GuestAgent\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftWindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServerEssentials\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MSOpenTech.Extensions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MSOpenTech.Extensions\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"seagate\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/seagate\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"sharefile\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/sharefile\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"sisense\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/sisense\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"vision_solutions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/vision_solutions\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/wowza\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "10143" + "14015" ], "Content-Type": [ "application/json; charset=utf-8" @@ -132,7 +132,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8a450ec1-f9e6-486a-8581-175253264ac2" + "2369857e-a6cd-4e1e-bb75-4355734d2e5e" ], "Cache-Control": [ "no-cache" @@ -142,23 +142,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31929" + "31904" ], "x-ms-correlation-request-id": [ - "101a41b8-6e79-4d22-94c7-38b997aa0e56" + "95b9eaed-5a9d-45fc-a562-56080e18dd8e" ], "x-ms-routing-request-id": [ - "WESTUS:20150421T215045Z:101a41b8-6e79-4d22-94c7-38b997aa0e56" + "WESTUS:20150424T003040Z:95b9eaed-5a9d-45fc-a562-56080e18dd8e" ], "Date": [ - "Tue, 21 Apr 2015 21:50:45 GMT" + "Fri, 24 Apr 2015 00:30:40 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/EastAsia/publishers?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdEFzaWEvcHVibGlzaGVycz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/publishers?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -166,10 +166,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"CloudLink.SecureVM\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/CloudLink.SecureVM\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"marketplace-test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/marketplace-test\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"metavistech\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/metavistech\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.WindowsAzure.GuestAgent\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.WindowsAzure.GuestAgent\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftWindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServerEssentials\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MSOpenTech.Extensions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MSOpenTech.Extensions\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"seagate\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/seagate\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"sharefile\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/sharefile\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/wowza\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"boxless\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/boxless\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"CloudLink.SecureVM\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/CloudLink.SecureVM\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"informatica-cloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/informatica-cloud\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"marketplace-test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/marketplace-test\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"metavistech\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/metavistech\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.WindowsAzure.GuestAgent\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.WindowsAzure.GuestAgent\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftWindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServerEssentials\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MSOpenTech.Extensions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MSOpenTech.Extensions\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"seagate\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/seagate\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"sharefile\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/sharefile\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"sisense\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/sisense\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"vision_solutions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/vision_solutions\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/wowza\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "10143" + "14015" ], "Content-Type": [ "application/json; charset=utf-8" @@ -184,7 +184,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "31fae57d-4538-46fb-847c-bef98ccf16e9" + "a496396e-7559-4a1d-bd42-6c04f5e56432" ], "Cache-Control": [ "no-cache" @@ -194,23 +194,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31918" + "31893" ], "x-ms-correlation-request-id": [ - "4696e974-2491-4bc0-a804-1c25f147a0f0" + "f062ab0a-0159-4a94-8f14-953a73e26587" ], "x-ms-routing-request-id": [ - "WESTUS:20150421T215057Z:4696e974-2491-4bc0-a804-1c25f147a0f0" + "WESTUS:20150424T003052Z:f062ab0a-0159-4a94-8f14-953a73e26587" ], "Date": [ - "Tue, 21 Apr 2015 21:50:57 GMT" + "Fri, 24 Apr 2015 00:30:51 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/EastAsia/publishers/Chef.Bootstrap.WindowsAzure/artifacttypes/vmimage/offers?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdEFzaWEvcHVibGlzaGVycy9DaGVmLkJvb3RzdHJhcC5XaW5kb3dzQXp1cmUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/publishers/Chef.Bootstrap.WindowsAzure/artifacttypes/vmimage/offers?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycy9DaGVmLkJvb3RzdHJhcC5XaW5kb3dzQXp1cmUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -236,7 +236,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "06a32d3f-8291-4132-8273-4efe9c751088" + "8790d805-3dd5-49e3-b287-d8934fc1acaf" ], "Cache-Control": [ "no-cache" @@ -246,23 +246,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31998" + "31984" ], "x-ms-correlation-request-id": [ - "f28f451c-be8e-4af0-96b7-346ad12c32c4" + "b471d660-d174-4a4f-9177-270b39e192ff" ], "x-ms-routing-request-id": [ - "WESTUS:20150421T214927Z:f28f451c-be8e-4af0-96b7-346ad12c32c4" + "WESTUS:20150424T002917Z:b471d660-d174-4a4f-9177-270b39e192ff" ], "Date": [ - "Tue, 21 Apr 2015 21:49:26 GMT" + "Fri, 24 Apr 2015 00:29:16 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/EastAsia/publishers/Microsoft.WindowsAzure.Compute/artifacttypes/vmimage/offers?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdEFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnQuV2luZG93c0F6dXJlLkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/publishers/Microsoft.WindowsAzure.Compute/artifacttypes/vmimage/offers?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnQuV2luZG93c0F6dXJlLkNvbXB1dGUvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -288,7 +288,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f088c9bf-e361-44da-bb14-6f10860971e3" + "49bf5185-588e-4e5b-bce1-d62b9698dd98" ], "Cache-Control": [ "no-cache" @@ -298,23 +298,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31997" + "31983" ], "x-ms-correlation-request-id": [ - "84dfa25c-0919-464a-a949-2cbfa64525fd" + "be2a3eda-5313-4611-bc6b-48fbce2d3104" ], "x-ms-routing-request-id": [ - "WESTUS:20150421T214928Z:84dfa25c-0919-464a-a949-2cbfa64525fd" + "WESTUS:20150424T002918Z:be2a3eda-5313-4611-bc6b-48fbce2d3104" ], "Date": [ - "Tue, 21 Apr 2015 21:49:27 GMT" + "Fri, 24 Apr 2015 00:29:17 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/EastAsia/publishers/Microsoft.WindowsAzure.GuestAgent/artifacttypes/vmimage/offers?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdEFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnQuV2luZG93c0F6dXJlLkd1ZXN0QWdlbnQvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/publishers/Microsoft.WindowsAzure.GuestAgent/artifacttypes/vmimage/offers?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnQuV2luZG93c0F6dXJlLkd1ZXN0QWdlbnQvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -340,7 +340,59 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4f6cf212-4a09-45e9-9b78-6f84cdc1b4fe" + "62a75b50-d91c-41fb-916c-9fb1cb5f36b7" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31982" + ], + "x-ms-correlation-request-id": [ + "8db21cfe-32fe-4e08-ba3d-0e632bcbd295" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150424T002919Z:8db21cfe-32fe-4e08-ba3d-0e632bcbd295" + ], + "Date": [ + "Fri, 24 Apr 2015 00:29:18 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"WindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "262" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "24e45812-b2f9-410a-83d3-c7747bb9b8cd" ], "Cache-Control": [ "no-cache" @@ -350,23 +402,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31996" + "31981" ], "x-ms-correlation-request-id": [ - "77738735-7006-44c2-a91c-a234bae15acc" + "bf98dbb0-39f0-478f-ab3a-b335101b47ad" ], "x-ms-routing-request-id": [ - "WESTUS:20150421T214930Z:77738735-7006-44c2-a91c-a234bae15acc" + "WESTUS:20150424T002920Z:bf98dbb0-39f0-478f-ab3a-b335101b47ad" ], "Date": [ - "Tue, 21 Apr 2015 21:49:29 GMT" + "Fri, 24 Apr 2015 00:29:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/EastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdEFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvV2luZG93c1NlcnZlci9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -374,10 +426,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"$type\": \"Microsoft.WindowsAzure.PlatformImageRepository.ArtifactService.API.Consumption.VMImageOffer, PIR.ArtifactService\",\r\n \"location\": \"eastasia\",\r\n \"name\": \"WindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"2008-R2-SP1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"2012-Datacenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"2012-R2-Datacenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Windows-Server-Technical-Preview\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/Windows-Server-Technical-Preview\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "392" + "1163" ], "Content-Type": [ "application/json; charset=utf-8" @@ -392,7 +444,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ec5a8f6b-ba4d-44b1-a56e-6cf621b388cd" + "7a036734-54bc-4724-a9ea-28d2b7a9fb04" ], "Cache-Control": [ "no-cache" @@ -402,23 +454,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31995" + "31980" ], "x-ms-correlation-request-id": [ - "60d0ed5f-a703-4ad9-8806-1226cdc567b9" + "d1cdd251-80e8-4f93-9ba3-a934b417d79a" ], "x-ms-routing-request-id": [ - "WESTUS:20150421T214931Z:60d0ed5f-a703-4ad9-8806-1226cdc567b9" + "WESTUS:20150424T002921Z:d1cdd251-80e8-4f93-9ba3-a934b417d79a" ], "Date": [ - "Tue, 21 Apr 2015 21:49:31 GMT" + "Fri, 24 Apr 2015 00:29:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/EastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdEFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvV2luZG93c1NlcnZlci9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvV2luZG93c1NlcnZlci9za3VzLzIwMDgtUjItU1AxL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -426,10 +478,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"$type\": \"Microsoft.WindowsAzure.PlatformImageRepository.ArtifactService.API.Consumption.VMImageSku, PIR.ArtifactService\",\r\n \"location\": \"eastasia\",\r\n \"name\": \"2008-R2-SP1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1\"\r\n },\r\n {\r\n \"$type\": \"Microsoft.WindowsAzure.PlatformImageRepository.ArtifactService.API.Consumption.VMImageSku, PIR.ArtifactService\",\r\n \"location\": \"eastasia\",\r\n \"name\": \"2012-Datacenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter\"\r\n },\r\n {\r\n \"$type\": \"Microsoft.WindowsAzure.PlatformImageRepository.ArtifactService.API.Consumption.VMImageSku, PIR.ArtifactService\",\r\n \"location\": \"eastasia\",\r\n \"name\": \"2012-R2-Datacenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"2.0.201502\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201502\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"2.0.201503\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201503\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "1231" + "589" ], "Content-Type": [ "application/json; charset=utf-8" @@ -444,7 +496,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4ac1c2b4-7e7e-4378-b692-74cab06a4a6c" + "73f7df5d-1d7e-4707-a193-ffd0b04f8616" ], "Cache-Control": [ "no-cache" @@ -454,23 +506,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31994" + "31979" ], "x-ms-correlation-request-id": [ - "6fb261dc-dd7a-49cc-a4ed-bcb062eb85b1" + "7a8c90df-89fd-4b09-911f-4479a049c7b1" ], "x-ms-routing-request-id": [ - "WESTUS:20150421T214932Z:6fb261dc-dd7a-49cc-a4ed-bcb062eb85b1" + "WESTUS:20150424T002922Z:7a8c90df-89fd-4b09-911f-4479a049c7b1" ], "Date": [ - "Tue, 21 Apr 2015 21:49:32 GMT" + "Fri, 24 Apr 2015 00:29:21 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/EastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdEFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvV2luZG93c1NlcnZlci9za3VzLzIwMDgtUjItU1AxL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions?api-version=2015-05-01-preview&name%20-eq%20*", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvV2luZG93c1NlcnZlci9za3VzLzIwMDgtUjItU1AxL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldyZuYW1lJTIwLWVxJTIwKg==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -478,10 +530,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"2.0.201503\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/MicrosoftWindowsServer/Publishers/WindowsServer/ArtifactTypes/VMImage/Offers/2008-R2-SP1/Skus/2.0.201503/Versions/eastasia\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"2.0.201502\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201502\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"2.0.201503\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201503\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "296" + "589" ], "Content-Type": [ "application/json; charset=utf-8" @@ -496,7 +548,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4e6603de-357f-4b30-95a3-16fe6e86d84f" + "8bcfe15a-b719-4ba8-a20b-ab4a60e81c5c" ], "Cache-Control": [ "no-cache" @@ -506,23 +558,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31993" + "31978" ], "x-ms-correlation-request-id": [ - "2637084d-fc05-4c4b-ae99-f097e748553d" + "f709daa5-0184-47c7-98bd-97de74bc1212" ], "x-ms-routing-request-id": [ - "WESTUS:20150421T214933Z:2637084d-fc05-4c4b-ae99-f097e748553d" + "WESTUS:20150424T002923Z:f709daa5-0184-47c7-98bd-97de74bc1212" ], "Date": [ - "Tue, 21 Apr 2015 21:49:33 GMT" + "Fri, 24 Apr 2015 00:29:23 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/EastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions?api-version=2015-05-01-preview&name%20-eq%20*", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdEFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvV2luZG93c1NlcnZlci9za3VzLzIwMDgtUjItU1AxL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldyZuYW1lJTIwLWVxJTIwKg==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions/2.0.201502?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvV2luZG93c1NlcnZlci9za3VzLzIwMDgtUjItU1AxL3ZlcnNpb25zLzIuMC4yMDE1MDI/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -530,10 +582,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"2.0.201503\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/MicrosoftWindowsServer/Publishers/WindowsServer/ArtifactTypes/VMImage/Offers/2008-R2-SP1/Skus/2.0.201503/Versions/eastasia\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastasia\",\r\n \"name\": \"2.0.201502\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201502\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "296" + "397" ], "Content-Type": [ "application/json; charset=utf-8" @@ -548,7 +600,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ae254c41-bc57-41d3-911c-51a488f521b2" + "f9389bf0-a337-4b1f-9c7f-de50bab0821c" ], "Cache-Control": [ "no-cache" @@ -558,23 +610,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31992" + "31977" ], "x-ms-correlation-request-id": [ - "ea7e5440-3fbb-4186-94ee-ec52530d3c14" + "2fe3d63c-8883-47cf-ac31-5ca4fcdec318" ], "x-ms-routing-request-id": [ - "WESTUS:20150421T214934Z:ea7e5440-3fbb-4186-94ee-ec52530d3c14" + "WESTUS:20150424T002924Z:2fe3d63c-8883-47cf-ac31-5ca4fcdec318" ], "Date": [ - "Tue, 21 Apr 2015 21:49:34 GMT" + "Fri, 24 Apr 2015 00:29:24 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/EastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions/2.0.201503?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdEFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvV2luZG93c1NlcnZlci9za3VzLzIwMDgtUjItU1AxL3ZlcnNpb25zLzIuMC4yMDE1MDM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions/2.0.201503?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvV2luZG93c1NlcnZlci9za3VzLzIwMDgtUjItU1AxL3ZlcnNpb25zLzIuMC4yMDE1MDM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -600,7 +652,59 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "126fa5c2-cbdd-437a-86fc-4593c9c83164" + "781a7ec2-3c23-45c5-8a97-14f93d5e1e76" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31976" + ], + "x-ms-correlation-request-id": [ + "19012aaa-763b-4e88-aa78-1a66274d32fa" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150424T002925Z:19012aaa-763b-4e88-aa78-1a66274d32fa" + ], + "Date": [ + "Fri, 24 Apr 2015 00:29:25 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-Datacenter/versions?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvV2luZG93c1NlcnZlci9za3VzLzIwMTItRGF0YWNlbnRlci92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"3.0.201502\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.0.201502\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"3.0.201503\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.0.201503\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "597" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "39e06009-395d-4860-b1a8-0f2ffad79e51" ], "Cache-Control": [ "no-cache" @@ -610,23 +714,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31991" + "31975" ], "x-ms-correlation-request-id": [ - "8cb9cde2-3a1c-4f00-b06a-ea3f2629af7b" + "4e7f9c56-0d24-4488-a1b1-be5de0e3c753" ], "x-ms-routing-request-id": [ - "WESTUS:20150421T214935Z:8cb9cde2-3a1c-4f00-b06a-ea3f2629af7b" + "WESTUS:20150424T002926Z:4e7f9c56-0d24-4488-a1b1-be5de0e3c753" ], "Date": [ - "Tue, 21 Apr 2015 21:49:35 GMT" + "Fri, 24 Apr 2015 00:29:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/EastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-Datacenter/versions?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdEFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvV2luZG93c1NlcnZlci9za3VzLzIwMTItRGF0YWNlbnRlci92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-Datacenter/versions?api-version=2015-05-01-preview&name%20-eq%20*", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvV2luZG93c1NlcnZlci9za3VzLzIwMTItRGF0YWNlbnRlci92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXcmbmFtZSUyMC1lcSUyMCo=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -634,10 +738,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"3.0.201503\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/MicrosoftWindowsServer/Publishers/WindowsServer/ArtifactTypes/VMImage/Offers/2012-Datacenter/Skus/3.0.201503/Versions/eastasia\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"3.0.201502\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.0.201502\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"3.0.201503\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.0.201503\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "300" + "597" ], "Content-Type": [ "application/json; charset=utf-8" @@ -652,7 +756,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "353871ea-4532-4839-89e1-fc928d22dfa9" + "95cf8c27-0936-4e66-bb93-132db89ec89a" ], "Cache-Control": [ "no-cache" @@ -662,23 +766,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31990" + "31974" ], "x-ms-correlation-request-id": [ - "4e8ce5af-89b0-437a-b935-0b3f65fa6a3a" + "655d7b77-8e61-428c-8e60-92a373910d64" ], "x-ms-routing-request-id": [ - "WESTUS:20150421T214936Z:4e8ce5af-89b0-437a-b935-0b3f65fa6a3a" + "WESTUS:20150424T002927Z:655d7b77-8e61-428c-8e60-92a373910d64" ], "Date": [ - "Tue, 21 Apr 2015 21:49:36 GMT" + "Fri, 24 Apr 2015 00:29:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/EastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-Datacenter/versions?api-version=2015-05-01-preview&name%20-eq%20*", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdEFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvV2luZG93c1NlcnZlci9za3VzLzIwMTItRGF0YWNlbnRlci92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXcmbmFtZSUyMC1lcSUyMCo=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-Datacenter/versions/3.0.201502?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvV2luZG93c1NlcnZlci9za3VzLzIwMTItRGF0YWNlbnRlci92ZXJzaW9ucy8zLjAuMjAxNTAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -686,10 +790,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"3.0.201503\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/MicrosoftWindowsServer/Publishers/WindowsServer/ArtifactTypes/VMImage/Offers/2012-Datacenter/Skus/3.0.201503/Versions/eastasia\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastasia\",\r\n \"name\": \"3.0.201502\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.0.201502\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "300" + "401" ], "Content-Type": [ "application/json; charset=utf-8" @@ -704,7 +808,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "352375f0-1a1f-4f15-8c84-bc05b6492a15" + "3da74f25-1d43-4a75-9cbc-27bb5449a1db" ], "Cache-Control": [ "no-cache" @@ -714,23 +818,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31989" + "31973" ], "x-ms-correlation-request-id": [ - "8d0f9ab5-37c4-48e7-9c8a-9f64b31b18fe" + "001434ae-5ccd-4e98-8a37-79f4ed0c2971" ], "x-ms-routing-request-id": [ - "WESTUS:20150421T214937Z:8d0f9ab5-37c4-48e7-9c8a-9f64b31b18fe" + "WESTUS:20150424T002928Z:001434ae-5ccd-4e98-8a37-79f4ed0c2971" ], "Date": [ - "Tue, 21 Apr 2015 21:49:37 GMT" + "Fri, 24 Apr 2015 00:29:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/EastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-Datacenter/versions/3.0.201503?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdEFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvV2luZG93c1NlcnZlci9za3VzLzIwMTItRGF0YWNlbnRlci92ZXJzaW9ucy8zLjAuMjAxNTAzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-Datacenter/versions/3.0.201503?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvV2luZG93c1NlcnZlci9za3VzLzIwMTItRGF0YWNlbnRlci92ZXJzaW9ucy8zLjAuMjAxNTAzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -756,7 +860,59 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "51ecf877-b73e-4ed5-b9f7-c5b5e7bdd397" + "af953851-bd6d-4d25-90ed-4b47ef459567" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31972" + ], + "x-ms-correlation-request-id": [ + "1048ce8a-e89e-4a6a-8b88-61f6b9c1c1bc" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150424T002929Z:1048ce8a-e89e-4a6a-8b88-61f6b9c1c1bc" + ], + "Date": [ + "Fri, 24 Apr 2015 00:29:29 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvV2luZG93c1NlcnZlci9za3VzLzIwMTItUjItRGF0YWNlbnRlci92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"4.0.201502\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201502\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"4.0.201503\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201503\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "603" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d9deed33-928b-4cc0-8737-97605466adb5" ], "Cache-Control": [ "no-cache" @@ -766,23 +922,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31988" + "31971" ], "x-ms-correlation-request-id": [ - "c3a8d5f8-1d79-455b-98f4-9d8e2e9a6c50" + "807d5daf-3aae-4133-a80c-2e74fe35ea63" ], "x-ms-routing-request-id": [ - "WESTUS:20150421T214938Z:c3a8d5f8-1d79-455b-98f4-9d8e2e9a6c50" + "WESTUS:20150424T002930Z:807d5daf-3aae-4133-a80c-2e74fe35ea63" ], "Date": [ - "Tue, 21 Apr 2015 21:49:38 GMT" + "Fri, 24 Apr 2015 00:29:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/EastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdEFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvV2luZG93c1NlcnZlci9za3VzLzIwMTItUjItRGF0YWNlbnRlci92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?api-version=2015-05-01-preview&name%20-eq%20*", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvV2luZG93c1NlcnZlci9za3VzLzIwMTItUjItRGF0YWNlbnRlci92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXcmbmFtZSUyMC1lcSUyMCo=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -790,10 +946,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"4.0.201503\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/MicrosoftWindowsServer/Publishers/WindowsServer/ArtifactTypes/VMImage/Offers/2012-R2-Datacenter/Skus/4.0.201503/Versions/eastasia\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"4.0.201502\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201502\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"4.0.201503\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201503\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "303" + "603" ], "Content-Type": [ "application/json; charset=utf-8" @@ -808,7 +964,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a47c543e-56a2-4502-acd4-18fe8140b59f" + "96dba7fe-48b8-4c23-adf5-2d4c93c8df0c" ], "Cache-Control": [ "no-cache" @@ -818,23 +974,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31987" + "31970" ], "x-ms-correlation-request-id": [ - "2de28e8b-a776-447d-b5fb-d5121d45484b" + "78d3935e-08bb-4b69-9a13-dca4521da4fc" ], "x-ms-routing-request-id": [ - "WESTUS:20150421T214940Z:2de28e8b-a776-447d-b5fb-d5121d45484b" + "WESTUS:20150424T002931Z:78d3935e-08bb-4b69-9a13-dca4521da4fc" ], "Date": [ - "Tue, 21 Apr 2015 21:49:39 GMT" + "Fri, 24 Apr 2015 00:29:31 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/EastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?api-version=2015-05-01-preview&name%20-eq%20*", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdEFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvV2luZG93c1NlcnZlci9za3VzLzIwMTItUjItRGF0YWNlbnRlci92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXcmbmFtZSUyMC1lcSUyMCo=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions/4.0.201502?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvV2luZG93c1NlcnZlci9za3VzLzIwMTItUjItRGF0YWNlbnRlci92ZXJzaW9ucy80LjAuMjAxNTAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -842,10 +998,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"4.0.201503\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/MicrosoftWindowsServer/Publishers/WindowsServer/ArtifactTypes/VMImage/Offers/2012-R2-Datacenter/Skus/4.0.201503/Versions/eastasia\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastasia\",\r\n \"name\": \"4.0.201502\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201502\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "303" + "404" ], "Content-Type": [ "application/json; charset=utf-8" @@ -860,7 +1016,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cb1ed977-186b-42f9-bf45-0f9ca2f37ea9" + "67f00e10-61e4-441b-85c0-6c0188a59e06" ], "Cache-Control": [ "no-cache" @@ -870,23 +1026,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31986" + "31969" ], "x-ms-correlation-request-id": [ - "9bb3ae66-595d-45e1-893f-5df907c93340" + "bb48408f-f7d0-41f9-bdd8-2864ee4cffa4" ], "x-ms-routing-request-id": [ - "WESTUS:20150421T214941Z:9bb3ae66-595d-45e1-893f-5df907c93340" + "WESTUS:20150424T002933Z:bb48408f-f7d0-41f9-bdd8-2864ee4cffa4" ], "Date": [ - "Tue, 21 Apr 2015 21:49:40 GMT" + "Fri, 24 Apr 2015 00:29:32 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/EastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions/4.0.201503?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdEFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvV2luZG93c1NlcnZlci9za3VzLzIwMTItUjItRGF0YWNlbnRlci92ZXJzaW9ucy80LjAuMjAxNTAzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions/4.0.201503?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvV2luZG93c1NlcnZlci9za3VzLzIwMTItUjItRGF0YWNlbnRlci92ZXJzaW9ucy80LjAuMjAxNTAzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -912,7 +1068,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6136d9ed-1645-451c-b653-f0943f26e014" + "dc96b79d-31d4-4fb4-aeff-c2c7aa64bcd1" ], "Cache-Control": [ "no-cache" @@ -922,23 +1078,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31985" + "31968" ], "x-ms-correlation-request-id": [ - "89f81a60-a040-4c40-8b1d-e3662a0ed46c" + "7fea604a-7635-4e37-9acc-4a97b679445e" ], "x-ms-routing-request-id": [ - "WESTUS:20150421T214942Z:89f81a60-a040-4c40-8b1d-e3662a0ed46c" + "WESTUS:20150424T002934Z:7fea604a-7635-4e37-9acc-4a97b679445e" ], "Date": [ - "Tue, 21 Apr 2015 21:49:41 GMT" + "Fri, 24 Apr 2015 00:29:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/EastAsia/publishers/MicrosoftWindowsServerEssentials/artifacttypes/vmimage/offers?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdEFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyRXNzZW50aWFscy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/Windows-Server-Technical-Preview/versions?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvV2luZG93c1NlcnZlci9za3VzL1dpbmRvd3MtU2VydmVyLVRlY2huaWNhbC1QcmV2aWV3L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -946,10 +1102,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"$type\": \"Microsoft.WindowsAzure.PlatformImageRepository.ArtifactService.API.Consumption.VMImageOffer, PIR.ArtifactService\",\r\n \"location\": \"eastasia\",\r\n \"name\": \"WindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"5.0.201504\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/Windows-Server-Technical-Preview/Versions/5.0.201504\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "422" + "317" ], "Content-Type": [ "application/json; charset=utf-8" @@ -964,7 +1120,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b5594142-4035-4b5d-b6ba-59823e430e09" + "b5f15a92-55d9-4b7a-a476-09ab214de2a6" ], "Cache-Control": [ "no-cache" @@ -974,23 +1130,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31984" + "31967" ], "x-ms-correlation-request-id": [ - "155d9e17-bd67-4b73-bdef-c3bb4fbdb723" + "cfc9a94f-b2b9-4feb-b769-f2dd3b8c19f3" ], "x-ms-routing-request-id": [ - "WESTUS:20150421T214943Z:155d9e17-bd67-4b73-bdef-c3bb4fbdb723" + "WESTUS:20150424T002935Z:cfc9a94f-b2b9-4feb-b769-f2dd3b8c19f3" ], "Date": [ - "Tue, 21 Apr 2015 21:49:42 GMT" + "Fri, 24 Apr 2015 00:29:34 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/EastAsia/publishers/MicrosoftWindowsServerEssentials/artifacttypes/vmimage/offers/WindowsServerEssentials/skus?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdEFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyRXNzZW50aWFscy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXJFc3NlbnRpYWxzL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/Windows-Server-Technical-Preview/versions?api-version=2015-05-01-preview&name%20-eq%20*", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvV2luZG93c1NlcnZlci9za3VzL1dpbmRvd3MtU2VydmVyLVRlY2huaWNhbC1QcmV2aWV3L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldyZuYW1lJTIwLWVxJTIwKg==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -998,10 +1154,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"$type\": \"Microsoft.WindowsAzure.PlatformImageRepository.ArtifactService.API.Consumption.VMImageSku, PIR.ArtifactService\",\r\n \"location\": \"eastasia\",\r\n \"name\": \"WindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"5.0.201504\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/Windows-Server-Technical-Preview/Versions/5.0.201504\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "449" + "317" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1016,7 +1172,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8e8fbafc-4314-41b6-bad2-bacfb24c349d" + "80d7adc4-cee0-4a99-a9f8-579d90c752c1" ], "Cache-Control": [ "no-cache" @@ -1026,23 +1182,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31983" + "31966" ], "x-ms-correlation-request-id": [ - "750fa72d-a61a-45a1-bf74-1797c3e3d804" + "47a17430-68ad-48de-9317-194eaa7e809a" ], "x-ms-routing-request-id": [ - "WESTUS:20150421T214944Z:750fa72d-a61a-45a1-bf74-1797c3e3d804" + "WESTUS:20150424T002936Z:47a17430-68ad-48de-9317-194eaa7e809a" ], "Date": [ - "Tue, 21 Apr 2015 21:49:43 GMT" + "Fri, 24 Apr 2015 00:29:35 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/EastAsia/publishers/MicrosoftWindowsServerEssentials/artifacttypes/vmimage/offers/WindowsServerEssentials/skus/WindowsServerEssentials/versions?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdEFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyRXNzZW50aWFscy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXJFc3NlbnRpYWxzL3NrdXMvV2luZG93c1NlcnZlckVzc2VudGlhbHMvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/Windows-Server-Technical-Preview/versions/5.0.201504?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvV2luZG93c1NlcnZlci9za3VzL1dpbmRvd3MtU2VydmVyLVRlY2huaWNhbC1QcmV2aWV3L3ZlcnNpb25zLzUuMC4yMDE1MDQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1050,10 +1206,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"1.0.131018\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/MicrosoftWindowsServerEssentials/Publishers/WindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/1.0.131018/Versions/eastasia\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"1.0.131129\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/MicrosoftWindowsServerEssentials/Publishers/WindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/1.0.131129/Versions/eastasia\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"1.0.131223\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/MicrosoftWindowsServerEssentials/Publishers/WindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/1.0.131223/Versions/eastasia\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"1.0.140123\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/MicrosoftWindowsServerEssentials/Publishers/WindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/1.0.140123/Versions/eastasia\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"1.0.140305\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/MicrosoftWindowsServerEssentials/Publishers/WindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/1.0.140305/Versions/eastasia\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"1.0.140327\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/MicrosoftWindowsServerEssentials/Publishers/WindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/1.0.140327/Versions/eastasia\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"1.0.140618\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/MicrosoftWindowsServerEssentials/Publishers/WindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/1.0.140618/Versions/eastasia\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"1.0.140715\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/MicrosoftWindowsServerEssentials/Publishers/WindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/1.0.140715/Versions/eastasia\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"1.0.141204\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/MicrosoftWindowsServerEssentials/Publishers/WindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/1.0.141204/Versions/eastasia\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastasia\",\r\n \"name\": \"5.0.201504\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/Windows-Server-Technical-Preview/Versions/5.0.201504\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "2928" + "418" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1068,7 +1224,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2b3386c2-b77a-45a2-be5b-d34e8ac0c38c" + "d3f2b4a5-8614-46f0-a301-ec6a68757567" ], "Cache-Control": [ "no-cache" @@ -1078,23 +1234,439 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31982" + "31965" + ], + "x-ms-correlation-request-id": [ + "5cebdb95-edc9-4e0d-9403-02e9128ae8c0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150424T002937Z:5cebdb95-edc9-4e0d-9403-02e9128ae8c0" + ], + "Date": [ + "Fri, 24 Apr 2015 00:29:37 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/publishers/MicrosoftWindowsServerEssentials/artifacttypes/vmimage/offers?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyRXNzZW50aWFscy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"WindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "292" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "2413b008-91c8-47f3-b792-285faffdc0c4" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31964" + ], + "x-ms-correlation-request-id": [ + "98d82c12-1615-4b9c-97c5-83d075866d77" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150424T002938Z:98d82c12-1615-4b9c-97c5-83d075866d77" + ], + "Date": [ + "Fri, 24 Apr 2015 00:29:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/publishers/MicrosoftWindowsServerEssentials/artifacttypes/vmimage/offers/WindowsServerEssentials/skus?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyRXNzZW50aWFscy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXJFc3NlbnRpYWxzL3NrdXM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"WindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "321" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "0964b69b-c9f7-46f2-bf3f-2feace0dd080" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31963" + ], + "x-ms-correlation-request-id": [ + "102b2941-b65c-444e-8ace-5f9b49806d34" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150424T002939Z:102b2941-b65c-444e-8ace-5f9b49806d34" + ], + "Date": [ + "Fri, 24 Apr 2015 00:29:39 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/publishers/MicrosoftWindowsServerEssentials/artifacttypes/vmimage/offers/WindowsServerEssentials/skus/WindowsServerEssentials/versions?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyRXNzZW50aWFscy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXJFc3NlbnRpYWxzL3NrdXMvV2luZG93c1NlcnZlckVzc2VudGlhbHMvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"1.0.131018\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.131018\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"1.0.131129\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.131129\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"1.0.131223\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.131223\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"1.0.140123\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.140123\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"1.0.140305\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.140305\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"1.0.140327\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.140327\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"1.0.140618\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.140618\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"1.0.140715\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.140715\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"1.0.141204\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.141204\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "2928" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ad098b7a-236a-4e6e-9c69-465aa92d9f88" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31962" + ], + "x-ms-correlation-request-id": [ + "004e5db3-01de-4f02-accb-66bdebac9bc8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150424T002940Z:004e5db3-01de-4f02-accb-66bdebac9bc8" + ], + "Date": [ + "Fri, 24 Apr 2015 00:29:40 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/publishers/MicrosoftWindowsServerEssentials/artifacttypes/vmimage/offers/WindowsServerEssentials/skus/WindowsServerEssentials/versions?api-version=2015-05-01-preview&name%20-eq%20*", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyRXNzZW50aWFscy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXJFc3NlbnRpYWxzL3NrdXMvV2luZG93c1NlcnZlckVzc2VudGlhbHMvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3Jm5hbWUlMjAtZXElMjAq", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"1.0.131018\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.131018\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"1.0.131129\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.131129\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"1.0.131223\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.131223\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"1.0.140123\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.140123\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"1.0.140305\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.140305\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"1.0.140327\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.140327\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"1.0.140618\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.140618\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"1.0.140715\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.140715\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"1.0.141204\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.141204\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "2928" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a27e9983-ac24-4417-8d6f-134c026aba90" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31961" + ], + "x-ms-correlation-request-id": [ + "707f454d-8eae-4d27-bc9a-486741f04900" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150424T002941Z:707f454d-8eae-4d27-bc9a-486741f04900" + ], + "Date": [ + "Fri, 24 Apr 2015 00:29:41 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/publishers/MicrosoftWindowsServerEssentials/artifacttypes/vmimage/offers/WindowsServerEssentials/skus/WindowsServerEssentials/versions/1.0.131018?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyRXNzZW50aWFscy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXJFc3NlbnRpYWxzL3NrdXMvV2luZG93c1NlcnZlckVzc2VudGlhbHMvdmVyc2lvbnMvMS4wLjEzMTAxOD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastasia\",\r\n \"name\": \"1.0.131018\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.131018\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "429" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c6692fbc-5e9b-4232-8306-be9e6981276c" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31960" + ], + "x-ms-correlation-request-id": [ + "0c102497-9d7f-4bd6-b6fa-10ebc6f88bef" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150424T002942Z:0c102497-9d7f-4bd6-b6fa-10ebc6f88bef" + ], + "Date": [ + "Fri, 24 Apr 2015 00:29:42 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/publishers/MicrosoftWindowsServerEssentials/artifacttypes/vmimage/offers/WindowsServerEssentials/skus/WindowsServerEssentials/versions/1.0.131129?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyRXNzZW50aWFscy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXJFc3NlbnRpYWxzL3NrdXMvV2luZG93c1NlcnZlckVzc2VudGlhbHMvdmVyc2lvbnMvMS4wLjEzMTEyOT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastasia\",\r\n \"name\": \"1.0.131129\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.131129\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "429" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "fa4bbd5d-1927-4ba9-8494-afca2ba56488" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31959" + ], + "x-ms-correlation-request-id": [ + "908c43d2-4f72-4aa8-8a40-2905722fba80" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150424T002943Z:908c43d2-4f72-4aa8-8a40-2905722fba80" + ], + "Date": [ + "Fri, 24 Apr 2015 00:29:43 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/publishers/MicrosoftWindowsServerEssentials/artifacttypes/vmimage/offers/WindowsServerEssentials/skus/WindowsServerEssentials/versions/1.0.131223?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyRXNzZW50aWFscy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXJFc3NlbnRpYWxzL3NrdXMvV2luZG93c1NlcnZlckVzc2VudGlhbHMvdmVyc2lvbnMvMS4wLjEzMTIyMz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastasia\",\r\n \"name\": \"1.0.131223\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.131223\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "429" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a5e732ee-d0b5-4eae-bfe8-147a883ea5eb" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31958" + ], + "x-ms-correlation-request-id": [ + "85dd9c36-75c1-49cd-bc4b-88a85004f646" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150424T002944Z:85dd9c36-75c1-49cd-bc4b-88a85004f646" + ], + "Date": [ + "Fri, 24 Apr 2015 00:29:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/publishers/MicrosoftWindowsServerEssentials/artifacttypes/vmimage/offers/WindowsServerEssentials/skus/WindowsServerEssentials/versions/1.0.140123?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyRXNzZW50aWFscy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXJFc3NlbnRpYWxzL3NrdXMvV2luZG93c1NlcnZlckVzc2VudGlhbHMvdmVyc2lvbnMvMS4wLjE0MDEyMz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastasia\",\r\n \"name\": \"1.0.140123\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.140123\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "429" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "13e3b49a-4000-4db8-83bd-ff96a60c092a" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31957" ], "x-ms-correlation-request-id": [ - "5b537726-f75b-4c56-b84e-2847e2c1e8d2" + "b70deaae-d603-49a0-a2d1-28d6cf408bc4" ], "x-ms-routing-request-id": [ - "WESTUS:20150421T214945Z:5b537726-f75b-4c56-b84e-2847e2c1e8d2" + "WESTUS:20150424T002945Z:b70deaae-d603-49a0-a2d1-28d6cf408bc4" ], "Date": [ - "Tue, 21 Apr 2015 21:49:45 GMT" + "Fri, 24 Apr 2015 00:29:45 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/EastAsia/publishers/MicrosoftWindowsServerEssentials/artifacttypes/vmimage/offers/WindowsServerEssentials/skus/WindowsServerEssentials/versions?api-version=2015-05-01-preview&name%20-eq%20*", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdEFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyRXNzZW50aWFscy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXJFc3NlbnRpYWxzL3NrdXMvV2luZG93c1NlcnZlckVzc2VudGlhbHMvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3Jm5hbWUlMjAtZXElMjAq", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/publishers/MicrosoftWindowsServerEssentials/artifacttypes/vmimage/offers/WindowsServerEssentials/skus/WindowsServerEssentials/versions/1.0.140305?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyRXNzZW50aWFscy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXJFc3NlbnRpYWxzL3NrdXMvV2luZG93c1NlcnZlckVzc2VudGlhbHMvdmVyc2lvbnMvMS4wLjE0MDMwNT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1102,10 +1674,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"1.0.131018\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/MicrosoftWindowsServerEssentials/Publishers/WindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/1.0.131018/Versions/eastasia\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"1.0.131129\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/MicrosoftWindowsServerEssentials/Publishers/WindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/1.0.131129/Versions/eastasia\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"1.0.131223\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/MicrosoftWindowsServerEssentials/Publishers/WindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/1.0.131223/Versions/eastasia\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"1.0.140123\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/MicrosoftWindowsServerEssentials/Publishers/WindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/1.0.140123/Versions/eastasia\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"1.0.140305\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/MicrosoftWindowsServerEssentials/Publishers/WindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/1.0.140305/Versions/eastasia\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"1.0.140327\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/MicrosoftWindowsServerEssentials/Publishers/WindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/1.0.140327/Versions/eastasia\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"1.0.140618\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/MicrosoftWindowsServerEssentials/Publishers/WindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/1.0.140618/Versions/eastasia\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"1.0.140715\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/MicrosoftWindowsServerEssentials/Publishers/WindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/1.0.140715/Versions/eastasia\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"1.0.141204\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/MicrosoftWindowsServerEssentials/Publishers/WindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/1.0.141204/Versions/eastasia\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastasia\",\r\n \"name\": \"1.0.140305\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.140305\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "2928" + "429" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1120,7 +1692,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cfd5b393-bf00-4a8a-8129-f47bb09a07a8" + "6175c3d7-97b3-4663-ac9e-568d53ee3655" ], "Cache-Control": [ "no-cache" @@ -1130,23 +1702,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31981" + "31956" ], "x-ms-correlation-request-id": [ - "01843ff9-2ccb-4eef-958c-4204bb4df12c" + "2eb2ba72-9925-4cec-b8f9-547b3b0bb215" ], "x-ms-routing-request-id": [ - "WESTUS:20150421T214946Z:01843ff9-2ccb-4eef-958c-4204bb4df12c" + "WESTUS:20150424T002946Z:2eb2ba72-9925-4cec-b8f9-547b3b0bb215" ], "Date": [ - "Tue, 21 Apr 2015 21:49:45 GMT" + "Fri, 24 Apr 2015 00:29:46 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/EastAsia/publishers/MicrosoftWindowsServerEssentials/artifacttypes/vmimage/offers/WindowsServerEssentials/skus/WindowsServerEssentials/versions/1.0.131018?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdEFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyRXNzZW50aWFscy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXJFc3NlbnRpYWxzL3NrdXMvV2luZG93c1NlcnZlckVzc2VudGlhbHMvdmVyc2lvbnMvMS4wLjEzMTAxOD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/publishers/MicrosoftWindowsServerEssentials/artifacttypes/vmimage/offers/WindowsServerEssentials/skus/WindowsServerEssentials/versions/1.0.140327?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyRXNzZW50aWFscy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXJFc3NlbnRpYWxzL3NrdXMvV2luZG93c1NlcnZlckVzc2VudGlhbHMvdmVyc2lvbnMvMS4wLjE0MDMyNz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1154,7 +1726,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastasia\",\r\n \"name\": \"1.0.131018\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.131018\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastasia\",\r\n \"name\": \"1.0.140327\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.140327\"\r\n}", "ResponseHeaders": { "Content-Length": [ "429" @@ -1172,7 +1744,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c8aa8ed5-8e87-430a-b959-1691860ddd94" + "364d1b2f-ca23-486a-b613-1e425004dda6" ], "Cache-Control": [ "no-cache" @@ -1182,23 +1754,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31980" + "31955" ], "x-ms-correlation-request-id": [ - "7836fe7c-1ea1-42f4-aac5-f52dc428edd0" + "62044576-2725-4d13-b407-be5e555e9a22" ], "x-ms-routing-request-id": [ - "WESTUS:20150421T214947Z:7836fe7c-1ea1-42f4-aac5-f52dc428edd0" + "WESTUS:20150424T002947Z:62044576-2725-4d13-b407-be5e555e9a22" ], "Date": [ - "Tue, 21 Apr 2015 21:49:46 GMT" + "Fri, 24 Apr 2015 00:29:47 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/EastAsia/publishers/MicrosoftWindowsServerEssentials/artifacttypes/vmimage/offers/WindowsServerEssentials/skus/WindowsServerEssentials/versions/1.0.131129?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdEFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyRXNzZW50aWFscy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXJFc3NlbnRpYWxzL3NrdXMvV2luZG93c1NlcnZlckVzc2VudGlhbHMvdmVyc2lvbnMvMS4wLjEzMTEyOT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/publishers/MicrosoftWindowsServerEssentials/artifacttypes/vmimage/offers/WindowsServerEssentials/skus/WindowsServerEssentials/versions/1.0.140618?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyRXNzZW50aWFscy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXJFc3NlbnRpYWxzL3NrdXMvV2luZG93c1NlcnZlckVzc2VudGlhbHMvdmVyc2lvbnMvMS4wLjE0MDYxOD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1206,7 +1778,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastasia\",\r\n \"name\": \"1.0.131129\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.131129\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastasia\",\r\n \"name\": \"1.0.140618\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.140618\"\r\n}", "ResponseHeaders": { "Content-Length": [ "429" @@ -1224,7 +1796,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "bcf3fa4c-7111-43a4-a59e-e9c50325fc5f" + "2316de41-6b8a-473b-b79c-1c248f09d7e9" ], "Cache-Control": [ "no-cache" @@ -1234,23 +1806,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31979" + "31954" ], "x-ms-correlation-request-id": [ - "1b5e6d94-64c6-4f92-ae8e-71214ad540ea" + "f8c0dac0-0860-4e85-908e-7c89d05466ac" ], "x-ms-routing-request-id": [ - "WESTUS:20150421T214948Z:1b5e6d94-64c6-4f92-ae8e-71214ad540ea" + "WESTUS:20150424T002948Z:f8c0dac0-0860-4e85-908e-7c89d05466ac" ], "Date": [ - "Tue, 21 Apr 2015 21:49:47 GMT" + "Fri, 24 Apr 2015 00:29:48 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/EastAsia/publishers/MicrosoftWindowsServerEssentials/artifacttypes/vmimage/offers/WindowsServerEssentials/skus/WindowsServerEssentials/versions/1.0.131223?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdEFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyRXNzZW50aWFscy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXJFc3NlbnRpYWxzL3NrdXMvV2luZG93c1NlcnZlckVzc2VudGlhbHMvdmVyc2lvbnMvMS4wLjEzMTIyMz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/publishers/MicrosoftWindowsServerEssentials/artifacttypes/vmimage/offers/WindowsServerEssentials/skus/WindowsServerEssentials/versions/1.0.140715?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyRXNzZW50aWFscy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXJFc3NlbnRpYWxzL3NrdXMvV2luZG93c1NlcnZlckVzc2VudGlhbHMvdmVyc2lvbnMvMS4wLjE0MDcxNT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1258,7 +1830,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastasia\",\r\n \"name\": \"1.0.131223\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.131223\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastasia\",\r\n \"name\": \"1.0.140715\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.140715\"\r\n}", "ResponseHeaders": { "Content-Length": [ "429" @@ -1276,7 +1848,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "71441cf3-002f-4267-9a10-d933a6a5b0f9" + "6969946c-19bf-4677-926d-9c9fa93d51cd" ], "Cache-Control": [ "no-cache" @@ -1286,23 +1858,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31978" + "31953" ], "x-ms-correlation-request-id": [ - "f387964a-1436-4d5c-a8a0-04436bc44d34" + "92a80d8f-af2d-42f6-984c-2eef447fa23f" ], "x-ms-routing-request-id": [ - "WESTUS:20150421T214949Z:f387964a-1436-4d5c-a8a0-04436bc44d34" + "WESTUS:20150424T002949Z:92a80d8f-af2d-42f6-984c-2eef447fa23f" ], "Date": [ - "Tue, 21 Apr 2015 21:49:49 GMT" + "Fri, 24 Apr 2015 00:29:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/EastAsia/publishers/MicrosoftWindowsServerEssentials/artifacttypes/vmimage/offers/WindowsServerEssentials/skus/WindowsServerEssentials/versions/1.0.140123?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdEFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyRXNzZW50aWFscy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXJFc3NlbnRpYWxzL3NrdXMvV2luZG93c1NlcnZlckVzc2VudGlhbHMvdmVyc2lvbnMvMS4wLjE0MDEyMz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/publishers/MicrosoftWindowsServerEssentials/artifacttypes/vmimage/offers/WindowsServerEssentials/skus/WindowsServerEssentials/versions/1.0.141204?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyRXNzZW50aWFscy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXJFc3NlbnRpYWxzL3NrdXMvV2luZG93c1NlcnZlckVzc2VudGlhbHMvdmVyc2lvbnMvMS4wLjE0MTIwND9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1310,7 +1882,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastasia\",\r\n \"name\": \"1.0.140123\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.140123\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastasia\",\r\n \"name\": \"1.0.141204\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.141204\"\r\n}", "ResponseHeaders": { "Content-Length": [ "429" @@ -1328,7 +1900,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b6ee7302-ae35-4d00-bbb9-544cd0ea370e" + "e6e6fd6e-f73d-455c-aac0-b1c7952fc2cc" ], "Cache-Control": [ "no-cache" @@ -1338,23 +1910,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31977" + "31952" ], "x-ms-correlation-request-id": [ - "1478a598-cd2c-4256-96c5-7e0902d84712" + "9c402898-8b97-42cc-b72e-6c2d2594859d" ], "x-ms-routing-request-id": [ - "WESTUS:20150421T214950Z:1478a598-cd2c-4256-96c5-7e0902d84712" + "WESTUS:20150424T002950Z:9c402898-8b97-42cc-b72e-6c2d2594859d" ], "Date": [ - "Tue, 21 Apr 2015 21:49:50 GMT" + "Fri, 24 Apr 2015 00:29:50 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/EastAsia/publishers/MicrosoftWindowsServerEssentials/artifacttypes/vmimage/offers/WindowsServerEssentials/skus/WindowsServerEssentials/versions/1.0.140305?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdEFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyRXNzZW50aWFscy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXJFc3NlbnRpYWxzL3NrdXMvV2luZG93c1NlcnZlckVzc2VudGlhbHMvdmVyc2lvbnMvMS4wLjE0MDMwNT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVySFBDUGFjay9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1362,10 +1934,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastasia\",\r\n \"name\": \"1.0.140305\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.140305\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"WindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "429" + "283" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1380,7 +1952,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8a45d015-f2a2-4927-b975-402708b5bd09" + "dfb7c244-cdce-41a1-a596-a2ae3f00ee05" ], "Cache-Control": [ "no-cache" @@ -1390,23 +1962,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31976" + "31951" ], "x-ms-correlation-request-id": [ - "f987d280-8664-448e-a475-83d0aedd4f2c" + "f64b7b7f-1b53-428f-b33f-58113aa0dee4" ], "x-ms-routing-request-id": [ - "WESTUS:20150421T214951Z:f987d280-8664-448e-a475-83d0aedd4f2c" + "WESTUS:20150424T002951Z:f64b7b7f-1b53-428f-b33f-58113aa0dee4" ], "Date": [ - "Tue, 21 Apr 2015 21:49:51 GMT" + "Fri, 24 Apr 2015 00:29:51 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/EastAsia/publishers/MicrosoftWindowsServerEssentials/artifacttypes/vmimage/offers/WindowsServerEssentials/skus/WindowsServerEssentials/versions/1.0.140327?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdEFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyRXNzZW50aWFscy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXJFc3NlbnRpYWxzL3NrdXMvV2luZG93c1NlcnZlckVzc2VudGlhbHMvdmVyc2lvbnMvMS4wLjE0MDMyNz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/publishers/Microsoft.Compute/artifacttypes/vmextension/types?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9hcnRpZmFjdHR5cGVzL3ZtZXh0ZW5zaW9uL3R5cGVzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1414,10 +1986,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastasia\",\r\n \"name\": \"1.0.140327\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.140327\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"CustomScriptExtension\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"VMAccessAgent\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "429" + "533" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1432,7 +2004,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f9dc6bec-43d6-42c8-a8a9-a515d507b2ed" + "c1bed4d1-907f-41ce-a422-69762d695013" ], "Cache-Control": [ "no-cache" @@ -1442,23 +2014,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31975" + "31950" ], "x-ms-correlation-request-id": [ - "7391e725-795d-4c20-8801-88918075be3e" + "614ca50a-15d5-4da3-8078-771cbdac4320" ], "x-ms-routing-request-id": [ - "WESTUS:20150421T214953Z:7391e725-795d-4c20-8801-88918075be3e" + "WESTUS:20150424T002953Z:614ca50a-15d5-4da3-8078-771cbdac4320" ], "Date": [ - "Tue, 21 Apr 2015 21:49:52 GMT" + "Fri, 24 Apr 2015 00:29:53 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/EastAsia/publishers/MicrosoftWindowsServerEssentials/artifacttypes/vmimage/offers/WindowsServerEssentials/skus/WindowsServerEssentials/versions/1.0.140618?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdEFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyRXNzZW50aWFscy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXJFc3NlbnRpYWxzL3NrdXMvV2luZG93c1NlcnZlckVzc2VudGlhbHMvdmVyc2lvbnMvMS4wLjE0MDYxOD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions?api-version=2015-05-01-preview&*", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9hcnRpZmFjdHR5cGVzL3ZtZXh0ZW5zaW9uL3R5cGVzL0N1c3RvbVNjcmlwdEV4dGVuc2lvbi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXcmKg==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1466,10 +2038,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastasia\",\r\n \"name\": \"1.0.140618\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.140618\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.0.1\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"1.0.3\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.0.3\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"1.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.1\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"1.2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.2\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"1.3\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.3\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"1.4\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.4\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "429" + "1619" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1484,7 +2056,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "490eb0c8-df8d-4ad2-90bd-edff5218fb87" + "591f3f74-e042-4911-8696-2af962fdb1be" ], "Cache-Control": [ "no-cache" @@ -1494,23 +2066,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31974" + "31949" ], "x-ms-correlation-request-id": [ - "315a1b89-5786-4e94-8224-eb884e21cb4d" + "b11c90bf-13ea-4f34-9bb3-6d33ac18863e" ], "x-ms-routing-request-id": [ - "WESTUS:20150421T214954Z:315a1b89-5786-4e94-8224-eb884e21cb4d" + "WESTUS:20150424T002954Z:b11c90bf-13ea-4f34-9bb3-6d33ac18863e" ], "Date": [ - "Tue, 21 Apr 2015 21:49:53 GMT" + "Fri, 24 Apr 2015 00:29:54 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/EastAsia/publishers/MicrosoftWindowsServerEssentials/artifacttypes/vmimage/offers/WindowsServerEssentials/skus/WindowsServerEssentials/versions/1.0.140715?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdEFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyRXNzZW50aWFscy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXJFc3NlbnRpYWxzL3NrdXMvV2luZG93c1NlcnZlckVzc2VudGlhbHMvdmVyc2lvbnMvMS4wLjE0MDcxNT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.0.1?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9hcnRpZmFjdHR5cGVzL3ZtZXh0ZW5zaW9uL3R5cGVzL0N1c3RvbVNjcmlwdEV4dGVuc2lvbi92ZXJzaW9ucy8xLjAuMT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1518,10 +2090,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastasia\",\r\n \"name\": \"1.0.140715\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.140715\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"eastasia\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.0.1\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "429" + "421" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1536,7 +2108,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8d140469-b913-446a-822b-b419b5f2387c" + "a84a33ab-068d-4455-94fe-f260169f51f9" ], "Cache-Control": [ "no-cache" @@ -1546,23 +2118,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31973" + "31948" ], "x-ms-correlation-request-id": [ - "fbc2cbd2-9af6-46e9-8ab4-3b39ccf43450" + "66030ef4-bc7b-4996-bf4e-642bdfb3fccf" ], "x-ms-routing-request-id": [ - "WESTUS:20150421T214955Z:fbc2cbd2-9af6-46e9-8ab4-3b39ccf43450" + "WESTUS:20150424T002955Z:66030ef4-bc7b-4996-bf4e-642bdfb3fccf" ], "Date": [ - "Tue, 21 Apr 2015 21:49:54 GMT" + "Fri, 24 Apr 2015 00:29:55 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/EastAsia/publishers/MicrosoftWindowsServerEssentials/artifacttypes/vmimage/offers/WindowsServerEssentials/skus/WindowsServerEssentials/versions/1.0.141204?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdEFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyRXNzZW50aWFscy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL1dpbmRvd3NTZXJ2ZXJFc3NlbnRpYWxzL3NrdXMvV2luZG93c1NlcnZlckVzc2VudGlhbHMvdmVyc2lvbnMvMS4wLjE0MTIwND9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.0.3?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9hcnRpZmFjdHR5cGVzL3ZtZXh0ZW5zaW9uL3R5cGVzL0N1c3RvbVNjcmlwdEV4dGVuc2lvbi92ZXJzaW9ucy8xLjAuMz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1570,10 +2142,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastasia\",\r\n \"name\": \"1.0.141204\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.141204\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"eastasia\",\r\n \"name\": \"1.0.3\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.0.3\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "429" + "421" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1588,7 +2160,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6dee7403-23c9-44eb-9ad9-889eb1319dc6" + "6df49034-14ca-4885-a039-7f0486e0f44d" ], "Cache-Control": [ "no-cache" @@ -1598,23 +2170,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31972" + "31947" ], "x-ms-correlation-request-id": [ - "cc38f3f5-d167-4563-8fc6-7a9eba212fc1" + "124b08c8-e316-450a-a8d4-e40a7f0501ec" ], "x-ms-routing-request-id": [ - "WESTUS:20150421T214956Z:cc38f3f5-d167-4563-8fc6-7a9eba212fc1" + "WESTUS:20150424T002956Z:124b08c8-e316-450a-a8d4-e40a7f0501ec" ], "Date": [ - "Tue, 21 Apr 2015 21:49:56 GMT" + "Fri, 24 Apr 2015 00:29:56 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/EastAsia/publishers/MicrosoftWindowsServerHPCPack/artifacttypes/vmimage/offers?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdEFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVySFBDUGFjay9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.1?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9hcnRpZmFjdHR5cGVzL3ZtZXh0ZW5zaW9uL3R5cGVzL0N1c3RvbVNjcmlwdEV4dGVuc2lvbi92ZXJzaW9ucy8xLjE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1622,10 +2194,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"$type\": \"Microsoft.WindowsAzure.PlatformImageRepository.ArtifactService.API.Consumption.VMImageOffer, PIR.ArtifactService\",\r\n \"location\": \"eastasia\",\r\n \"name\": \"WindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"eastasia\",\r\n \"name\": \"1.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.1\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "413" + "417" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1640,7 +2212,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "15653a2b-e715-4479-a94c-b8c58f5eccbb" + "5e992fd7-c831-49a7-899d-e2077f91970e" ], "Cache-Control": [ "no-cache" @@ -1650,23 +2222,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31971" + "31946" ], "x-ms-correlation-request-id": [ - "b869cf15-53fc-47d8-803b-b31865ac005a" + "f924ea11-d156-47a8-9f18-0918856170bd" ], "x-ms-routing-request-id": [ - "WESTUS:20150421T214957Z:b869cf15-53fc-47d8-803b-b31865ac005a" + "WESTUS:20150424T002957Z:f924ea11-d156-47a8-9f18-0918856170bd" ], "Date": [ - "Tue, 21 Apr 2015 21:49:57 GMT" + "Fri, 24 Apr 2015 00:29:57 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/EastAsia/publishers/Microsoft.Compute/artifacttypes/vmextension/types?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdEFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9hcnRpZmFjdHR5cGVzL3ZtZXh0ZW5zaW9uL3R5cGVzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.2?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9hcnRpZmFjdHR5cGVzL3ZtZXh0ZW5zaW9uL3R5cGVzL0N1c3RvbVNjcmlwdEV4dGVuc2lvbi92ZXJzaW9ucy8xLjI/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1674,10 +2246,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"CustomScriptExtension\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"VMAccessAgent\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"eastasia\",\r\n \"name\": \"1.2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.2\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "533" + "417" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1692,7 +2264,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "56730655-3377-45fc-812d-5ff91a658c04" + "4db2baf4-1dac-4f18-94b3-7d6832afba71" ], "Cache-Control": [ "no-cache" @@ -1702,23 +2274,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31970" + "31945" ], "x-ms-correlation-request-id": [ - "d718fcc2-d85b-4e4d-9a31-c97408acd9d6" + "7e3efb92-3869-4de1-a074-4c4cc196b207" ], "x-ms-routing-request-id": [ - "WESTUS:20150421T214959Z:d718fcc2-d85b-4e4d-9a31-c97408acd9d6" + "WESTUS:20150424T002958Z:7e3efb92-3869-4de1-a074-4c4cc196b207" ], "Date": [ - "Tue, 21 Apr 2015 21:49:58 GMT" + "Fri, 24 Apr 2015 00:29:58 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/EastAsia/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions?api-version=2015-05-01-preview&*", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdEFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9hcnRpZmFjdHR5cGVzL3ZtZXh0ZW5zaW9uL3R5cGVzL0N1c3RvbVNjcmlwdEV4dGVuc2lvbi92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXcmKg==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.3?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9hcnRpZmFjdHR5cGVzL3ZtZXh0ZW5zaW9uL3R5cGVzL0N1c3RvbVNjcmlwdEV4dGVuc2lvbi92ZXJzaW9ucy8xLjM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1726,10 +2298,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.0.1\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"1.0.3\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.0.3\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"1.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.1\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"1.2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.2\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"1.3\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.3\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"1.4\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.4\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"eastasia\",\r\n \"name\": \"1.3\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.3\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1619" + "417" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1744,7 +2316,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "62bc7460-809a-42b5-b2e6-0ada122f469c" + "45f06e93-6a62-404b-b4ff-24aa23a0d407" ], "Cache-Control": [ "no-cache" @@ -1754,23 +2326,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31969" + "31944" ], "x-ms-correlation-request-id": [ - "99d76c46-9646-4cf0-8b0a-6d564a9d30da" + "18bb1371-64bd-427e-8529-eccb7fdccdd2" ], "x-ms-routing-request-id": [ - "WESTUS:20150421T215000Z:99d76c46-9646-4cf0-8b0a-6d564a9d30da" + "WESTUS:20150424T002959Z:18bb1371-64bd-427e-8529-eccb7fdccdd2" ], "Date": [ - "Tue, 21 Apr 2015 21:49:59 GMT" + "Fri, 24 Apr 2015 00:29:59 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/EastAsia/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.0.1?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdEFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9hcnRpZmFjdHR5cGVzL3ZtZXh0ZW5zaW9uL3R5cGVzL0N1c3RvbVNjcmlwdEV4dGVuc2lvbi92ZXJzaW9ucy8xLjAuMT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.4?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9hcnRpZmFjdHR5cGVzL3ZtZXh0ZW5zaW9uL3R5cGVzL0N1c3RvbVNjcmlwdEV4dGVuc2lvbi92ZXJzaW9ucy8xLjQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1778,10 +2350,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"eastasia\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.0.1\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"eastasia\",\r\n \"name\": \"1.4\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.4\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "421" + "417" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1796,7 +2368,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "23cf76fe-e0fb-4b40-80f7-7bbfb818f09f" + "e00e885d-586e-4a18-9eed-f9090c92594f" ], "Cache-Control": [ "no-cache" @@ -1806,23 +2378,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31968" + "31943" ], "x-ms-correlation-request-id": [ - "8ca85096-e948-4251-853b-b56d91dab38f" + "2f61d9b1-e2c7-4358-8af5-bdd717ac8542" ], "x-ms-routing-request-id": [ - "WESTUS:20150421T215001Z:8ca85096-e948-4251-853b-b56d91dab38f" + "WESTUS:20150424T003000Z:2f61d9b1-e2c7-4358-8af5-bdd717ac8542" ], "Date": [ - "Tue, 21 Apr 2015 21:50:00 GMT" + "Fri, 24 Apr 2015 00:30:00 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/EastAsia/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.0.3?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdEFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9hcnRpZmFjdHR5cGVzL3ZtZXh0ZW5zaW9uL3R5cGVzL0N1c3RvbVNjcmlwdEV4dGVuc2lvbi92ZXJzaW9ucy8xLjAuMz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/publishers/Microsoft.Compute/artifacttypes/vmextension/types/VMAccessAgent/versions?api-version=2015-05-01-preview&*", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9hcnRpZmFjdHR5cGVzL3ZtZXh0ZW5zaW9uL3R5cGVzL1ZNQWNjZXNzQWdlbnQvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3Jio=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1830,10 +2402,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"eastasia\",\r\n \"name\": \"1.0.3\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.0.3\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"2.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent/Versions/2.0\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "421" + "263" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1848,7 +2420,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9f58e598-c768-4f5c-a9aa-53905cb8eb6c" + "5fbc44e0-35f2-4cbb-a9ea-391d2037da55" ], "Cache-Control": [ "no-cache" @@ -1858,23 +2430,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31967" + "31942" ], "x-ms-correlation-request-id": [ - "672c29d4-b36e-4978-8659-36b2387b9f99" + "aa46bbba-667c-4a3a-a3ba-51911b67946d" ], "x-ms-routing-request-id": [ - "WESTUS:20150421T215002Z:672c29d4-b36e-4978-8659-36b2387b9f99" + "WESTUS:20150424T003001Z:aa46bbba-667c-4a3a-a3ba-51911b67946d" ], "Date": [ - "Tue, 21 Apr 2015 21:50:02 GMT" + "Fri, 24 Apr 2015 00:30:01 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/EastAsia/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.1?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdEFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9hcnRpZmFjdHR5cGVzL3ZtZXh0ZW5zaW9uL3R5cGVzL0N1c3RvbVNjcmlwdEV4dGVuc2lvbi92ZXJzaW9ucy8xLjE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/publishers/Microsoft.Compute/artifacttypes/vmextension/types/VMAccessAgent/versions/2.0?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9hcnRpZmFjdHR5cGVzL3ZtZXh0ZW5zaW9uL3R5cGVzL1ZNQWNjZXNzQWdlbnQvdmVyc2lvbnMvMi4wP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1882,10 +2454,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"eastasia\",\r\n \"name\": \"1.1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.1\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"eastasia\",\r\n \"name\": \"2.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent/Versions/2.0\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "417" + "409" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1900,7 +2472,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1fa2c6f9-b632-491e-947c-3480632eb3cb" + "c232c630-b90b-4351-9701-31d76e507bf1" ], "Cache-Control": [ "no-cache" @@ -1910,23 +2482,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31966" + "31941" ], "x-ms-correlation-request-id": [ - "9772a518-b968-4db6-ae7b-9c6b70901af4" + "1708658d-389e-47e3-9975-13dc23f80bb4" ], "x-ms-routing-request-id": [ - "WESTUS:20150421T215003Z:9772a518-b968-4db6-ae7b-9c6b70901af4" + "WESTUS:20150424T003002Z:1708658d-389e-47e3-9975-13dc23f80bb4" ], "Date": [ - "Tue, 21 Apr 2015 21:50:03 GMT" + "Fri, 24 Apr 2015 00:30:02 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/EastAsia/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.2?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdEFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9hcnRpZmFjdHR5cGVzL3ZtZXh0ZW5zaW9uL3R5cGVzL0N1c3RvbVNjcmlwdEV4dGVuc2lvbi92ZXJzaW9ucy8xLjI/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1934,10 +2506,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"eastasia\",\r\n \"name\": \"1.2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.2\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"WindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "417" + "262" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1952,7 +2524,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9a3f9eb2-340e-48f2-8e0a-6f58f658e441" + "3e17a2c4-1e1d-4550-b5c3-a000f6650840" ], "Cache-Control": [ "no-cache" @@ -1962,23 +2534,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31965" + "31939" ], "x-ms-correlation-request-id": [ - "b84f1a21-bdb1-4f2e-a952-c75613b9e585" + "8c6c1ac4-2f28-4744-baf8-8b8180b364be" ], "x-ms-routing-request-id": [ - "WESTUS:20150421T215004Z:b84f1a21-bdb1-4f2e-a952-c75613b9e585" + "WESTUS:20150424T003004Z:8c6c1ac4-2f28-4744-baf8-8b8180b364be" ], "Date": [ - "Tue, 21 Apr 2015 21:50:04 GMT" + "Fri, 24 Apr 2015 00:30:04 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/EastAsia/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.3?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdEFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9hcnRpZmFjdHR5cGVzL3ZtZXh0ZW5zaW9uL3R5cGVzL0N1c3RvbVNjcmlwdEV4dGVuc2lvbi92ZXJzaW9ucy8xLjM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvV2luZG93c1NlcnZlci9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1986,10 +2558,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"eastasia\",\r\n \"name\": \"1.3\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.3\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"2008-R2-SP1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"2012-Datacenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"2012-R2-Datacenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Windows-Server-Technical-Preview\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/Windows-Server-Technical-Preview\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "417" + "1163" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2004,7 +2576,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "bd5cf916-accf-47eb-ad3c-1b47f4a87d8d" + "4b445419-0f6a-44e2-991f-000c064e1f6f" ], "Cache-Control": [ "no-cache" @@ -2014,23 +2586,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31964" + "31938" ], "x-ms-correlation-request-id": [ - "47c2b00c-6eb9-4cbb-b311-a1c0b6be4c78" + "252ca37d-963d-41a4-98c5-fcf56dae41f0" ], "x-ms-routing-request-id": [ - "WESTUS:20150421T215005Z:47c2b00c-6eb9-4cbb-b311-a1c0b6be4c78" + "WESTUS:20150424T003005Z:252ca37d-963d-41a4-98c5-fcf56dae41f0" ], "Date": [ - "Tue, 21 Apr 2015 21:50:05 GMT" + "Fri, 24 Apr 2015 00:30:05 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/EastAsia/publishers/Microsoft.Compute/artifacttypes/vmextension/types/CustomScriptExtension/versions/1.4?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdEFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9hcnRpZmFjdHR5cGVzL3ZtZXh0ZW5zaW9uL3R5cGVzL0N1c3RvbVNjcmlwdEV4dGVuc2lvbi92ZXJzaW9ucy8xLjQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvV2luZG93c1NlcnZlci9za3VzLzIwMDgtUjItU1AxL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2038,10 +2610,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"eastasia\",\r\n \"name\": \"1.4\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension/Versions/1.4\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"2.0.201502\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201502\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"2.0.201503\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201503\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "417" + "589" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2056,7 +2628,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a5be7753-014a-4b56-89de-c6aa7a1d84f5" + "56e23219-d9aa-458f-80bf-011e0fc70089" ], "Cache-Control": [ "no-cache" @@ -2066,23 +2638,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31963" + "31937" ], "x-ms-correlation-request-id": [ - "46cc7949-2a29-440a-92cb-572697fc961a" + "882d5963-4a36-4a72-94ac-40fc9fa078e1" ], "x-ms-routing-request-id": [ - "WESTUS:20150421T215006Z:46cc7949-2a29-440a-92cb-572697fc961a" + "WESTUS:20150424T003006Z:882d5963-4a36-4a72-94ac-40fc9fa078e1" ], "Date": [ - "Tue, 21 Apr 2015 21:50:06 GMT" + "Fri, 24 Apr 2015 00:30:06 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/EastAsia/publishers/Microsoft.Compute/artifacttypes/vmextension/types/VMAccessAgent/versions?api-version=2015-05-01-preview&*", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdEFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9hcnRpZmFjdHR5cGVzL3ZtZXh0ZW5zaW9uL3R5cGVzL1ZNQWNjZXNzQWdlbnQvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3Jio=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions/2.0.201502?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvV2luZG93c1NlcnZlci9za3VzLzIwMDgtUjItU1AxL3ZlcnNpb25zLzIuMC4yMDE1MDI/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2090,10 +2662,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"2.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent/Versions/2.0\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastasia\",\r\n \"name\": \"2.0.201502\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201502\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "263" + "397" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2108,7 +2680,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b460ac31-ab51-4435-84d6-988bedc95607" + "0c83a671-9844-4795-9d54-6b6240c8d8b1" ], "Cache-Control": [ "no-cache" @@ -2118,23 +2690,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31962" + "31936" ], "x-ms-correlation-request-id": [ - "13d04c49-0049-4eed-8ae2-9c33b1eeac34" + "c78e596d-ce55-4fcd-abf8-282a1eabb0c0" ], "x-ms-routing-request-id": [ - "WESTUS:20150421T215007Z:13d04c49-0049-4eed-8ae2-9c33b1eeac34" + "WESTUS:20150424T003007Z:c78e596d-ce55-4fcd-abf8-282a1eabb0c0" ], "Date": [ - "Tue, 21 Apr 2015 21:50:06 GMT" + "Fri, 24 Apr 2015 00:30:07 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/EastAsia/publishers/Microsoft.Compute/artifacttypes/vmextension/types/VMAccessAgent/versions/2.0?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdEFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9hcnRpZmFjdHR5cGVzL3ZtZXh0ZW5zaW9uL3R5cGVzL1ZNQWNjZXNzQWdlbnQvdmVyc2lvbnMvMi4wP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions/2.0.201503?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvV2luZG93c1NlcnZlci9za3VzLzIwMDgtUjItU1AxL3ZlcnNpb25zLzIuMC4yMDE1MDM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2142,10 +2714,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"eastasia\",\r\n \"name\": \"2.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent/Versions/2.0\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastasia\",\r\n \"name\": \"2.0.201503\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201503\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "409" + "397" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2160,7 +2732,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "13da1bca-5db3-4a1c-95c7-d8c898a1051d" + "d7047f44-200e-4f11-9ca3-16047f693f0f" ], "Cache-Control": [ "no-cache" @@ -2170,23 +2742,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31961" + "31935" ], "x-ms-correlation-request-id": [ - "cb6f2dc5-d8dd-4d2d-8427-512f8950f824" + "455597f4-d8f5-459b-b662-0eb153b355cd" ], "x-ms-routing-request-id": [ - "WESTUS:20150421T215008Z:cb6f2dc5-d8dd-4d2d-8427-512f8950f824" + "WESTUS:20150424T003008Z:455597f4-d8f5-459b-b662-0eb153b355cd" ], "Date": [ - "Tue, 21 Apr 2015 21:50:07 GMT" + "Fri, 24 Apr 2015 00:30:08 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-Datacenter/versions?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvV2luZG93c1NlcnZlci9za3VzLzIwMTItRGF0YWNlbnRlci92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2194,10 +2766,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"$type\": \"Microsoft.WindowsAzure.PlatformImageRepository.ArtifactService.API.Consumption.VMImageOffer, PIR.ArtifactService\",\r\n \"location\": \"eastasia\",\r\n \"name\": \"WindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"3.0.201502\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.0.201502\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"3.0.201503\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.0.201503\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "392" + "597" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2212,7 +2784,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d7090183-85ff-4a21-b4a0-e8b30fcbbae6" + "0dfe0200-372d-4801-ad25-e33252f7a4c5" ], "Cache-Control": [ "no-cache" @@ -2222,23 +2794,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31959" + "31934" ], "x-ms-correlation-request-id": [ - "27e32980-fbfb-468b-bbcc-86543ef360b3" + "39d9ef4d-9a1d-4e59-a0e7-c37e6386b723" ], "x-ms-routing-request-id": [ - "WESTUS:20150421T215010Z:27e32980-fbfb-468b-bbcc-86543ef360b3" + "WESTUS:20150424T003009Z:39d9ef4d-9a1d-4e59-a0e7-c37e6386b723" ], "Date": [ - "Tue, 21 Apr 2015 21:50:09 GMT" + "Fri, 24 Apr 2015 00:30:09 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvV2luZG93c1NlcnZlci9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-Datacenter/versions/3.0.201502?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvV2luZG93c1NlcnZlci9za3VzLzIwMTItRGF0YWNlbnRlci92ZXJzaW9ucy8zLjAuMjAxNTAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2246,10 +2818,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"$type\": \"Microsoft.WindowsAzure.PlatformImageRepository.ArtifactService.API.Consumption.VMImageSku, PIR.ArtifactService\",\r\n \"location\": \"eastasia\",\r\n \"name\": \"2008-R2-SP1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1\"\r\n },\r\n {\r\n \"$type\": \"Microsoft.WindowsAzure.PlatformImageRepository.ArtifactService.API.Consumption.VMImageSku, PIR.ArtifactService\",\r\n \"location\": \"eastasia\",\r\n \"name\": \"2012-Datacenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter\"\r\n },\r\n {\r\n \"$type\": \"Microsoft.WindowsAzure.PlatformImageRepository.ArtifactService.API.Consumption.VMImageSku, PIR.ArtifactService\",\r\n \"location\": \"eastasia\",\r\n \"name\": \"2012-R2-Datacenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastasia\",\r\n \"name\": \"3.0.201502\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.0.201502\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1231" + "401" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2264,7 +2836,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d129821c-51d8-40a2-8244-4e957d5f5974" + "61e123ed-86e3-4361-ad8e-0d7f98171865" ], "Cache-Control": [ "no-cache" @@ -2274,23 +2846,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31958" + "31933" ], "x-ms-correlation-request-id": [ - "70d12652-7709-4398-818f-88bcaae1b526" + "3a284bd4-3b70-4618-95bc-f5cb3234d9c7" ], "x-ms-routing-request-id": [ - "WESTUS:20150421T215011Z:70d12652-7709-4398-818f-88bcaae1b526" + "WESTUS:20150424T003010Z:3a284bd4-3b70-4618-95bc-f5cb3234d9c7" ], "Date": [ - "Tue, 21 Apr 2015 21:50:10 GMT" + "Fri, 24 Apr 2015 00:30:10 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvV2luZG93c1NlcnZlci9za3VzLzIwMDgtUjItU1AxL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-Datacenter/versions/3.0.201503?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvV2luZG93c1NlcnZlci9za3VzLzIwMTItRGF0YWNlbnRlci92ZXJzaW9ucy8zLjAuMjAxNTAzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2298,10 +2870,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"2.0.201503\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/MicrosoftWindowsServer/Publishers/WindowsServer/ArtifactTypes/VMImage/Offers/2008-R2-SP1/Skus/2.0.201503/Versions/eastasia\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastasia\",\r\n \"name\": \"3.0.201503\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.0.201503\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "296" + "401" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2316,7 +2888,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fbfcafa4-c1c1-4062-9383-d481ab583b4a" + "751f0a8a-c595-4d07-ba64-89db63b8d9bf" ], "Cache-Control": [ "no-cache" @@ -2326,23 +2898,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31957" + "31932" ], "x-ms-correlation-request-id": [ - "5bae7efb-d4ac-4f8f-9062-28b41c2b557f" + "6fd70d31-8bda-4318-82fc-3a8e827197ed" ], "x-ms-routing-request-id": [ - "WESTUS:20150421T215012Z:5bae7efb-d4ac-4f8f-9062-28b41c2b557f" + "WESTUS:20150424T003011Z:6fd70d31-8bda-4318-82fc-3a8e827197ed" ], "Date": [ - "Tue, 21 Apr 2015 21:50:12 GMT" + "Fri, 24 Apr 2015 00:30:11 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions/2.0.201503?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvV2luZG93c1NlcnZlci9za3VzLzIwMDgtUjItU1AxL3ZlcnNpb25zLzIuMC4yMDE1MDM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvV2luZG93c1NlcnZlci9za3VzLzIwMTItUjItRGF0YWNlbnRlci92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2350,10 +2922,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastasia\",\r\n \"name\": \"2.0.201503\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201503\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"4.0.201502\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201502\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"4.0.201503\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201503\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "397" + "603" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2368,7 +2940,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3809882b-e0fe-4301-86b5-7f5576ac4c7a" + "eef8335f-12eb-4dd9-a54d-306a61aeb307" ], "Cache-Control": [ "no-cache" @@ -2378,23 +2950,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31956" + "31931" ], "x-ms-correlation-request-id": [ - "1d44529e-6a36-47e1-9476-c2a809fe3ae2" + "d43a0808-b9c2-43b0-b680-ef11d3b311c5" ], "x-ms-routing-request-id": [ - "WESTUS:20150421T215013Z:1d44529e-6a36-47e1-9476-c2a809fe3ae2" + "WESTUS:20150424T003013Z:d43a0808-b9c2-43b0-b680-ef11d3b311c5" ], "Date": [ - "Tue, 21 Apr 2015 21:50:13 GMT" + "Fri, 24 Apr 2015 00:30:13 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-Datacenter/versions?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvV2luZG93c1NlcnZlci9za3VzLzIwMTItRGF0YWNlbnRlci92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions/4.0.201502?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvV2luZG93c1NlcnZlci9za3VzLzIwMTItUjItRGF0YWNlbnRlci92ZXJzaW9ucy80LjAuMjAxNTAyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2402,10 +2974,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"3.0.201503\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/MicrosoftWindowsServer/Publishers/WindowsServer/ArtifactTypes/VMImage/Offers/2012-Datacenter/Skus/3.0.201503/Versions/eastasia\"\r\n }\r\n]", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastasia\",\r\n \"name\": \"4.0.201502\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201502\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "300" + "404" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2420,7 +2992,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0cab10d5-9a61-421d-a404-22f670a37c08" + "ba4a21c9-b6d3-458f-9683-85119cee347e" ], "Cache-Control": [ "no-cache" @@ -2430,23 +3002,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31955" + "31930" ], "x-ms-correlation-request-id": [ - "c37001d4-cdb4-41d0-809d-03f722e12557" + "9b8782cd-d292-4b00-8681-e9d40a53587d" ], "x-ms-routing-request-id": [ - "WESTUS:20150421T215014Z:c37001d4-cdb4-41d0-809d-03f722e12557" + "WESTUS:20150424T003014Z:9b8782cd-d292-4b00-8681-e9d40a53587d" ], "Date": [ - "Tue, 21 Apr 2015 21:50:14 GMT" + "Fri, 24 Apr 2015 00:30:14 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-Datacenter/versions/3.0.201503?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvV2luZG93c1NlcnZlci9za3VzLzIwMTItRGF0YWNlbnRlci92ZXJzaW9ucy8zLjAuMjAxNTAzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions/4.0.201503?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvV2luZG93c1NlcnZlci9za3VzLzIwMTItUjItRGF0YWNlbnRlci92ZXJzaW9ucy80LjAuMjAxNTAzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2454,10 +3026,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastasia\",\r\n \"name\": \"3.0.201503\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter/Versions/3.0.201503\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastasia\",\r\n \"name\": \"4.0.201503\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201503\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "401" + "404" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2472,7 +3044,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "94fa896b-933b-41fe-a37e-3e5421e7ffd0" + "39aad235-d6c3-491f-85ab-2a67c4ac6efa" ], "Cache-Control": [ "no-cache" @@ -2482,23 +3054,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31954" + "31929" ], "x-ms-correlation-request-id": [ - "30b181b5-91cb-4c30-bd55-6c261af8786c" + "42406cc6-a11e-4cdc-8dc1-6402ff8e0bc0" ], "x-ms-routing-request-id": [ - "WESTUS:20150421T215015Z:30b181b5-91cb-4c30-bd55-6c261af8786c" + "WESTUS:20150424T003015Z:42406cc6-a11e-4cdc-8dc1-6402ff8e0bc0" ], "Date": [ - "Tue, 21 Apr 2015 21:50:15 GMT" + "Fri, 24 Apr 2015 00:30:15 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvV2luZG93c1NlcnZlci9za3VzLzIwMTItUjItRGF0YWNlbnRlci92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/Windows-Server-Technical-Preview/versions?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvV2luZG93c1NlcnZlci9za3VzL1dpbmRvd3MtU2VydmVyLVRlY2huaWNhbC1QcmV2aWV3L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2506,10 +3078,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"4.0.201503\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/MicrosoftWindowsServer/Publishers/WindowsServer/ArtifactTypes/VMImage/Offers/2012-R2-Datacenter/Skus/4.0.201503/Versions/eastasia\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"5.0.201504\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/Windows-Server-Technical-Preview/Versions/5.0.201504\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "303" + "317" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2524,7 +3096,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2d21751d-3107-458e-be32-006f1ca68f7e" + "d9ddc996-8a02-4afb-9857-d84377d1404b" ], "Cache-Control": [ "no-cache" @@ -2534,23 +3106,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31953" + "31928" ], "x-ms-correlation-request-id": [ - "7974cb62-6295-4bf8-8291-fa9dee2fdeff" + "c95db5cd-4005-4dfa-958a-376c625bce6e" ], "x-ms-routing-request-id": [ - "WESTUS:20150421T215016Z:7974cb62-6295-4bf8-8291-fa9dee2fdeff" + "WESTUS:20150424T003016Z:c95db5cd-4005-4dfa-958a-376c625bce6e" ], "Date": [ - "Tue, 21 Apr 2015 21:50:16 GMT" + "Fri, 24 Apr 2015 00:30:16 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions/4.0.201503?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvV2luZG93c1NlcnZlci9za3VzLzIwMTItUjItRGF0YWNlbnRlci92ZXJzaW9ucy80LjAuMjAxNTAzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/Windows-Server-Technical-Preview/versions/5.0.201504?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvV2luZG93c1NlcnZlci9za3VzL1dpbmRvd3MtU2VydmVyLVRlY2huaWNhbC1QcmV2aWV3L3ZlcnNpb25zLzUuMC4yMDE1MDQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2558,10 +3130,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastasia\",\r\n \"name\": \"4.0.201503\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201503\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastasia\",\r\n \"name\": \"5.0.201504\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/Windows-Server-Technical-Preview/Versions/5.0.201504\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "404" + "418" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2576,7 +3148,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "afaecd2e-10d3-455a-9098-464a1caeef66" + "835882e9-850e-4df0-8b6a-a233d587d0e7" ], "Cache-Control": [ "no-cache" @@ -2586,16 +3158,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31952" + "31927" ], "x-ms-correlation-request-id": [ - "f59549d0-27ae-4c42-9d44-17a6dc7cc093" + "c5aed6cc-c8d6-4630-a243-3df8046a4173" ], "x-ms-routing-request-id": [ - "WESTUS:20150421T215017Z:f59549d0-27ae-4c42-9d44-17a6dc7cc093" + "WESTUS:20150424T003017Z:c5aed6cc-c8d6-4630-a243-3df8046a4173" ], "Date": [ - "Tue, 21 Apr 2015 21:50:17 GMT" + "Fri, 24 Apr 2015 00:30:17 GMT" ] }, "StatusCode": 200 @@ -2610,10 +3182,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"$type\": \"Microsoft.WindowsAzure.PlatformImageRepository.ArtifactService.API.Consumption.VMImageOffer, PIR.ArtifactService\",\r\n \"location\": \"eastasia\",\r\n \"name\": \"WindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"WindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "422" + "292" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2628,7 +3200,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c0ee0828-8e84-4be0-a248-855c788af735" + "b8a480b4-d1f1-48bd-9cf4-7ecf511174c2" ], "Cache-Control": [ "no-cache" @@ -2638,16 +3210,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31951" + "31926" ], "x-ms-correlation-request-id": [ - "431f9803-a9b7-4b2d-ab24-837e3fedf132" + "f7a9a643-6f2f-4e5a-aee5-c48c57e3b4d5" ], "x-ms-routing-request-id": [ - "WESTUS:20150421T215018Z:431f9803-a9b7-4b2d-ab24-837e3fedf132" + "WESTUS:20150424T003018Z:f7a9a643-6f2f-4e5a-aee5-c48c57e3b4d5" ], "Date": [ - "Tue, 21 Apr 2015 21:50:18 GMT" + "Fri, 24 Apr 2015 00:30:18 GMT" ] }, "StatusCode": 200 @@ -2662,10 +3234,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"$type\": \"Microsoft.WindowsAzure.PlatformImageRepository.ArtifactService.API.Consumption.VMImageSku, PIR.ArtifactService\",\r\n \"location\": \"eastasia\",\r\n \"name\": \"WindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"WindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "449" + "321" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2680,7 +3252,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fd91cfb6-a3e4-4497-ba3f-ebd2dff8b4ae" + "5ce05fbf-cc4e-4616-8af2-da45eac9b643" ], "Cache-Control": [ "no-cache" @@ -2690,16 +3262,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31950" + "31925" ], "x-ms-correlation-request-id": [ - "0e5cbeca-b54c-4dc7-ad3f-929b0bf1f3e7" + "2cfd9c58-1e10-4786-8141-0e7b9250f90c" ], "x-ms-routing-request-id": [ - "WESTUS:20150421T215019Z:0e5cbeca-b54c-4dc7-ad3f-929b0bf1f3e7" + "WESTUS:20150424T003019Z:2cfd9c58-1e10-4786-8141-0e7b9250f90c" ], "Date": [ - "Tue, 21 Apr 2015 21:50:18 GMT" + "Fri, 24 Apr 2015 00:30:19 GMT" ] }, "StatusCode": 200 @@ -2714,7 +3286,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"1.0.131018\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/MicrosoftWindowsServerEssentials/Publishers/WindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/1.0.131018/Versions/eastasia\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"1.0.131129\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/MicrosoftWindowsServerEssentials/Publishers/WindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/1.0.131129/Versions/eastasia\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"1.0.131223\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/MicrosoftWindowsServerEssentials/Publishers/WindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/1.0.131223/Versions/eastasia\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"1.0.140123\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/MicrosoftWindowsServerEssentials/Publishers/WindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/1.0.140123/Versions/eastasia\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"1.0.140305\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/MicrosoftWindowsServerEssentials/Publishers/WindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/1.0.140305/Versions/eastasia\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"1.0.140327\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/MicrosoftWindowsServerEssentials/Publishers/WindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/1.0.140327/Versions/eastasia\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"1.0.140618\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/MicrosoftWindowsServerEssentials/Publishers/WindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/1.0.140618/Versions/eastasia\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"1.0.140715\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/MicrosoftWindowsServerEssentials/Publishers/WindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/1.0.140715/Versions/eastasia\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"1.0.141204\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/MicrosoftWindowsServerEssentials/Publishers/WindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/1.0.141204/Versions/eastasia\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"1.0.131018\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.131018\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"1.0.131129\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.131129\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"1.0.131223\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.131223\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"1.0.140123\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.140123\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"1.0.140305\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.140305\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"1.0.140327\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.140327\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"1.0.140618\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.140618\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"1.0.140715\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.140715\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"1.0.141204\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServerEssentials/ArtifactTypes/VMImage/Offers/WindowsServerEssentials/Skus/WindowsServerEssentials/Versions/1.0.141204\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "2928" @@ -2732,7 +3304,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "53a83565-1737-49bb-b323-b158a65f3dd7" + "9f98308b-f41e-492d-b900-8e6f276fb13e" ], "Cache-Control": [ "no-cache" @@ -2742,16 +3314,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31949" + "31924" ], "x-ms-correlation-request-id": [ - "2676bc55-b189-4b51-9df2-a098298ccab8" + "b947f668-4716-4053-8d4b-bf20690c6c0a" ], "x-ms-routing-request-id": [ - "WESTUS:20150421T215020Z:2676bc55-b189-4b51-9df2-a098298ccab8" + "WESTUS:20150424T003020Z:b947f668-4716-4053-8d4b-bf20690c6c0a" ], "Date": [ - "Tue, 21 Apr 2015 21:50:19 GMT" + "Fri, 24 Apr 2015 00:30:20 GMT" ] }, "StatusCode": 200 @@ -2784,7 +3356,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "44a01f65-72e4-4cef-bf77-bb2cc12f5952" + "711bff3a-23fb-4997-b794-c9b8056bfcef" ], "Cache-Control": [ "no-cache" @@ -2794,16 +3366,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31948" + "31923" ], "x-ms-correlation-request-id": [ - "5cd4e3c1-b847-4515-b094-893c1627ecf0" + "2584ed0a-1a85-405b-9df4-b598fcb8c88d" ], "x-ms-routing-request-id": [ - "WESTUS:20150421T215021Z:5cd4e3c1-b847-4515-b094-893c1627ecf0" + "WESTUS:20150424T003021Z:2584ed0a-1a85-405b-9df4-b598fcb8c88d" ], "Date": [ - "Tue, 21 Apr 2015 21:50:20 GMT" + "Fri, 24 Apr 2015 00:30:21 GMT" ] }, "StatusCode": 200 @@ -2836,7 +3408,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "29ae7519-aa0f-4bf2-931b-50b1f2ef605b" + "14614eff-5596-420a-b9be-dc20d80b4c3a" ], "Cache-Control": [ "no-cache" @@ -2846,16 +3418,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31947" + "31922" ], "x-ms-correlation-request-id": [ - "9ad0a172-6e8b-4d9f-a9d1-aeabbd3f2f27" + "77be1cc3-b701-479f-a1ef-ed50b0841bcb" ], "x-ms-routing-request-id": [ - "WESTUS:20150421T215022Z:9ad0a172-6e8b-4d9f-a9d1-aeabbd3f2f27" + "WESTUS:20150424T003022Z:77be1cc3-b701-479f-a1ef-ed50b0841bcb" ], "Date": [ - "Tue, 21 Apr 2015 21:50:21 GMT" + "Fri, 24 Apr 2015 00:30:22 GMT" ] }, "StatusCode": 200 @@ -2888,7 +3460,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a472b9a6-6c42-4044-8b4f-4d4909363bf4" + "08b36be7-b661-4f87-ae17-840ac77b4791" ], "Cache-Control": [ "no-cache" @@ -2898,16 +3470,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31946" + "31921" ], "x-ms-correlation-request-id": [ - "0baa9f5f-5d65-482f-a6f9-78c3ba7b8859" + "1645fc12-c9d2-43a3-80d6-e84ca249b1f7" ], "x-ms-routing-request-id": [ - "WESTUS:20150421T215024Z:0baa9f5f-5d65-482f-a6f9-78c3ba7b8859" + "WESTUS:20150424T003023Z:1645fc12-c9d2-43a3-80d6-e84ca249b1f7" ], "Date": [ - "Tue, 21 Apr 2015 21:50:24 GMT" + "Fri, 24 Apr 2015 00:30:23 GMT" ] }, "StatusCode": 200 @@ -2940,7 +3512,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "baa0c452-95ec-4281-90e2-7e4e393b3a20" + "a0cd54e9-582f-45ea-9940-4f043230c25d" ], "Cache-Control": [ "no-cache" @@ -2950,16 +3522,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31945" + "31920" ], "x-ms-correlation-request-id": [ - "ebf137b5-2d6d-45c3-96d9-d7ffcc81f27d" + "6ca05ac7-ed87-476c-8e5b-e3f8322039ce" ], "x-ms-routing-request-id": [ - "WESTUS:20150421T215027Z:ebf137b5-2d6d-45c3-96d9-d7ffcc81f27d" + "WESTUS:20150424T003024Z:6ca05ac7-ed87-476c-8e5b-e3f8322039ce" ], "Date": [ - "Tue, 21 Apr 2015 21:50:26 GMT" + "Fri, 24 Apr 2015 00:30:24 GMT" ] }, "StatusCode": 200 @@ -2992,7 +3564,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6c16b170-388c-4c76-bffa-ec83c323e271" + "7b70f5a5-3362-4cb0-a533-e000dbe4d3d1" ], "Cache-Control": [ "no-cache" @@ -3002,16 +3574,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31944" + "31919" ], "x-ms-correlation-request-id": [ - "e629dc85-f4e5-477d-9271-490d6d3fd6c1" + "b92c97d5-e749-4b6d-9083-05387f2071e3" ], "x-ms-routing-request-id": [ - "WESTUS:20150421T215030Z:e629dc85-f4e5-477d-9271-490d6d3fd6c1" + "WESTUS:20150424T003025Z:b92c97d5-e749-4b6d-9083-05387f2071e3" ], "Date": [ - "Tue, 21 Apr 2015 21:50:29 GMT" + "Fri, 24 Apr 2015 00:30:25 GMT" ] }, "StatusCode": 200 @@ -3044,7 +3616,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1cc10a8b-5f8e-4869-9cb6-53e9cd143355" + "9c5c135a-acf7-4a4b-84dd-7b050f740c10" ], "Cache-Control": [ "no-cache" @@ -3054,16 +3626,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31943" + "31918" ], "x-ms-correlation-request-id": [ - "33c95932-6c74-47ae-b684-2815e59442aa" + "2f2da5d0-c806-43b8-9806-95e1ed1b9c7d" ], "x-ms-routing-request-id": [ - "WESTUS:20150421T215031Z:33c95932-6c74-47ae-b684-2815e59442aa" + "WESTUS:20150424T003026Z:2f2da5d0-c806-43b8-9806-95e1ed1b9c7d" ], "Date": [ - "Tue, 21 Apr 2015 21:50:30 GMT" + "Fri, 24 Apr 2015 00:30:26 GMT" ] }, "StatusCode": 200 @@ -3096,7 +3668,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f6a923a0-28a2-4c75-a251-87e5f723da8e" + "175e3642-f426-4860-b958-14980839b9bb" ], "Cache-Control": [ "no-cache" @@ -3106,16 +3678,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31942" + "31917" ], "x-ms-correlation-request-id": [ - "63173be7-c111-49b8-b178-9b70a0dab936" + "75cfb570-e731-4d31-8953-16798bdc6870" ], "x-ms-routing-request-id": [ - "WESTUS:20150421T215032Z:63173be7-c111-49b8-b178-9b70a0dab936" + "WESTUS:20150424T003027Z:75cfb570-e731-4d31-8953-16798bdc6870" ], "Date": [ - "Tue, 21 Apr 2015 21:50:31 GMT" + "Fri, 24 Apr 2015 00:30:27 GMT" ] }, "StatusCode": 200 @@ -3148,7 +3720,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9839480d-a414-40ef-af61-d09f90dc6cde" + "a27aaf8d-479f-4dcc-b35f-426be8637aa6" ], "Cache-Control": [ "no-cache" @@ -3158,16 +3730,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31941" + "31916" ], "x-ms-correlation-request-id": [ - "0755b6ec-872a-4dfb-abc7-e5bb589d714e" + "a0deefe4-e0d5-4991-a648-d3f4a1d0ac40" ], "x-ms-routing-request-id": [ - "WESTUS:20150421T215033Z:0755b6ec-872a-4dfb-abc7-e5bb589d714e" + "WESTUS:20150424T003028Z:a0deefe4-e0d5-4991-a648-d3f4a1d0ac40" ], "Date": [ - "Tue, 21 Apr 2015 21:50:32 GMT" + "Fri, 24 Apr 2015 00:30:28 GMT" ] }, "StatusCode": 200 @@ -3200,7 +3772,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f7533458-a27c-4e58-b139-c8662a9195da" + "1102c2cd-060e-4f52-99df-4c607bd63f95" ], "Cache-Control": [ "no-cache" @@ -3210,16 +3782,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31940" + "31915" ], "x-ms-correlation-request-id": [ - "f1e2129d-2dd2-4a1b-817e-8795dab82ac9" + "734719c3-eb4b-4864-8e04-41bf0a671eb2" ], "x-ms-routing-request-id": [ - "WESTUS:20150421T215034Z:f1e2129d-2dd2-4a1b-817e-8795dab82ac9" + "WESTUS:20150424T003029Z:734719c3-eb4b-4864-8e04-41bf0a671eb2" ], "Date": [ - "Tue, 21 Apr 2015 21:50:33 GMT" + "Fri, 24 Apr 2015 00:30:29 GMT" ] }, "StatusCode": 200 @@ -3234,10 +3806,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"$type\": \"Microsoft.WindowsAzure.PlatformImageRepository.ArtifactService.API.Consumption.VMImageOffer, PIR.ArtifactService\",\r\n \"location\": \"eastasia\",\r\n \"name\": \"WindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"WindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "413" + "283" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3252,7 +3824,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "db6a6133-b2b7-4ed1-ad52-8ccc5ecafb2a" + "bdd36522-d5ef-4ed0-9555-d5eec9fc5678" ], "Cache-Control": [ "no-cache" @@ -3262,16 +3834,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31939" + "31914" ], "x-ms-correlation-request-id": [ - "742042dd-1133-4da2-92eb-6cecb209e2e8" + "eafaa0b0-320b-440f-9a95-516ba979378d" ], "x-ms-routing-request-id": [ - "WESTUS:20150421T215035Z:742042dd-1133-4da2-92eb-6cecb209e2e8" + "WESTUS:20150424T003030Z:eafaa0b0-320b-440f-9a95-516ba979378d" ], "Date": [ - "Tue, 21 Apr 2015 21:50:35 GMT" + "Fri, 24 Apr 2015 00:30:30 GMT" ] }, "StatusCode": 200 @@ -3286,10 +3858,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"$type\": \"Microsoft.WindowsAzure.PlatformImageRepository.ArtifactService.API.Consumption.VMImageSku, PIR.ArtifactService\",\r\n \"location\": \"eastasia\",\r\n \"name\": \"2012R2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2\"\r\n },\r\n {\r\n \"$type\": \"Microsoft.WindowsAzure.PlatformImageRepository.ArtifactService.API.Consumption.VMImageSku, PIR.ArtifactService\",\r\n \"location\": \"eastasia\",\r\n \"name\": \"TechnicalPreview\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/TechnicalPreview\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"2012R2\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"TechnicalPreview\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/TechnicalPreview\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "835" + "579" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3304,7 +3876,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6d04e7cf-fac1-4f74-994e-a2e645c73332" + "39a1db5b-4a60-4ee5-a2ae-8bf87ea9c3b9" ], "Cache-Control": [ "no-cache" @@ -3314,16 +3886,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31938" + "31913" ], "x-ms-correlation-request-id": [ - "2d5ba11d-9452-4cbc-bedd-55b3d5e0849c" + "9391a4e5-e526-49a8-9fb6-5937cdd9eff2" ], "x-ms-routing-request-id": [ - "WESTUS:20150421T215036Z:2d5ba11d-9452-4cbc-bedd-55b3d5e0849c" + "WESTUS:20150424T003031Z:9391a4e5-e526-49a8-9fb6-5937cdd9eff2" ], "Date": [ - "Tue, 21 Apr 2015 21:50:36 GMT" + "Fri, 24 Apr 2015 00:30:31 GMT" ] }, "StatusCode": 200 @@ -3338,7 +3910,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"4.3.4596\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/MicrosoftWindowsServerHPCPack/Publishers/WindowsServerHPCPack/ArtifactTypes/VMImage/Offers/2012R2/Skus/4.3.4596/Versions/eastasia\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"4.3.4650\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/MicrosoftWindowsServerHPCPack/Publishers/WindowsServerHPCPack/ArtifactTypes/VMImage/Offers/2012R2/Skus/4.3.4650/Versions/eastasia\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"4.3.4652\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/MicrosoftWindowsServerHPCPack/Publishers/WindowsServerHPCPack/ArtifactTypes/VMImage/Offers/2012R2/Skus/4.3.4652/Versions/eastasia\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"4.3.4660\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/MicrosoftWindowsServerHPCPack/Publishers/WindowsServerHPCPack/ArtifactTypes/VMImage/Offers/2012R2/Skus/4.3.4660/Versions/eastasia\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"4.3.4665\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/MicrosoftWindowsServerHPCPack/Publishers/WindowsServerHPCPack/ArtifactTypes/VMImage/Offers/2012R2/Skus/4.3.4665/Versions/eastasia\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"4.3.4596\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2/Versions/4.3.4596\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"4.3.4650\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2/Versions/4.3.4650\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"4.3.4652\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2/Versions/4.3.4652\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"4.3.4660\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2/Versions/4.3.4660\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"4.3.4665\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/2012R2/Versions/4.3.4665\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "1493" @@ -3356,7 +3928,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7065682e-2fe9-4174-95e4-f8f264562d8e" + "a69f51df-9be9-4e16-abc2-52b2e588429d" ], "Cache-Control": [ "no-cache" @@ -3366,16 +3938,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31937" + "31912" ], "x-ms-correlation-request-id": [ - "d54c2c2e-e547-4abc-864c-f24e2692c228" + "c1ad8a34-8513-46ca-96bc-ca1852fc99d6" ], "x-ms-routing-request-id": [ - "WESTUS:20150421T215037Z:d54c2c2e-e547-4abc-864c-f24e2692c228" + "WESTUS:20150424T003032Z:c1ad8a34-8513-46ca-96bc-ca1852fc99d6" ], "Date": [ - "Tue, 21 Apr 2015 21:50:37 GMT" + "Fri, 24 Apr 2015 00:30:31 GMT" ] }, "StatusCode": 200 @@ -3408,7 +3980,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "570fd747-df95-43ff-9358-405f50c71585" + "c4d64268-046a-4b88-b302-e1d16459b350" ], "Cache-Control": [ "no-cache" @@ -3418,16 +3990,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31936" + "31911" ], "x-ms-correlation-request-id": [ - "204ed37d-9e70-4626-9ae1-84fd07952fdc" + "b79ddc69-8363-4af9-add7-7b1ebb9fa0bb" ], "x-ms-routing-request-id": [ - "WESTUS:20150421T215038Z:204ed37d-9e70-4626-9ae1-84fd07952fdc" + "WESTUS:20150424T003033Z:b79ddc69-8363-4af9-add7-7b1ebb9fa0bb" ], "Date": [ - "Tue, 21 Apr 2015 21:50:38 GMT" + "Fri, 24 Apr 2015 00:30:33 GMT" ] }, "StatusCode": 200 @@ -3460,7 +4032,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "534c922f-56cf-4ec4-88cc-a51b1742cf85" + "2ad578ee-9e96-4dcf-916d-2d0cf2a8757e" ], "Cache-Control": [ "no-cache" @@ -3470,16 +4042,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31935" + "31910" ], "x-ms-correlation-request-id": [ - "5e26d105-4ddd-4cb2-b5f2-9a2c8879afff" + "9f54b797-2042-4a7d-acc8-7d2f694c9eb6" ], "x-ms-routing-request-id": [ - "WESTUS:20150421T215039Z:5e26d105-4ddd-4cb2-b5f2-9a2c8879afff" + "WESTUS:20150424T003034Z:9f54b797-2042-4a7d-acc8-7d2f694c9eb6" ], "Date": [ - "Tue, 21 Apr 2015 21:50:39 GMT" + "Fri, 24 Apr 2015 00:30:33 GMT" ] }, "StatusCode": 200 @@ -3512,7 +4084,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7cae6478-03c5-4d16-aab8-69001d47604d" + "f771fb5e-36af-43f8-a489-d243ddddc9e0" ], "Cache-Control": [ "no-cache" @@ -3522,16 +4094,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31934" + "31909" ], "x-ms-correlation-request-id": [ - "63d41ed7-fe00-4706-b460-7e4999235242" + "832fe8fc-6863-4c62-b790-6fc1b044f947" ], "x-ms-routing-request-id": [ - "WESTUS:20150421T215040Z:63d41ed7-fe00-4706-b460-7e4999235242" + "WESTUS:20150424T003035Z:832fe8fc-6863-4c62-b790-6fc1b044f947" ], "Date": [ - "Tue, 21 Apr 2015 21:50:40 GMT" + "Fri, 24 Apr 2015 00:30:34 GMT" ] }, "StatusCode": 200 @@ -3564,7 +4136,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a96ead8f-bd78-4f7c-94d3-88d2d0748b25" + "bcdb1035-7903-4a46-a07e-7e3fa985d2e3" ], "Cache-Control": [ "no-cache" @@ -3574,16 +4146,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31933" + "31908" ], "x-ms-correlation-request-id": [ - "e14d69af-b1b3-409b-bf20-5aa6ae3a7120" + "eba376a5-a049-48fc-b049-c21a84493515" ], "x-ms-routing-request-id": [ - "WESTUS:20150421T215041Z:e14d69af-b1b3-409b-bf20-5aa6ae3a7120" + "WESTUS:20150424T003036Z:eba376a5-a049-48fc-b049-c21a84493515" ], "Date": [ - "Tue, 21 Apr 2015 21:50:41 GMT" + "Fri, 24 Apr 2015 00:30:35 GMT" ] }, "StatusCode": 200 @@ -3616,7 +4188,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e3aaabf2-ea1f-4644-8a40-605be1335f10" + "458c8930-2bd7-4f96-b162-79cfb25d0f84" ], "Cache-Control": [ "no-cache" @@ -3626,16 +4198,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31932" + "31907" ], "x-ms-correlation-request-id": [ - "128909a2-4c60-4066-b271-2237d291c9b4" + "c8f079e5-c041-48c5-8761-c24fb0f7b733" ], "x-ms-routing-request-id": [ - "WESTUS:20150421T215042Z:128909a2-4c60-4066-b271-2237d291c9b4" + "WESTUS:20150424T003037Z:c8f079e5-c041-48c5-8761-c24fb0f7b733" ], "Date": [ - "Tue, 21 Apr 2015 21:50:42 GMT" + "Fri, 24 Apr 2015 00:30:36 GMT" ] }, "StatusCode": 200 @@ -3650,7 +4222,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"4.4.4806\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/MicrosoftWindowsServerHPCPack/Publishers/WindowsServerHPCPack/ArtifactTypes/VMImage/Offers/TechnicalPreview/Skus/4.4.4806/Versions/eastasia\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"4.4.4806\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServerHPCPack/ArtifactTypes/VMImage/Offers/WindowsServerHPCPack/Skus/TechnicalPreview/Versions/4.4.4806\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "311" @@ -3668,7 +4240,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "23f2c570-2906-467a-8380-1c652fdbbba1" + "477df178-3311-44f7-be96-258c80e25acd" ], "Cache-Control": [ "no-cache" @@ -3678,16 +4250,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31931" + "31906" ], "x-ms-correlation-request-id": [ - "52443606-b3df-4dd6-92f4-da3167b07732" + "b98afec2-0e69-4062-8c4b-6e5082e28345" ], "x-ms-routing-request-id": [ - "WESTUS:20150421T215043Z:52443606-b3df-4dd6-92f4-da3167b07732" + "WESTUS:20150424T003038Z:b98afec2-0e69-4062-8c4b-6e5082e28345" ], "Date": [ - "Tue, 21 Apr 2015 21:50:43 GMT" + "Fri, 24 Apr 2015 00:30:37 GMT" ] }, "StatusCode": 200 @@ -3720,7 +4292,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "19813511-d76e-4812-94fd-59dec84165a0" + "35ac51db-274b-430b-888f-1e91f863d075" ], "Cache-Control": [ "no-cache" @@ -3730,16 +4302,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31930" + "31905" ], "x-ms-correlation-request-id": [ - "2ecea8cf-27e8-4498-aa69-1421a5d78567" + "0277e219-e693-40a4-973e-60c0b3bc7ce5" ], "x-ms-routing-request-id": [ - "WESTUS:20150421T215044Z:2ecea8cf-27e8-4498-aa69-1421a5d78567" + "WESTUS:20150424T003039Z:0277e219-e693-40a4-973e-60c0b3bc7ce5" ], "Date": [ - "Tue, 21 Apr 2015 21:50:44 GMT" + "Fri, 24 Apr 2015 00:30:38 GMT" ] }, "StatusCode": 200 @@ -3772,7 +4344,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "21083994-9d22-4b8f-9c80-90098f9425bb" + "ddf95de0-618a-4f64-9ee1-69a8165d1212" ], "Cache-Control": [ "no-cache" @@ -3782,16 +4354,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31928" + "31903" ], "x-ms-correlation-request-id": [ - "7d105e61-34eb-43e1-8ab5-6eee391dbaf2" + "ebd9b8d9-66d5-429d-beb0-9a9192f99978" ], "x-ms-routing-request-id": [ - "WESTUS:20150421T215046Z:7d105e61-34eb-43e1-8ab5-6eee391dbaf2" + "WESTUS:20150424T003041Z:ebd9b8d9-66d5-429d-beb0-9a9192f99978" ], "Date": [ - "Tue, 21 Apr 2015 21:50:46 GMT" + "Fri, 24 Apr 2015 00:30:41 GMT" ] }, "StatusCode": 200 @@ -3824,7 +4396,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f0199bf2-5ea0-4091-ad8b-e6e30cbe93d1" + "14f0984b-8952-4017-b631-6db362bed2d9" ], "Cache-Control": [ "no-cache" @@ -3834,16 +4406,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31927" + "31902" ], "x-ms-correlation-request-id": [ - "3c1b9804-892b-49f3-a049-9a1b3eab2d6a" + "1d7ae306-71c6-401c-9ff8-40fb7052282e" ], "x-ms-routing-request-id": [ - "WESTUS:20150421T215047Z:3c1b9804-892b-49f3-a049-9a1b3eab2d6a" + "WESTUS:20150424T003042Z:1d7ae306-71c6-401c-9ff8-40fb7052282e" ], "Date": [ - "Tue, 21 Apr 2015 21:50:47 GMT" + "Fri, 24 Apr 2015 00:30:42 GMT" ] }, "StatusCode": 200 @@ -3876,7 +4448,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b29f17c3-ed18-4ec0-b1a6-2f17ad67fa70" + "941a8b6f-b43a-4544-a0fb-8c486175170a" ], "Cache-Control": [ "no-cache" @@ -3886,16 +4458,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31926" + "31901" ], "x-ms-correlation-request-id": [ - "8d977591-95cb-4204-bba6-bd52096516f9" + "2d31d5c2-3b1e-4343-81dc-d30dbe6120d9" ], "x-ms-routing-request-id": [ - "WESTUS:20150421T215049Z:8d977591-95cb-4204-bba6-bd52096516f9" + "WESTUS:20150424T003044Z:2d31d5c2-3b1e-4343-81dc-d30dbe6120d9" ], "Date": [ - "Tue, 21 Apr 2015 21:50:48 GMT" + "Fri, 24 Apr 2015 00:30:43 GMT" ] }, "StatusCode": 200 @@ -3928,7 +4500,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1859e800-287d-4524-a84f-5fba3a13eba6" + "92a0604e-c148-4ecb-ab87-881f57c01049" ], "Cache-Control": [ "no-cache" @@ -3938,16 +4510,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31925" + "31900" ], "x-ms-correlation-request-id": [ - "4ecac961-6688-4f54-a4bc-55075aa8abaa" + "25542dba-3971-4f0c-8a6c-827473e6e36f" ], "x-ms-routing-request-id": [ - "WESTUS:20150421T215050Z:4ecac961-6688-4f54-a4bc-55075aa8abaa" + "WESTUS:20150424T003045Z:25542dba-3971-4f0c-8a6c-827473e6e36f" ], "Date": [ - "Tue, 21 Apr 2015 21:50:49 GMT" + "Fri, 24 Apr 2015 00:30:44 GMT" ] }, "StatusCode": 200 @@ -3980,7 +4552,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "eb14e18b-f338-4641-b58c-c791780e4a45" + "fdb02d47-95c6-415e-a524-9cf23f1bdf85" ], "Cache-Control": [ "no-cache" @@ -3990,16 +4562,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31924" + "31899" ], "x-ms-correlation-request-id": [ - "ee05d140-c7c2-4f7a-b3ae-9e3059ab5e41" + "713f522f-b590-4962-ad7d-3cb7f2d2ad59" ], "x-ms-routing-request-id": [ - "WESTUS:20150421T215051Z:ee05d140-c7c2-4f7a-b3ae-9e3059ab5e41" + "WESTUS:20150424T003046Z:713f522f-b590-4962-ad7d-3cb7f2d2ad59" ], "Date": [ - "Tue, 21 Apr 2015 21:50:50 GMT" + "Fri, 24 Apr 2015 00:30:45 GMT" ] }, "StatusCode": 200 @@ -4032,7 +4604,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "74e1383d-a49e-48ad-a08a-e725b073bae7" + "edcdc2f4-3eb5-4d78-b3fe-6ac3addf2dda" ], "Cache-Control": [ "no-cache" @@ -4042,16 +4614,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31923" + "31898" ], "x-ms-correlation-request-id": [ - "6d38094f-f67c-4a07-b094-7ca8304e2d3e" + "8a0a4cdb-dfc7-43e5-9d68-e35ec0c3f7d2" ], "x-ms-routing-request-id": [ - "WESTUS:20150421T215052Z:6d38094f-f67c-4a07-b094-7ca8304e2d3e" + "WESTUS:20150424T003047Z:8a0a4cdb-dfc7-43e5-9d68-e35ec0c3f7d2" ], "Date": [ - "Tue, 21 Apr 2015 21:50:51 GMT" + "Fri, 24 Apr 2015 00:30:46 GMT" ] }, "StatusCode": 200 @@ -4084,7 +4656,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9c5632e4-5eb7-4292-8b51-8f165f5320b8" + "ce85dd7b-7684-41c0-a49c-0ef72e0ab028" ], "Cache-Control": [ "no-cache" @@ -4094,16 +4666,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31922" + "31897" ], "x-ms-correlation-request-id": [ - "8f8122bf-9c3a-4592-a6ce-85936caa7c8a" + "4987e5c6-117c-4021-81e2-9a3660ea0ff7" ], "x-ms-routing-request-id": [ - "WESTUS:20150421T215053Z:8f8122bf-9c3a-4592-a6ce-85936caa7c8a" + "WESTUS:20150424T003048Z:4987e5c6-117c-4021-81e2-9a3660ea0ff7" ], "Date": [ - "Tue, 21 Apr 2015 21:50:52 GMT" + "Fri, 24 Apr 2015 00:30:47 GMT" ] }, "StatusCode": 200 @@ -4136,7 +4708,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "815fba33-574b-47b3-9852-ba7dd14b6d0d" + "a27e376b-8d17-4b75-91d2-c9cdaf29dff2" ], "Cache-Control": [ "no-cache" @@ -4146,16 +4718,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31921" + "31896" ], "x-ms-correlation-request-id": [ - "e3506d46-afc8-4bb3-bbbf-4c7e03f3dd1e" + "c7c17db4-1613-4a02-9111-68c26cad1342" ], "x-ms-routing-request-id": [ - "WESTUS:20150421T215054Z:e3506d46-afc8-4bb3-bbbf-4c7e03f3dd1e" + "WESTUS:20150424T003049Z:c7c17db4-1613-4a02-9111-68c26cad1342" ], "Date": [ - "Tue, 21 Apr 2015 21:50:53 GMT" + "Fri, 24 Apr 2015 00:30:48 GMT" ] }, "StatusCode": 200 @@ -4188,7 +4760,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1a8be0e4-89c7-4f33-a26f-2d926b5404d5" + "98d933b7-e28f-443b-a54c-fb8e340ac375" ], "Cache-Control": [ "no-cache" @@ -4198,16 +4770,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31920" + "31895" ], "x-ms-correlation-request-id": [ - "8a3d95d6-cb1e-4e61-949f-3834d35d5738" + "2ef5781a-6998-4e69-b6ff-c7e9340f2abc" ], "x-ms-routing-request-id": [ - "WESTUS:20150421T215055Z:8a3d95d6-cb1e-4e61-949f-3834d35d5738" + "WESTUS:20150424T003050Z:2ef5781a-6998-4e69-b6ff-c7e9340f2abc" ], "Date": [ - "Tue, 21 Apr 2015 21:50:54 GMT" + "Fri, 24 Apr 2015 00:30:49 GMT" ] }, "StatusCode": 200 @@ -4240,7 +4812,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c18a36f8-6ed1-459a-87c3-1fc769ccf670" + "91191b9e-b02a-410a-892f-f6f2986cfb28" ], "Cache-Control": [ "no-cache" @@ -4250,23 +4822,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31919" + "31894" ], "x-ms-correlation-request-id": [ - "b6ed4981-a0d5-4e1f-8048-df100d6518ec" + "17e5d071-1bc1-4a24-9dbd-83420e55a5ee" ], "x-ms-routing-request-id": [ - "WESTUS:20150421T215056Z:b6ed4981-a0d5-4e1f-8048-df100d6518ec" + "WESTUS:20150424T003051Z:17e5d071-1bc1-4a24-9dbd-83420e55a5ee" ], "Date": [ - "Tue, 21 Apr 2015 21:50:55 GMT" + "Fri, 24 Apr 2015 00:30:50 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/EastAsia/publishers/pstestrg4266/artifacttypes/vmimage/offers?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdEFzaWEvcHVibGlzaGVycy9wc3Rlc3RyZzQyNjYvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/publishers/pstestrg9154/artifacttypes/vmimage/offers?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycy9wc3Rlc3RyZzkxNTQvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4274,7 +4846,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"Publisher: pstestrg4266 was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"Publisher: pstestrg9154 was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "105" @@ -4292,7 +4864,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "beb5a892-f763-4798-af68-8f676a95a2d0" + "5120d207-7259-4ff8-8cab-f9883959350e" ], "Cache-Control": [ "no-cache" @@ -4302,23 +4874,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31917" + "31892" ], "x-ms-correlation-request-id": [ - "14415ba5-9f4b-4ec2-9c47-5a9ba1ca5306" + "3ad73444-c20e-44d6-b738-10279b3469c6" ], "x-ms-routing-request-id": [ - "WESTUS:20150421T215102Z:14415ba5-9f4b-4ec2-9c47-5a9ba1ca5306" + "WESTUS:20150424T003053Z:3ad73444-c20e-44d6-b738-10279b3469c6" ], "Date": [ - "Tue, 21 Apr 2015 21:51:01 GMT" + "Fri, 24 Apr 2015 00:30:53 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/EastAsia/publishers/pstestrg4266/artifacttypes/vmimage/offers/pstestrg7129/skus?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdEFzaWEvcHVibGlzaGVycy9wc3Rlc3RyZzQyNjYvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9wc3Rlc3RyZzcxMjkvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/publishers/pstestrg9154/artifacttypes/vmimage/offers/pstestrg3973/skus?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycy9wc3Rlc3RyZzkxNTQvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9wc3Rlc3RyZzM5NzMvc2t1cz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4326,10 +4898,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"Artifact: offer: pstestrg7129 was not found. was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"Publisher: pstestrg9154 was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "126" + "105" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4344,7 +4916,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7a5e90fd-f7e6-4933-91d9-eccb89a4ff95" + "1de667cf-f863-4c30-9f21-4271cf41e4ba" ], "Cache-Control": [ "no-cache" @@ -4354,23 +4926,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31916" + "31891" ], "x-ms-correlation-request-id": [ - "d58aceb6-383b-4c63-9521-5e8cf148c67c" + "c5f32a60-4680-4239-b0d5-89e17d94cd7b" ], "x-ms-routing-request-id": [ - "WESTUS:20150421T215103Z:d58aceb6-383b-4c63-9521-5e8cf148c67c" + "WESTUS:20150424T003055Z:c5f32a60-4680-4239-b0d5-89e17d94cd7b" ], "Date": [ - "Tue, 21 Apr 2015 21:51:03 GMT" + "Fri, 24 Apr 2015 00:30:54 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/EastAsia/publishers/pstestrg4266/artifacttypes/vmimage/offers/pstestrg7129/skus/pstestrg3006/versions?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdEFzaWEvcHVibGlzaGVycy9wc3Rlc3RyZzQyNjYvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9wc3Rlc3RyZzcxMjkvc2t1cy9wc3Rlc3RyZzMwMDYvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/publishers/pstestrg9154/artifacttypes/vmimage/offers/pstestrg3973/skus/pstestrg9339/versions?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycy9wc3Rlc3RyZzkxNTQvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9wc3Rlc3RyZzM5NzMvc2t1cy9wc3Rlc3RyZzkzMzkvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4378,10 +4950,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"Artifact: sku: pstestrg3006 was not found. was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"Publisher: pstestrg9154 was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "124" + "105" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4396,7 +4968,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fdf6acca-b866-4f1e-8d60-424f7e96ab61" + "8efbfaee-9b34-4508-bdb4-0b758c992867" ], "Cache-Control": [ "no-cache" @@ -4406,23 +4978,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31915" + "31890" ], "x-ms-correlation-request-id": [ - "d442eac1-3bbd-41e9-8fa5-8dd6f68e55dd" + "0820b46b-66a2-4ce6-b8c2-6f096e212bb2" ], "x-ms-routing-request-id": [ - "WESTUS:20150421T215104Z:d442eac1-3bbd-41e9-8fa5-8dd6f68e55dd" + "WESTUS:20150424T003056Z:0820b46b-66a2-4ce6-b8c2-6f096e212bb2" ], "Date": [ - "Tue, 21 Apr 2015 21:51:04 GMT" + "Fri, 24 Apr 2015 00:30:55 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/EastAsia/publishers/pstestrg4266/artifacttypes/vmimage/offers/pstestrg7129/skus/pstestrg3006/versions?api-version=2015-05-01-preview&name%20eq%20'latest'", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdEFzaWEvcHVibGlzaGVycy9wc3Rlc3RyZzQyNjYvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9wc3Rlc3RyZzcxMjkvc2t1cy9wc3Rlc3RyZzMwMDYvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3Jm5hbWUlMjBlcSUyMCdsYXRlc3Qn", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/publishers/pstestrg9154/artifacttypes/vmimage/offers/pstestrg3973/skus/pstestrg9339/versions?api-version=2015-05-01-preview&name%20eq%20'latest'", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycy9wc3Rlc3RyZzkxNTQvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9wc3Rlc3RyZzM5NzMvc2t1cy9wc3Rlc3RyZzkzMzkvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3Jm5hbWUlMjBlcSUyMCdsYXRlc3Qn", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4430,10 +5002,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"Artifact: sku: pstestrg3006 was not found. was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"Publisher: pstestrg9154 was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "124" + "105" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4448,7 +5020,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "056b3273-9094-4f6e-b216-364d214fe4cc" + "33237698-0981-4969-ba60-fad4be5b7885" ], "Cache-Control": [ "no-cache" @@ -4458,23 +5030,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31914" + "31889" ], "x-ms-correlation-request-id": [ - "e4e4e99f-84b5-4c65-9ea2-55299d00776e" + "0d02594f-fb97-47e9-b0b4-f8c248f37985" ], "x-ms-routing-request-id": [ - "WESTUS:20150421T215106Z:e4e4e99f-84b5-4c65-9ea2-55299d00776e" + "WESTUS:20150424T003058Z:0d02594f-fb97-47e9-b0b4-f8c248f37985" ], "Date": [ - "Tue, 21 Apr 2015 21:51:05 GMT" + "Fri, 24 Apr 2015 00:30:57 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/EastAsia/publishers/pstestrg4266/artifacttypes/vmimage/offers/pstestrg7129/skus/pstestrg3006/versions/1.0.0?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdEFzaWEvcHVibGlzaGVycy9wc3Rlc3RyZzQyNjYvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9wc3Rlc3RyZzcxMjkvc2t1cy9wc3Rlc3RyZzMwMDYvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/publishers/pstestrg9154/artifacttypes/vmimage/offers/pstestrg3973/skus/pstestrg9339/versions/1.0.0?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycy9wc3Rlc3RyZzkxNTQvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9wc3Rlc3RyZzM5NzMvc2t1cy9wc3Rlc3RyZzkzMzkvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4482,10 +5054,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"Artifact: VMImage was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"Publisher: pstestrg9154 was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "99" + "105" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4500,7 +5072,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ed47f3a3-6d5e-4e3d-badb-0c690fdfd764" + "6ac8f8b8-3eb6-4da7-97f9-1a5000a1f63a" ], "Cache-Control": [ "no-cache" @@ -4510,23 +5082,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31913" + "31888" ], "x-ms-correlation-request-id": [ - "39c6b448-f375-4437-ac5f-eb2ffca047ea" + "074c1a4a-2988-46c9-9041-e983770474c7" ], "x-ms-routing-request-id": [ - "WESTUS:20150421T215107Z:39c6b448-f375-4437-ac5f-eb2ffca047ea" + "WESTUS:20150424T003059Z:074c1a4a-2988-46c9-9041-e983770474c7" ], "Date": [ - "Tue, 21 Apr 2015 21:51:07 GMT" + "Fri, 24 Apr 2015 00:30:59 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/EastAsia/publishers/pstestrg4266/artifacttypes/vmextension/types/pstestrg8547/versions/1.0.0?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdEFzaWEvcHVibGlzaGVycy9wc3Rlc3RyZzQyNjYvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9wc3Rlc3RyZzg1NDcvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/publishers/pstestrg9154/artifacttypes/vmextension/types/pstestrg8465/versions/1.0.0?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycy9wc3Rlc3RyZzkxNTQvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9wc3Rlc3RyZzg0NjUvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4534,10 +5106,10 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"Artifact: VMExtension was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"Publisher: pstestrg9154 was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "103" + "105" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4552,7 +5124,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3ff19e2b-8602-4bc5-8351-dff124fce3a3" + "b0708115-4cb6-4cb8-9efe-713577248415" ], "Cache-Control": [ "no-cache" @@ -4562,23 +5134,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31912" + "31887" ], "x-ms-correlation-request-id": [ - "974861f5-75ed-42c1-be78-8cfa6a4618d3" + "387b1525-dc66-4bce-b4c3-de97dd7e64d1" ], "x-ms-routing-request-id": [ - "WESTUS:20150421T215108Z:974861f5-75ed-42c1-be78-8cfa6a4618d3" + "WESTUS:20150424T003100Z:387b1525-dc66-4bce-b4c3-de97dd7e64d1" ], "Date": [ - "Tue, 21 Apr 2015 21:51:08 GMT" + "Fri, 24 Apr 2015 00:31:00 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/EastAsia/publishers/pstestrg4266/artifacttypes/vmextension/types?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdEFzaWEvcHVibGlzaGVycy9wc3Rlc3RyZzQyNjYvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/publishers/pstestrg9154/artifacttypes/vmextension/types?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycy9wc3Rlc3RyZzkxNTQvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4586,7 +5158,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"Publisher: pstestrg4266 was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"Publisher: pstestrg9154 was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "105" @@ -4604,7 +5176,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "28966be5-09ab-46e5-9494-63c2a1baa9f8" + "d9aa4a63-ef7c-4c90-9081-e9e80885278b" ], "Cache-Control": [ "no-cache" @@ -4614,23 +5186,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31911" + "31886" ], "x-ms-correlation-request-id": [ - "548a4648-e975-4e14-88b1-1e9d6fd63686" + "cacb571a-464c-4d31-a3eb-93e25cadb71b" ], "x-ms-routing-request-id": [ - "WESTUS:20150421T215110Z:548a4648-e975-4e14-88b1-1e9d6fd63686" + "WESTUS:20150424T003102Z:cacb571a-464c-4d31-a3eb-93e25cadb71b" ], "Date": [ - "Tue, 21 Apr 2015 21:51:09 GMT" + "Fri, 24 Apr 2015 00:31:02 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/EastAsia/publishers/pstestrg4266/artifacttypes/vmextension/types/pstestrg8547/versions?api-version=2015-05-01-preview&name%20eq%20'latest'", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdEFzaWEvcHVibGlzaGVycy9wc3Rlc3RyZzQyNjYvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9wc3Rlc3RyZzg1NDcvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3Jm5hbWUlMjBlcSUyMCdsYXRlc3Qn", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/publishers/pstestrg9154/artifacttypes/vmextension/types/pstestrg8465/versions?api-version=2015-05-01-preview&name%20eq%20'latest'", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycy9wc3Rlc3RyZzkxNTQvYXJ0aWZhY3R0eXBlcy92bWV4dGVuc2lvbi90eXBlcy9wc3Rlc3RyZzg0NjUvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3Jm5hbWUlMjBlcSUyMCdsYXRlc3Qn", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4638,7 +5210,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"Publisher: pstestrg4266 was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"Publisher: pstestrg9154 was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "105" @@ -4656,7 +5228,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6cc45c8b-59ba-404a-9a6e-816b8fa60630" + "df09ae21-63db-4543-828f-e6fc0c1d7e94" ], "Cache-Control": [ "no-cache" @@ -4666,16 +5238,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31910" + "31885" ], "x-ms-correlation-request-id": [ - "ff0672a4-e987-4719-94a0-aee2b69d6884" + "2ab6fffe-af29-485f-b76b-6d7d118325ca" ], "x-ms-routing-request-id": [ - "WESTUS:20150421T215111Z:ff0672a4-e987-4719-94a0-aee2b69d6884" + "WESTUS:20150424T003103Z:2ab6fffe-af29-485f-b76b-6d7d118325ca" ], "Date": [ - "Tue, 21 Apr 2015 21:51:11 GMT" + "Fri, 24 Apr 2015 00:31:03 GMT" ] }, "StatusCode": 404 @@ -4683,10 +5255,10 @@ ], "Names": { "Test-VirtualMachineImageList": [ - "pstestrg4266", - "pstestrg7129", - "pstestrg3006", - "pstestrg8547" + "pstestrg9154", + "pstestrg3973", + "pstestrg9339", + "pstestrg8465" ] }, "Variables": { @@ -4694,4 +5266,4 @@ "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", "Domain": "microsoft.com" } -} \ No newline at end of file +} diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestVirtualMachineList.json b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestVirtualMachineList.json index f28ddd1c08bf..42945a1b9584 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestVirtualMachineList.json +++ b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestVirtualMachineList.json @@ -7,13 +7,13 @@ "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201502\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stohpftestrgname9999.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/hpftestrgname9999/providers/Microsoft.Network/networkInterfaces/nichpftestrgname9999\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\"\r\n },\r\n \"id\": \"/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/HPFTESTRGNAME9999/providers/Microsoft.Compute/virtualMachines/vmhpftestrgname9999\",\r\n \"name\": \"vmhpftestrgname9999\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201502\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg5998.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pstestrg5998/providers/Microsoft.Network/networkInterfaces/nicpstestrg5998\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/PSTESTRG5998/providers/Microsoft.Compute/virtualMachines/vmpstestrg5998\",\r\n \"name\": \"vmpstestrg5998\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "12" + "3085" ], "Content-Type": [ "application/json; charset=utf-8" @@ -24,26 +24,30 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31999" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7fccdb8b-bdfa-4578-930a-d4248b1bf4ba" + "541db794-174c-4034-8c9a-6a9ea5a051f8" ], - "x-ms-correlation-request-id": [ - "7fccdb8b-bdfa-4578-930a-d4248b1bf4ba" + "Cache-Control": [ + "no-cache" ], - "x-ms-routing-request-id": [ - "WESTUS:20150418T013602Z:7fccdb8b-bdfa-4578-930a-d4248b1bf4ba" + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-ratelimit-remaining-subscription-reads": [ + "31987" ], - "Cache-Control": [ - "no-cache" + "x-ms-correlation-request-id": [ + "f3e1afd3-cd9b-471a-98e5-ff892a549dc7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150426T232355Z:f3e1afd3-cd9b-471a-98e5-ff892a549dc7" ], "Date": [ - "Sat, 18 Apr 2015 01:36:01 GMT" + "Sun, 26 Apr 2015 23:23:55 GMT" ] }, "StatusCode": 200 @@ -55,13 +59,13 @@ "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201502\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stohpftestrgname9999.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/hpftestrgname9999/providers/Microsoft.Network/networkInterfaces/nichpftestrgname9999\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\"\r\n },\r\n \"id\": \"/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/HPFTESTRGNAME9999/providers/Microsoft.Compute/virtualMachines/vmhpftestrgname9999\",\r\n \"name\": \"vmhpftestrgname9999\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201502\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg5998.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pstestrg5998/providers/Microsoft.Network/networkInterfaces/nicpstestrg5998\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/PSTESTRG5998/providers/Microsoft.Compute/virtualMachines/vmpstestrg5998\",\r\n \"name\": \"vmpstestrg5998\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "12" + "3085" ], "Content-Type": [ "application/json; charset=utf-8" @@ -72,26 +76,30 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31998" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4acb4a5c-6f97-4b33-bb4d-6902992f3348" + "f88b6473-8c69-477f-bf0b-10b9a3ae84b8" ], - "x-ms-correlation-request-id": [ - "4acb4a5c-6f97-4b33-bb4d-6902992f3348" + "Cache-Control": [ + "no-cache" ], - "x-ms-routing-request-id": [ - "WESTUS:20150418T013602Z:4acb4a5c-6f97-4b33-bb4d-6902992f3348" + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-ratelimit-remaining-subscription-reads": [ + "31986" ], - "Cache-Control": [ - "no-cache" + "x-ms-correlation-request-id": [ + "717508ff-fd71-492a-bb1a-38c22e3b9e65" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150426T232355Z:717508ff-fd71-492a-bb1a-38c22e3b9e65" ], "Date": [ - "Sat, 18 Apr 2015 01:36:01 GMT" + "Sun, 26 Apr 2015 23:23:55 GMT" ] }, "StatusCode": 200 @@ -103,10 +111,10 @@ "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "<html>\r\n <body onload=\"challenge();\">\r\n <script>eval(function(p,a,c,k,e,r){e=function(c){return c.toString(a)};if(!''.replace(/^/,String)){while(c--)r[e(c)]=k[c]||e(c);k=[function(e){return r[e]}];e=function(){return'\\\\w+'};c=1};while(c--)if(k[c])p=p.replace(new RegExp('\\\\b'+e(c)+'\\\\b','g'),k[c]);return p}('g l(){a.j=\\'7=n; h-5=e; i=/\\';c.k.1()};o 6(){3.m=\\'f=0; d-9=8; p=/\\';b.4.2()}',26,26,'1ddae90d1314569990e496307402856b6b3f02b6|reload|reload|document|location|age|challenge|SENGINX-ROBOT-MITIGATION |600 |age|document|window|window|max|600 |SENGINX-ROBOT-MITIGATION |function|max|path|cookie|location|challenge_f|cookie|418b499229a73d216cac9b2277427f69eeb7fa7d|function|path'.split('|'),0,{}))</script>\r\n </body>\r\n</html>", + "ResponseBody": "<html>\r\n <body onload=\"challenge();\">\r\n <script>eval(function(p,a,c,k,e,r){e=function(c){return c.toString(a)};if(!''.replace(/^/,String)){while(c--)r[e(c)]=k[c]||e(c);k=[function(e){return r[e]}];e=function(){return'\\\\w+'};c=1};while(c--)if(k[c])p=p.replace(new RegExp('\\\\b'+e(c)+'\\\\b','g'),k[c]);return p}('f j(){k.1=\\'c=b; m-p=a; n=/\\';9.7.i()};0 8(){6.2=\\'4=5; h-e=d; 3=/\\';g.l.o()}',26,26,'function|cookie|cookie|path|SENGINX-ROBOT-MITIGATION |54374c150f67dd56f6e4ef82ad6351702d0c83f9|document|location|challenge|window|600 |dab3f116dc17f9325fde8592bf72432301807c41|SENGINX-ROBOT-MITIGATION |600 |age|function|window|max|reload|challenge_f|document|location|max|path|reload|age'.split('|'),0,{}))</script>\r\n </body>\r\n</html>", "ResponseHeaders": { "Content-Length": [ "732" @@ -121,7 +129,7 @@ "no-store, no-cache" ], "Date": [ - "Sat, 18 Apr 2015 01:40:53 GMT" + "Sun, 26 Apr 2015 23:29:06 GMT" ], "Server": [ "BlockDos.net" @@ -136,4 +144,4 @@ "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", "Domain": "microsoft.com" } -} +} \ No newline at end of file diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestVirtualMachinePIRv2.json b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestVirtualMachinePIRv2.json new file mode 100644 index 000000000000..952ce5477337 --- /dev/null +++ b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestVirtualMachinePIRv2.json @@ -0,0 +1,4891 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg1436?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnMTQzNj9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "104" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31979" + ], + "x-ms-request-id": [ + "de546d18-e036-404b-acc4-55b0d8af2969" + ], + "x-ms-correlation-request-id": [ + "de546d18-e036-404b-acc4-55b0d8af2969" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T022457Z:de546d18-e036-404b-acc4-55b0d8af2969" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 02:24:57 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg1436?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnMTQzNj9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31997" + ], + "x-ms-request-id": [ + "7c2f7486-91e6-4fb4-b2c1-76010ac819bb" + ], + "x-ms-correlation-request-id": [ + "7c2f7486-91e6-4fb4-b2c1-76010ac819bb" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T023758Z:7c2f7486-91e6-4fb4-b2c1-76010ac819bb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 02:37:57 GMT" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg1436?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnMTQzNj9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastasia\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "30" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1436\",\r\n \"name\": \"pstestrg1436\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "179" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-request-id": [ + "db955f8e-6b19-448b-8ce2-a79567d92a0b" + ], + "x-ms-correlation-request-id": [ + "db955f8e-6b19-448b-8ce2-a79567d92a0b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T022459Z:db955f8e-6b19-448b-8ce2-a79567d92a0b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 02:24:58 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1436/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTQzNi9yZXNvdXJjZXM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31978" + ], + "x-ms-request-id": [ + "fa3adaef-c967-47fe-a8e6-17e0f62a6e39" + ], + "x-ms-correlation-request-id": [ + "fa3adaef-c967-47fe-a8e6-17e0f62a6e39" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T022459Z:fa3adaef-c967-47fe-a8e6-17e0f62a6e39" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 02:24:59 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg1436/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnMTQzNi9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcGVybWlzc2lvbnM/YXBpLXZlcnNpb249MjAxNC0wNy0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "45" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:9dd950d3-76eb-4a12-9bb8-529b9e163edb" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31998" + ], + "x-ms-correlation-request-id": [ + "5bd9d213-92a2-4600-919a-fe7c43b3ab4c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T022459Z:5bd9d213-92a2-4600-919a-fe7c43b3ab4c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 02:24:59 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1436/providers/Microsoft.Network/virtualnetworks/vnetpstestrg1436?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTQzNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzE0MzY/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "69" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "85f1f729-614f-47f1-8191-dcaad42b6a58" + ], + "x-ms-correlation-request-id": [ + "85f1f729-614f-47f1-8191-dcaad42b6a58" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T022501Z:85f1f729-614f-47f1-8191-dcaad42b6a58" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 02:25:00 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1436/providers/Microsoft.Network/virtualnetworks/vnetpstestrg1436?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTQzNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzE0MzY/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vnetpstestrg1436\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1436/providers/Microsoft.Network/virtualNetworks/vnetpstestrg1436\",\r\n \"etag\": \"W/\\\"a75cf7aa-8626-47f8-9fb9-a0ebe75c7135\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\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 \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg1436\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1436/providers/Microsoft.Network/virtualNetworks/vnetpstestrg1436/subnets/subnetpstestrg1436\",\r\n \"etag\": \"W/\\\"a75cf7aa-8626-47f8-9fb9-a0ebe75c7135\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"eastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "962" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "44aa8659-14a4-4600-b126-8089dec753d6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"a75cf7aa-8626-47f8-9fb9-a0ebe75c7135\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31997" + ], + "x-ms-correlation-request-id": [ + "d799489a-1d1a-42c9-aa36-5b84e1647502" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T022507Z:d799489a-1d1a-42c9-aa36-5b84e1647502" + ], + "Date": [ + "Wed, 22 Apr 2015 02:25:06 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1436/providers/Microsoft.Network/virtualnetworks/vnetpstestrg1436?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTQzNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzE0MzY/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vnetpstestrg1436\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1436/providers/Microsoft.Network/virtualNetworks/vnetpstestrg1436\",\r\n \"etag\": \"W/\\\"a75cf7aa-8626-47f8-9fb9-a0ebe75c7135\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\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 \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg1436\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1436/providers/Microsoft.Network/virtualNetworks/vnetpstestrg1436/subnets/subnetpstestrg1436\",\r\n \"etag\": \"W/\\\"a75cf7aa-8626-47f8-9fb9-a0ebe75c7135\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"eastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "962" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "984f24ff-90dd-4c4f-85fb-9acca491e5d9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"a75cf7aa-8626-47f8-9fb9-a0ebe75c7135\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31996" + ], + "x-ms-correlation-request-id": [ + "bd2d396c-7f0e-47a0-8621-b3bb08f3f885" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T022507Z:bd2d396c-7f0e-47a0-8621-b3bb08f3f885" + ], + "Date": [ + "Wed, 22 Apr 2015 02:25:06 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1436/providers/Microsoft.Network/virtualnetworks/vnetpstestrg1436?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTQzNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzE0MzY/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "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 \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": []\r\n },\r\n \"name\": \"subnetpstestrg1436\"\r\n }\r\n ]\r\n },\r\n \"name\": \"vnetpstestrg1436\",\r\n \"type\": \"microsoft.network/virtualNetworks\",\r\n \"location\": \"eastasia\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "502" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vnetpstestrg1436\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1436/providers/Microsoft.Network/virtualNetworks/vnetpstestrg1436\",\r\n \"etag\": \"W/\\\"eca66524-89a9-4e11-bf3f-a1a04245dff9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\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 \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg1436\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1436/providers/Microsoft.Network/virtualNetworks/vnetpstestrg1436/subnets/subnetpstestrg1436\",\r\n \"etag\": \"W/\\\"eca66524-89a9-4e11-bf3f-a1a04245dff9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"eastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "960" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "9af87d57-133f-433c-b160-e2111b78669d" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/eastasia/operations/9af87d57-133f-433c-b160-e2111b78669d?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "c2f6b7ec-35b7-491e-a38f-1a08ea6895b3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T022506Z:c2f6b7ec-35b7-491e-a38f-1a08ea6895b3" + ], + "Date": [ + "Wed, 22 Apr 2015 02:25:05 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/eastasia/operations/9af87d57-133f-433c-b160-e2111b78669d?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy85YWY4N2Q1Ny0xMzNmLTQzM2MtYjE2MC1lMjExMWI3ODY2OWQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-05-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b4f37665-be27-4884-a96f-05923a57390d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31998" + ], + "x-ms-correlation-request-id": [ + "31515485-60ec-42d9-b37f-4bea8b7dae7d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T022507Z:31515485-60ec-42d9-b37f-4bea8b7dae7d" + ], + "Date": [ + "Wed, 22 Apr 2015 02:25:06 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1436/providers/Microsoft.Network/publicIPAddresses/pubippstestrg1436/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTQzNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHViaXBwc3Rlc3RyZzE0MzYvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "69" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "b4858501-bcbc-4b69-b458-561f2998a215" + ], + "x-ms-correlation-request-id": [ + "b4858501-bcbc-4b69-b458-561f2998a215" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T022507Z:b4858501-bcbc-4b69-b458-561f2998a215" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 02:25:06 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1436/providers/Microsoft.Network/publicIPAddresses/pubippstestrg1436/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTQzNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHViaXBwc3Rlc3RyZzE0MzYvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pubippstestrg1436\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1436/providers/Microsoft.Network/publicIPAddresses/pubippstestrg1436\",\r\n \"etag\": \"W/\\\"b5cec26b-9182-41da-8236-5baf2961eb0e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubippstestrg1436\",\r\n \"fqdn\": \"pubippstestrg1436.eastasia.cloudapp.azure.com.\"\r\n }\r\n },\r\n \"location\": \"eastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "555" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "4640b5c3-5acd-49bc-b4f8-7b42d830ad9b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"b5cec26b-9182-41da-8236-5baf2961eb0e\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31993" + ], + "x-ms-correlation-request-id": [ + "3e48d323-3f8b-4c64-afe7-04d2b4d1599b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T022514Z:3e48d323-3f8b-4c64-afe7-04d2b4d1599b" + ], + "Date": [ + "Wed, 22 Apr 2015 02:25:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1436/providers/Microsoft.Network/publicIPAddresses/pubippstestrg1436/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTQzNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHViaXBwc3Rlc3RyZzE0MzYvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pubippstestrg1436\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1436/providers/Microsoft.Network/publicIPAddresses/pubippstestrg1436\",\r\n \"etag\": \"W/\\\"b5cec26b-9182-41da-8236-5baf2961eb0e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubippstestrg1436\",\r\n \"fqdn\": \"pubippstestrg1436.eastasia.cloudapp.azure.com.\"\r\n }\r\n },\r\n \"location\": \"eastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "555" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d448bee6-163a-493a-b8bc-151a487ca427" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"b5cec26b-9182-41da-8236-5baf2961eb0e\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31992" + ], + "x-ms-correlation-request-id": [ + "3054a9a7-f081-410a-ab26-a85704f09651" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T022514Z:3054a9a7-f081-410a-ab26-a85704f09651" + ], + "Date": [ + "Wed, 22 Apr 2015 02:25:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1436/providers/Microsoft.Network/publicIPAddresses/pubippstestrg1436/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTQzNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHViaXBwc3Rlc3RyZzE0MzYvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubippstestrg1436\"\r\n }\r\n },\r\n \"name\": \"pubippstestrg1436\",\r\n \"type\": \"microsoft.network/publicIPAddresses\",\r\n \"location\": \"eastasia\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "256" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pubippstestrg1436\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1436/providers/Microsoft.Network/publicIPAddresses/pubippstestrg1436\",\r\n \"etag\": \"W/\\\"c21a7f50-cd3c-4928-aa9a-684d6aa86005\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubippstestrg1436\",\r\n \"fqdn\": \"pubippstestrg1436.eastasia.cloudapp.azure.com.\"\r\n }\r\n },\r\n \"location\": \"eastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "554" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "a74916d2-69a3-46b7-a9e4-6301bacda57f" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/eastasia/operations/a74916d2-69a3-46b7-a9e4-6301bacda57f?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "d9197ec6-87ba-4944-a122-7f5d48137e14" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T022513Z:d9197ec6-87ba-4944-a122-7f5d48137e14" + ], + "Date": [ + "Wed, 22 Apr 2015 02:25:12 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/eastasia/operations/a74916d2-69a3-46b7-a9e4-6301bacda57f?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9hNzQ5MTZkMi02OWEzLTQ2YjctYTllNC02MzAxYmFjZGE1N2Y/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-05-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "90563253-46ef-4f84-9f25-e2ec22e91f9b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31994" + ], + "x-ms-correlation-request-id": [ + "54a8e8c0-63ba-49d7-8f81-4f471473578d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T022513Z:54a8e8c0-63ba-49d7-8f81-4f471473578d" + ], + "Date": [ + "Wed, 22 Apr 2015 02:25:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1436/providers/Microsoft.Network/networkInterfaces/nicpstestrg1436?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTQzNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljcHN0ZXN0cmcxNDM2P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "69" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "8d3f8c15-d705-44de-9411-d0c4b9252113" + ], + "x-ms-correlation-request-id": [ + "8d3f8c15-d705-44de-9411-d0c4b9252113" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T022514Z:8d3f8c15-d705-44de-9411-d0c4b9252113" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 02:25:13 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1436/providers/Microsoft.Network/networkInterfaces/nicpstestrg1436?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTQzNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljcHN0ZXN0cmcxNDM2P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"nicpstestrg1436\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1436/providers/Microsoft.Network/networkInterfaces/nicpstestrg1436\",\r\n \"etag\": \"W/\\\"2af08914-19d9-43a1-90c9-07ea838fc98c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1436/providers/Microsoft.Network/networkInterfaces/nicpstestrg1436/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"2af08914-19d9-43a1-90c9-07ea838fc98c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1436/providers/Microsoft.Network/publicIPAddresses/pubippstestrg1436\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1436/providers/Microsoft.Network/virtualNetworks/vnetpstestrg1436/subnets/subnetpstestrg1436\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"eastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1302" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "3182ca0c-c28a-4c99-b8d8-69ef337f2e27" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"2af08914-19d9-43a1-90c9-07ea838fc98c\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31989" + ], + "x-ms-correlation-request-id": [ + "6d49c5ef-7bfc-47ac-85c0-5ca99453fcda" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T022519Z:6d49c5ef-7bfc-47ac-85c0-5ca99453fcda" + ], + "Date": [ + "Wed, 22 Apr 2015 02:25:18 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1436/providers/Microsoft.Network/networkInterfaces/nicpstestrg1436?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTQzNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljcHN0ZXN0cmcxNDM2P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"nicpstestrg1436\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1436/providers/Microsoft.Network/networkInterfaces/nicpstestrg1436\",\r\n \"etag\": \"W/\\\"2af08914-19d9-43a1-90c9-07ea838fc98c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1436/providers/Microsoft.Network/networkInterfaces/nicpstestrg1436/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"2af08914-19d9-43a1-90c9-07ea838fc98c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1436/providers/Microsoft.Network/publicIPAddresses/pubippstestrg1436\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1436/providers/Microsoft.Network/virtualNetworks/vnetpstestrg1436/subnets/subnetpstestrg1436\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"eastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1302" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "61ba08fc-3f5f-42f4-b70c-bb0d135d8d46" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"2af08914-19d9-43a1-90c9-07ea838fc98c\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31988" + ], + "x-ms-correlation-request-id": [ + "bedf4345-0518-4d48-9018-186c37b56157" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T022519Z:bedf4345-0518-4d48-9018-186c37b56157" + ], + "Date": [ + "Wed, 22 Apr 2015 02:25:19 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1436/providers/Microsoft.Network/networkInterfaces/nicpstestrg1436?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTQzNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljcHN0ZXN0cmcxNDM2P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1436/providers/Microsoft.Network/virtualNetworks/vnetpstestrg1436/subnets/subnetpstestrg1436\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1436/providers/Microsoft.Network/publicIPAddresses/pubippstestrg1436\"\r\n },\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": []\r\n },\r\n \"name\": \"ipconfig1\"\r\n }\r\n ],\r\n \"primary\": false\r\n },\r\n \"name\": \"nicpstestrg1436\",\r\n \"type\": \"microsoft.network/networkInterfaces\",\r\n \"location\": \"eastasia\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "859" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"nicpstestrg1436\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1436/providers/Microsoft.Network/networkInterfaces/nicpstestrg1436\",\r\n \"etag\": \"W/\\\"2af08914-19d9-43a1-90c9-07ea838fc98c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1436/providers/Microsoft.Network/networkInterfaces/nicpstestrg1436/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"2af08914-19d9-43a1-90c9-07ea838fc98c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1436/providers/Microsoft.Network/publicIPAddresses/pubippstestrg1436\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1436/providers/Microsoft.Network/virtualNetworks/vnetpstestrg1436/subnets/subnetpstestrg1436\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"eastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1302" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "c8b8c3ee-207e-4e7f-9795-5044ac25bfbd" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/eastasia/operations/c8b8c3ee-207e-4e7f-9795-5044ac25bfbd?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "754157da-ec51-4998-b0fa-e256b8891dd1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T022518Z:754157da-ec51-4998-b0fa-e256b8891dd1" + ], + "Date": [ + "Wed, 22 Apr 2015 02:25:18 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/eastasia/operations/c8b8c3ee-207e-4e7f-9795-5044ac25bfbd?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9jOGI4YzNlZS0yMDdlLTRlN2YtOTc5NS01MDQ0YWMyNWJmYmQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-05-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "8cd053e1-b043-4eb0-8abb-d7f9bdb0de9e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31990" + ], + "x-ms-correlation-request-id": [ + "c22fd447-70dc-47c8-98c9-32dfa2ed2465" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T022519Z:c22fd447-70dc-47c8-98c9-32dfa2ed2465" + ], + "Date": [ + "Wed, 22 Apr 2015 02:25:18 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1436/providers/Microsoft.Storage/storageAccounts/stopstestrg1436?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTQzNi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMTQzNj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "90" + ], + "x-ms-client-request-id": [ + "60ccdc62-5f44-4ff1-8a7c-998f4d0eacb8" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "25" + ], + "x-ms-request-id": [ + "e061ce7d-453b-42e8-9fde-0fd868708887" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/e061ce7d-453b-42e8-9fde-0fd868708887?monitor=true&api-version=2015-05-01-preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "5b1eeeb0-a718-4a2b-b0da-947d435f632e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T022528Z:5b1eeeb0-a718-4a2b-b0da-947d435f632e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Wed, 22 Apr 2015 02:25:27 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/e061ce7d-453b-42e8-9fde-0fd868708887?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2UwNjFjZTdkLTQ1M2ItNDJlOC05ZmRlLTBmZDg2ODcwODg4Nz9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "09823777-8dec-45c1-9c6e-a21b2b0c3c72" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "25" + ], + "x-ms-request-id": [ + "1e4888e2-fbc6-4a8e-81d5-05f264daf7e0" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/e061ce7d-453b-42e8-9fde-0fd868708887?monitor=true&api-version=2015-05-01-preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31999" + ], + "x-ms-correlation-request-id": [ + "44b852e8-2e06-435e-9c42-016fbbc4f109" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T022528Z:44b852e8-2e06-435e-9c42-016fbbc4f109" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Wed, 22 Apr 2015 02:25:28 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/e061ce7d-453b-42e8-9fde-0fd868708887?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2UwNjFjZTdkLTQ1M2ItNDJlOC05ZmRlLTBmZDg2ODcwODg4Nz9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f657e629-f7e1-489b-ba31-bc4578336c65" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n },\r\n \"location\": \"East Asia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "68" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "3facb141-08eb-4aba-b828-e9fb29727e67" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31998" + ], + "x-ms-correlation-request-id": [ + "2dcde30d-a9d8-428c-ac1c-81ac7d84fa46" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T022553Z:2dcde30d-a9d8-428c-ac1c-81ac7d84fa46" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Wed, 22 Apr 2015 02:25:52 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1436/providers/Microsoft.Storage/storageAccounts/stopstestrg1436?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTQzNi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMTQzNj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "42d0c658-819a-444d-a149-affbb4fb1862" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1436/providers/Microsoft.Storage/storageAccounts/stopstestrg1436\",\r\n \"name\": \"stopstestrg1436\",\r\n \"location\": \"East Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stopstestrg1436.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg1436.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg1436.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"East Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"Southeast Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-04-22T02:25:25.4389967Z\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "683" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "412c80a8-a5a7-462b-8e3b-7f20a8ca09e5" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31997" + ], + "x-ms-correlation-request-id": [ + "f17cb1de-015d-4524-a9d7-1dd52b070fed" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T022554Z:f17cb1de-015d-4524-a9d7-1dd52b070fed" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Wed, 22 Apr 2015 02:25:54 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1436/providers/Microsoft.Storage/storageAccounts/stopstestrg1436?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTQzNi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMTQzNj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f2f71e8d-f01f-4d6a-acc3-bb0a9bb5b4f6" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1436/providers/Microsoft.Storage/storageAccounts/stopstestrg1436\",\r\n \"name\": \"stopstestrg1436\",\r\n \"location\": \"East Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stopstestrg1436.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg1436.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg1436.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"East Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"Southeast Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-04-22T02:25:25.4389967Z\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "683" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "83850748-8583-42b7-a96f-b162af35ea8c" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31996" + ], + "x-ms-correlation-request-id": [ + "499eb92f-72fe-4093-97f8-c36ebb44ecd4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T022554Z:499eb92f-72fe-4093-97f8-c36ebb44ecd4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Wed, 22 Apr 2015 02:25:54 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/publishers?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"CloudLink.SecureVM\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/CloudLink.SecureVM\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"marketplace-test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/marketplace-test\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"metavistech\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/metavistech\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.WindowsAzure.GuestAgent\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.WindowsAzure.GuestAgent\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftWindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServerEssentials\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MSOpenTech.Extensions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MSOpenTech.Extensions\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"seagate\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/seagate\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"sharefile\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/sharefile\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/wowza\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "10143" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b4ddcab4-3d63-4c5f-897d-7d607567a182" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31995" + ], + "x-ms-correlation-request-id": [ + "7ff39d0d-d7ca-4c1e-ba75-7715c4e60bdf" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T022555Z:7ff39d0d-d7ca-4c1e-ba75-7715c4e60bdf" + ], + "Date": [ + "Wed, 22 Apr 2015 02:25:55 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"$type\": \"Microsoft.WindowsAzure.PlatformImageRepository.ArtifactService.API.Consumption.VMImageOffer, PIR.ArtifactService\",\r\n \"location\": \"eastasia\",\r\n \"name\": \"WindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "392" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "552259fc-7898-45e2-b395-41d1d4bd9d89" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31994" + ], + "x-ms-correlation-request-id": [ + "a9697769-63b4-4605-8383-d8948dc073a0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T022556Z:a9697769-63b4-4605-8383-d8948dc073a0" + ], + "Date": [ + "Wed, 22 Apr 2015 02:25:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvV2luZG93c1NlcnZlci9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"$type\": \"Microsoft.WindowsAzure.PlatformImageRepository.ArtifactService.API.Consumption.VMImageSku, PIR.ArtifactService\",\r\n \"location\": \"eastasia\",\r\n \"name\": \"2008-R2-SP1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1\"\r\n },\r\n {\r\n \"$type\": \"Microsoft.WindowsAzure.PlatformImageRepository.ArtifactService.API.Consumption.VMImageSku, PIR.ArtifactService\",\r\n \"location\": \"eastasia\",\r\n \"name\": \"2012-Datacenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter\"\r\n },\r\n {\r\n \"$type\": \"Microsoft.WindowsAzure.PlatformImageRepository.ArtifactService.API.Consumption.VMImageSku, PIR.ArtifactService\",\r\n \"location\": \"eastasia\",\r\n \"name\": \"2012-R2-Datacenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "1231" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "1e6e7410-9512-4f2a-9459-dfe43410b16a" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31993" + ], + "x-ms-correlation-request-id": [ + "37c1afb4-f603-4fea-9598-a15e607ed8a8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T022557Z:37c1afb4-f603-4fea-9598-a15e607ed8a8" + ], + "Date": [ + "Wed, 22 Apr 2015 02:25:57 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvV2luZG93c1NlcnZlci9za3VzLzIwMDgtUjItU1AxL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"2.0.201503\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/MicrosoftWindowsServer/Publishers/WindowsServer/ArtifactTypes/VMImage/Offers/2008-R2-SP1/Skus/2.0.201503/Versions/eastasia\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "296" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "e53d1a48-6378-4730-b922-00efe8e03268" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31992" + ], + "x-ms-correlation-request-id": [ + "799732b0-fa6c-49e2-952d-c3b83feea9b8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T022558Z:799732b0-fa6c-49e2-952d-c3b83feea9b8" + ], + "Date": [ + "Wed, 22 Apr 2015 02:25:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions/2.0.201503?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvV2luZG93c1NlcnZlci9za3VzLzIwMDgtUjItU1AxL3ZlcnNpb25zLzIuMC4yMDE1MDM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastasia\",\r\n \"name\": \"2.0.201503\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201503\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "397" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "7b9020ae-ce4f-42c9-b0e2-574f34d41859" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31991" + ], + "x-ms-correlation-request-id": [ + "b4da6a3f-4ec5-4e81-ae16-b761e7a6139a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T022559Z:b4da6a3f-4ec5-4e81-ae16-b761e7a6139a" + ], + "Date": [ + "Wed, 22 Apr 2015 02:25:59 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1436/providers/Microsoft.Compute/virtualMachines/vmpstestrg1436?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTQzNi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtcHN0ZXN0cmcxNDM2P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201503\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"osDisk\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg1436.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"createOption\": \"FromImage\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123pstestrg1436\"\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1436/providers/Microsoft.Network/networkInterfaces/nicpstestrg1436\"\r\n }\r\n ]\r\n }\r\n },\r\n \"name\": \"vmpstestrg1436\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "1035" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201503\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg1436.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1436/providers/Microsoft.Network/networkInterfaces/nicpstestrg1436\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg1436/providers/Microsoft.Compute/virtualMachines/vmpstestrg1436\",\r\n \"name\": \"vmpstestrg1436\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {}\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1350" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/4fe18d2c-1656-49a1-ba02-8712e6889600?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "4fe18d2c-1656-49a1-ba02-8712e6889600" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "3baee03e-761c-4132-b689-f7b9b33b94d0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T022604Z:3baee03e-761c-4132-b689-f7b9b33b94d0" + ], + "Date": [ + "Wed, 22 Apr 2015 02:26:03 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/4fe18d2c-1656-49a1-ba02-8712e6889600?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy80ZmUxOGQyYy0xNjU2LTQ5YTEtYmEwMi04NzEyZTY4ODk2MDA/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4fe18d2c-1656-49a1-ba02-8712e6889600\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-21T19:26:02.9267933-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "1a766e76-014b-4ee6-96b5-c1815669dfd8" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31990" + ], + "x-ms-correlation-request-id": [ + "684b4f50-3803-4556-9f34-5b899e8bdf80" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T022605Z:684b4f50-3803-4556-9f34-5b899e8bdf80" + ], + "Date": [ + "Wed, 22 Apr 2015 02:26:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/4fe18d2c-1656-49a1-ba02-8712e6889600?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy80ZmUxOGQyYy0xNjU2LTQ5YTEtYmEwMi04NzEyZTY4ODk2MDA/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4fe18d2c-1656-49a1-ba02-8712e6889600\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-21T19:26:02.9267933-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "fe58f772-49d7-4ba0-b9be-02464a5f77cf" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31989" + ], + "x-ms-correlation-request-id": [ + "b466cbae-6b9c-47fa-bba8-a5c1cf4a98c9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T022636Z:b466cbae-6b9c-47fa-bba8-a5c1cf4a98c9" + ], + "Date": [ + "Wed, 22 Apr 2015 02:26:35 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/4fe18d2c-1656-49a1-ba02-8712e6889600?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy80ZmUxOGQyYy0xNjU2LTQ5YTEtYmEwMi04NzEyZTY4ODk2MDA/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4fe18d2c-1656-49a1-ba02-8712e6889600\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-21T19:26:02.9267933-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "100a4404-9550-4650-8bff-e5f1a96c28d6" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31988" + ], + "x-ms-correlation-request-id": [ + "b964bb75-712b-42a9-87b1-5e4647574d8e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T022707Z:b964bb75-712b-42a9-87b1-5e4647574d8e" + ], + "Date": [ + "Wed, 22 Apr 2015 02:27:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/4fe18d2c-1656-49a1-ba02-8712e6889600?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy80ZmUxOGQyYy0xNjU2LTQ5YTEtYmEwMi04NzEyZTY4ODk2MDA/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4fe18d2c-1656-49a1-ba02-8712e6889600\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-21T19:26:02.9267933-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "9db6a966-4086-4829-b4b6-301b0848050a" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31987" + ], + "x-ms-correlation-request-id": [ + "d30fd312-a004-4c66-a357-64b54f8f1aad" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T022738Z:d30fd312-a004-4c66-a357-64b54f8f1aad" + ], + "Date": [ + "Wed, 22 Apr 2015 02:27:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/4fe18d2c-1656-49a1-ba02-8712e6889600?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy80ZmUxOGQyYy0xNjU2LTQ5YTEtYmEwMi04NzEyZTY4ODk2MDA/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4fe18d2c-1656-49a1-ba02-8712e6889600\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-21T19:26:02.9267933-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "cd19d013-b364-4c5d-be54-91cbc6faa17a" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31986" + ], + "x-ms-correlation-request-id": [ + "9092e794-7c5f-498e-ae7c-b0e164312c83" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T022809Z:9092e794-7c5f-498e-ae7c-b0e164312c83" + ], + "Date": [ + "Wed, 22 Apr 2015 02:28:09 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/4fe18d2c-1656-49a1-ba02-8712e6889600?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy80ZmUxOGQyYy0xNjU2LTQ5YTEtYmEwMi04NzEyZTY4ODk2MDA/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4fe18d2c-1656-49a1-ba02-8712e6889600\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-21T19:26:02.9267933-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "5c3f3f69-15b5-49f2-ba60-6c52471b0bb1" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31985" + ], + "x-ms-correlation-request-id": [ + "44996c77-47cf-47aa-b80f-979314e7d62f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T022840Z:44996c77-47cf-47aa-b80f-979314e7d62f" + ], + "Date": [ + "Wed, 22 Apr 2015 02:28:39 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/4fe18d2c-1656-49a1-ba02-8712e6889600?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy80ZmUxOGQyYy0xNjU2LTQ5YTEtYmEwMi04NzEyZTY4ODk2MDA/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4fe18d2c-1656-49a1-ba02-8712e6889600\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-21T19:26:02.9267933-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "839ab2ad-4785-4aec-9cfe-8c84515faa1a" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31984" + ], + "x-ms-correlation-request-id": [ + "eff16092-3f83-4960-8403-c9e09b7e738a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T022911Z:eff16092-3f83-4960-8403-c9e09b7e738a" + ], + "Date": [ + "Wed, 22 Apr 2015 02:29:10 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/4fe18d2c-1656-49a1-ba02-8712e6889600?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy80ZmUxOGQyYy0xNjU2LTQ5YTEtYmEwMi04NzEyZTY4ODk2MDA/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4fe18d2c-1656-49a1-ba02-8712e6889600\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-21T19:26:02.9267933-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "934d3968-3c90-4a28-85e7-2af20023560a" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31983" + ], + "x-ms-correlation-request-id": [ + "9046bcef-0b0f-4ba0-b277-175649148f27" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T022942Z:9046bcef-0b0f-4ba0-b277-175649148f27" + ], + "Date": [ + "Wed, 22 Apr 2015 02:29:42 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/4fe18d2c-1656-49a1-ba02-8712e6889600?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy80ZmUxOGQyYy0xNjU2LTQ5YTEtYmEwMi04NzEyZTY4ODk2MDA/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4fe18d2c-1656-49a1-ba02-8712e6889600\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-21T19:26:02.9267933-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "78f31006-0459-4dee-a735-eef3c5eca38c" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31982" + ], + "x-ms-correlation-request-id": [ + "021c79f4-aede-4526-8d8a-1cc2e834fd45" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T023013Z:021c79f4-aede-4526-8d8a-1cc2e834fd45" + ], + "Date": [ + "Wed, 22 Apr 2015 02:30:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/4fe18d2c-1656-49a1-ba02-8712e6889600?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy80ZmUxOGQyYy0xNjU2LTQ5YTEtYmEwMi04NzEyZTY4ODk2MDA/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4fe18d2c-1656-49a1-ba02-8712e6889600\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-21T19:26:02.9267933-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c7d73427-fc83-418e-97f0-40ef62073a2e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31981" + ], + "x-ms-correlation-request-id": [ + "9a43448f-f3c7-4448-bb22-c085a67b1336" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T023044Z:9a43448f-f3c7-4448-bb22-c085a67b1336" + ], + "Date": [ + "Wed, 22 Apr 2015 02:30:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/4fe18d2c-1656-49a1-ba02-8712e6889600?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy80ZmUxOGQyYy0xNjU2LTQ5YTEtYmEwMi04NzEyZTY4ODk2MDA/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4fe18d2c-1656-49a1-ba02-8712e6889600\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-21T19:26:02.9267933-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "203bd44b-1a6d-4093-8d88-487301ca1c59" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31980" + ], + "x-ms-correlation-request-id": [ + "2b0c9ecc-7b50-436e-954d-53125c1a784f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T023115Z:2b0c9ecc-7b50-436e-954d-53125c1a784f" + ], + "Date": [ + "Wed, 22 Apr 2015 02:31:14 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/4fe18d2c-1656-49a1-ba02-8712e6889600?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy80ZmUxOGQyYy0xNjU2LTQ5YTEtYmEwMi04NzEyZTY4ODk2MDA/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4fe18d2c-1656-49a1-ba02-8712e6889600\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-21T19:26:02.9267933-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "21c38206-c0a4-4f2d-9d11-20e2b552a41e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31979" + ], + "x-ms-correlation-request-id": [ + "11ab7661-fae9-46b5-97ad-e6c7e136decf" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T023146Z:11ab7661-fae9-46b5-97ad-e6c7e136decf" + ], + "Date": [ + "Wed, 22 Apr 2015 02:31:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/4fe18d2c-1656-49a1-ba02-8712e6889600?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy80ZmUxOGQyYy0xNjU2LTQ5YTEtYmEwMi04NzEyZTY4ODk2MDA/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4fe18d2c-1656-49a1-ba02-8712e6889600\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-21T19:26:02.9267933-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f9cf4599-4b48-4930-94c3-95ecb380f586" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31978" + ], + "x-ms-correlation-request-id": [ + "72523272-4658-43ed-b98c-d235102d96f1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T023217Z:72523272-4658-43ed-b98c-d235102d96f1" + ], + "Date": [ + "Wed, 22 Apr 2015 02:32:17 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/4fe18d2c-1656-49a1-ba02-8712e6889600?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy80ZmUxOGQyYy0xNjU2LTQ5YTEtYmEwMi04NzEyZTY4ODk2MDA/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4fe18d2c-1656-49a1-ba02-8712e6889600\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-21T19:26:02.9267933-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d36d3be6-2eaf-4c83-bd96-c474dc0e57e8" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31977" + ], + "x-ms-correlation-request-id": [ + "813079b8-aed2-4f08-bcd0-9e4d53184f43" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T023248Z:813079b8-aed2-4f08-bcd0-9e4d53184f43" + ], + "Date": [ + "Wed, 22 Apr 2015 02:32:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/4fe18d2c-1656-49a1-ba02-8712e6889600?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy80ZmUxOGQyYy0xNjU2LTQ5YTEtYmEwMi04NzEyZTY4ODk2MDA/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4fe18d2c-1656-49a1-ba02-8712e6889600\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-21T19:26:02.9267933-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "e7be586d-a2a1-4b49-acb9-71b83a55503b" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31976" + ], + "x-ms-correlation-request-id": [ + "0baf7755-bd4e-4354-99b1-c77f5ed82d58" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T023319Z:0baf7755-bd4e-4354-99b1-c77f5ed82d58" + ], + "Date": [ + "Wed, 22 Apr 2015 02:33:18 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/4fe18d2c-1656-49a1-ba02-8712e6889600?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy80ZmUxOGQyYy0xNjU2LTQ5YTEtYmEwMi04NzEyZTY4ODk2MDA/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4fe18d2c-1656-49a1-ba02-8712e6889600\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-21T19:26:02.9267933-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f6a8e097-89ae-4818-9afc-e87f96778f1a" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31975" + ], + "x-ms-correlation-request-id": [ + "994787dd-cac1-41ef-b3e2-5b270a41661d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T023350Z:994787dd-cac1-41ef-b3e2-5b270a41661d" + ], + "Date": [ + "Wed, 22 Apr 2015 02:33:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/4fe18d2c-1656-49a1-ba02-8712e6889600?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy80ZmUxOGQyYy0xNjU2LTQ5YTEtYmEwMi04NzEyZTY4ODk2MDA/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4fe18d2c-1656-49a1-ba02-8712e6889600\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-21T19:26:02.9267933-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "1e973111-31ca-4951-a75e-c39369ef90e6" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31974" + ], + "x-ms-correlation-request-id": [ + "63f99cea-41fd-4df1-955c-018da50e4b0a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T023421Z:63f99cea-41fd-4df1-955c-018da50e4b0a" + ], + "Date": [ + "Wed, 22 Apr 2015 02:34:21 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/4fe18d2c-1656-49a1-ba02-8712e6889600?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy80ZmUxOGQyYy0xNjU2LTQ5YTEtYmEwMi04NzEyZTY4ODk2MDA/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4fe18d2c-1656-49a1-ba02-8712e6889600\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-21T19:26:02.9267933-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "5cbbf905-8f2e-4bff-8368-7704eaf5580d" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31973" + ], + "x-ms-correlation-request-id": [ + "efb1f5df-95a5-4a1a-8d46-527c789db2c5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T023452Z:efb1f5df-95a5-4a1a-8d46-527c789db2c5" + ], + "Date": [ + "Wed, 22 Apr 2015 02:34:51 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/4fe18d2c-1656-49a1-ba02-8712e6889600?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy80ZmUxOGQyYy0xNjU2LTQ5YTEtYmEwMi04NzEyZTY4ODk2MDA/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4fe18d2c-1656-49a1-ba02-8712e6889600\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-21T19:26:02.9267933-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "5c1ba178-606a-4b49-9578-22fc7a999eab" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31972" + ], + "x-ms-correlation-request-id": [ + "a3313af0-fe7c-4de7-b137-2a0bc748c0c1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T023523Z:a3313af0-fe7c-4de7-b137-2a0bc748c0c1" + ], + "Date": [ + "Wed, 22 Apr 2015 02:35:22 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/4fe18d2c-1656-49a1-ba02-8712e6889600?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy80ZmUxOGQyYy0xNjU2LTQ5YTEtYmEwMi04NzEyZTY4ODk2MDA/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4fe18d2c-1656-49a1-ba02-8712e6889600\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-21T19:26:02.9267933-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "80d65a5b-705e-498b-984a-7a0bf15686ca" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31971" + ], + "x-ms-correlation-request-id": [ + "ec32d10e-0578-40d5-93ef-d74b271699df" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T023554Z:ec32d10e-0578-40d5-93ef-d74b271699df" + ], + "Date": [ + "Wed, 22 Apr 2015 02:35:53 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/4fe18d2c-1656-49a1-ba02-8712e6889600?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy80ZmUxOGQyYy0xNjU2LTQ5YTEtYmEwMi04NzEyZTY4ODk2MDA/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4fe18d2c-1656-49a1-ba02-8712e6889600\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-21T19:26:02.9267933-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "06264c4d-f39e-4954-9a2b-bf3a866f0aa9" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31970" + ], + "x-ms-correlation-request-id": [ + "75ed3f2c-170b-4d13-92c4-9fab8b4b68cf" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T023625Z:75ed3f2c-170b-4d13-92c4-9fab8b4b68cf" + ], + "Date": [ + "Wed, 22 Apr 2015 02:36:25 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/4fe18d2c-1656-49a1-ba02-8712e6889600?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy80ZmUxOGQyYy0xNjU2LTQ5YTEtYmEwMi04NzEyZTY4ODk2MDA/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4fe18d2c-1656-49a1-ba02-8712e6889600\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-21T19:26:02.9267933-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "7902b108-3a0c-41d6-9c2c-580fe8b431d4" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31969" + ], + "x-ms-correlation-request-id": [ + "8abc79e8-3af7-412a-a278-9da03d126dcd" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T023656Z:8abc79e8-3af7-412a-a278-9da03d126dcd" + ], + "Date": [ + "Wed, 22 Apr 2015 02:36:55 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/4fe18d2c-1656-49a1-ba02-8712e6889600?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy80ZmUxOGQyYy0xNjU2LTQ5YTEtYmEwMi04NzEyZTY4ODk2MDA/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4fe18d2c-1656-49a1-ba02-8712e6889600\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-21T19:26:02.9267933-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f30e6875-58f3-42ec-8caf-fb99ff181728" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31968" + ], + "x-ms-correlation-request-id": [ + "e9abc34c-6ffa-445f-a453-03d2a4b61af7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T023727Z:e9abc34c-6ffa-445f-a453-03d2a4b61af7" + ], + "Date": [ + "Wed, 22 Apr 2015 02:37:26 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/4fe18d2c-1656-49a1-ba02-8712e6889600?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy80ZmUxOGQyYy0xNjU2LTQ5YTEtYmEwMi04NzEyZTY4ODk2MDA/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4fe18d2c-1656-49a1-ba02-8712e6889600\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-04-21T19:26:02.9267933-07:00\",\r\n \"endTime\": \"2015-04-21T19:37:50.8955662-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "191" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "9abc00cd-65a7-4712-b43f-993f4900eaa6" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31967" + ], + "x-ms-correlation-request-id": [ + "e027fd05-46ef-47aa-9dd2-fd103fc9a7d0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T023758Z:e027fd05-46ef-47aa-9dd2-fd103fc9a7d0" + ], + "Date": [ + "Wed, 22 Apr 2015 02:37:57 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg1436?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnMTQzNj9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-request-id": [ + "dc3bcc92-5b75-490f-b7e5-f4a817cababd" + ], + "x-ms-correlation-request-id": [ + "dc3bcc92-5b75-490f-b7e5-f4a817cababd" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T023800Z:dc3bcc92-5b75-490f-b7e5-f4a817cababd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 02:38:00 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE0MzYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE0MzYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekUwTXpZdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31996" + ], + "x-ms-request-id": [ + "315333df-d91e-4fd9-acde-a08471eb16e2" + ], + "x-ms-correlation-request-id": [ + "315333df-d91e-4fd9-acde-a08471eb16e2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T023800Z:315333df-d91e-4fd9-acde-a08471eb16e2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 02:38:00 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE0MzYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE0MzYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekUwTXpZdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31995" + ], + "x-ms-request-id": [ + "8bb57c29-59ae-49a0-929f-186955505bc1" + ], + "x-ms-correlation-request-id": [ + "8bb57c29-59ae-49a0-929f-186955505bc1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T023815Z:8bb57c29-59ae-49a0-929f-186955505bc1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 02:38:15 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE0MzYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE0MzYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekUwTXpZdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31994" + ], + "x-ms-request-id": [ + "3b5538dd-ac30-4cd1-9f8f-55ab652ac16a" + ], + "x-ms-correlation-request-id": [ + "3b5538dd-ac30-4cd1-9f8f-55ab652ac16a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T023831Z:3b5538dd-ac30-4cd1-9f8f-55ab652ac16a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 02:38:31 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE0MzYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE0MzYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekUwTXpZdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31993" + ], + "x-ms-request-id": [ + "f66274d3-4028-47c3-8b8e-b439a5e7462a" + ], + "x-ms-correlation-request-id": [ + "f66274d3-4028-47c3-8b8e-b439a5e7462a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T023846Z:f66274d3-4028-47c3-8b8e-b439a5e7462a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 02:38:46 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE0MzYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE0MzYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekUwTXpZdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31992" + ], + "x-ms-request-id": [ + "c9a3849d-5403-4131-bcfb-38a8f4679b18" + ], + "x-ms-correlation-request-id": [ + "c9a3849d-5403-4131-bcfb-38a8f4679b18" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T023901Z:c9a3849d-5403-4131-bcfb-38a8f4679b18" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 02:39:01 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE0MzYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE0MzYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekUwTXpZdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31991" + ], + "x-ms-request-id": [ + "4784743f-1bf3-41b7-aa2e-2437035adaa7" + ], + "x-ms-correlation-request-id": [ + "4784743f-1bf3-41b7-aa2e-2437035adaa7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T023917Z:4784743f-1bf3-41b7-aa2e-2437035adaa7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 02:39:16 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE0MzYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE0MzYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekUwTXpZdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31990" + ], + "x-ms-request-id": [ + "55d3f8c2-ef38-4a8e-8ff1-dbe3eccd3014" + ], + "x-ms-correlation-request-id": [ + "55d3f8c2-ef38-4a8e-8ff1-dbe3eccd3014" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T023932Z:55d3f8c2-ef38-4a8e-8ff1-dbe3eccd3014" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 02:39:32 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE0MzYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE0MzYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekUwTXpZdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31989" + ], + "x-ms-request-id": [ + "7021085c-6cf8-43fa-b33f-357e79af197c" + ], + "x-ms-correlation-request-id": [ + "7021085c-6cf8-43fa-b33f-357e79af197c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T023948Z:7021085c-6cf8-43fa-b33f-357e79af197c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 02:39:47 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE0MzYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE0MzYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekUwTXpZdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31988" + ], + "x-ms-request-id": [ + "0e4fc0f8-d859-4ab9-ad25-cc1949fad71d" + ], + "x-ms-correlation-request-id": [ + "0e4fc0f8-d859-4ab9-ad25-cc1949fad71d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T024003Z:0e4fc0f8-d859-4ab9-ad25-cc1949fad71d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 02:40:03 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE0MzYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE0MzYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekUwTXpZdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31987" + ], + "x-ms-request-id": [ + "e357b4bc-9914-4edb-b2bc-62109b9f5e44" + ], + "x-ms-correlation-request-id": [ + "e357b4bc-9914-4edb-b2bc-62109b9f5e44" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T024018Z:e357b4bc-9914-4edb-b2bc-62109b9f5e44" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 02:40:18 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE0MzYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE0MzYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekUwTXpZdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31986" + ], + "x-ms-request-id": [ + "af387cf2-a083-4a0c-9db7-c755265c0e8d" + ], + "x-ms-correlation-request-id": [ + "af387cf2-a083-4a0c-9db7-c755265c0e8d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T024034Z:af387cf2-a083-4a0c-9db7-c755265c0e8d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 02:40:33 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE0MzYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE0MzYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekUwTXpZdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31985" + ], + "x-ms-request-id": [ + "26fd442b-c1d5-4b92-a13a-daffbc77faaa" + ], + "x-ms-correlation-request-id": [ + "26fd442b-c1d5-4b92-a13a-daffbc77faaa" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T024049Z:26fd442b-c1d5-4b92-a13a-daffbc77faaa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 02:40:49 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE0MzYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE0MzYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekUwTXpZdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31984" + ], + "x-ms-request-id": [ + "745e8be8-f706-451a-b168-b940b49b6224" + ], + "x-ms-correlation-request-id": [ + "745e8be8-f706-451a-b168-b940b49b6224" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T024104Z:745e8be8-f706-451a-b168-b940b49b6224" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 02:41:04 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE0MzYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE0MzYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekUwTXpZdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31983" + ], + "x-ms-request-id": [ + "64a4ae16-972d-46ea-9c4a-a914767d987f" + ], + "x-ms-correlation-request-id": [ + "64a4ae16-972d-46ea-9c4a-a914767d987f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T024120Z:64a4ae16-972d-46ea-9c4a-a914767d987f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 02:41:19 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE0MzYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE0MzYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekUwTXpZdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31982" + ], + "x-ms-request-id": [ + "eaaa920e-69cc-46c4-b12f-e8e05badb200" + ], + "x-ms-correlation-request-id": [ + "eaaa920e-69cc-46c4-b12f-e8e05badb200" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T024135Z:eaaa920e-69cc-46c4-b12f-e8e05badb200" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 02:41:35 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE0MzYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE0MzYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekUwTXpZdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31981" + ], + "x-ms-request-id": [ + "d5a63427-3578-4ae6-a3cb-036d884ae11a" + ], + "x-ms-correlation-request-id": [ + "d5a63427-3578-4ae6-a3cb-036d884ae11a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T024151Z:d5a63427-3578-4ae6-a3cb-036d884ae11a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 02:41:50 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE0MzYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE0MzYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekUwTXpZdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31980" + ], + "x-ms-request-id": [ + "3996b397-62af-42e2-9d17-4731354741ba" + ], + "x-ms-correlation-request-id": [ + "3996b397-62af-42e2-9d17-4731354741ba" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T024206Z:3996b397-62af-42e2-9d17-4731354741ba" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 02:42:05 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE0MzYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE0MzYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekUwTXpZdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31979" + ], + "x-ms-request-id": [ + "10251aad-13b0-48ed-8bd7-e211ea8d0289" + ], + "x-ms-correlation-request-id": [ + "10251aad-13b0-48ed-8bd7-e211ea8d0289" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T024221Z:10251aad-13b0-48ed-8bd7-e211ea8d0289" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 02:42:21 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE0MzYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE0MzYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekUwTXpZdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31978" + ], + "x-ms-request-id": [ + "37f24c93-03e8-4780-b442-08b2a5fb0559" + ], + "x-ms-correlation-request-id": [ + "37f24c93-03e8-4780-b442-08b2a5fb0559" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T024237Z:37f24c93-03e8-4780-b442-08b2a5fb0559" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 02:42:36 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE0MzYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE0MzYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekUwTXpZdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31977" + ], + "x-ms-request-id": [ + "95f28374-dc4f-4bd1-a6df-dd02d090467f" + ], + "x-ms-correlation-request-id": [ + "95f28374-dc4f-4bd1-a6df-dd02d090467f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T024252Z:95f28374-dc4f-4bd1-a6df-dd02d090467f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 02:42:52 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE0MzYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE0MzYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekUwTXpZdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31976" + ], + "x-ms-request-id": [ + "5a8e9b95-f67d-423b-8bd3-7be3d5624121" + ], + "x-ms-correlation-request-id": [ + "5a8e9b95-f67d-423b-8bd3-7be3d5624121" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T024308Z:5a8e9b95-f67d-423b-8bd3-7be3d5624121" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 02:43:07 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE0MzYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE0MzYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekUwTXpZdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31975" + ], + "x-ms-request-id": [ + "af2d7ee9-5272-48cc-b512-384dc4a4896c" + ], + "x-ms-correlation-request-id": [ + "af2d7ee9-5272-48cc-b512-384dc4a4896c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T024323Z:af2d7ee9-5272-48cc-b512-384dc4a4896c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 02:43:22 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE0MzYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE0MzYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekUwTXpZdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31974" + ], + "x-ms-request-id": [ + "e252a4b6-1d3d-4e7a-9c86-236580463ef0" + ], + "x-ms-correlation-request-id": [ + "e252a4b6-1d3d-4e7a-9c86-236580463ef0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T024338Z:e252a4b6-1d3d-4e7a-9c86-236580463ef0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 02:43:38 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE0MzYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE0MzYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekUwTXpZdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31973" + ], + "x-ms-request-id": [ + "cc06c6ec-6779-4a7e-97cd-54c08e9d0414" + ], + "x-ms-correlation-request-id": [ + "cc06c6ec-6779-4a7e-97cd-54c08e9d0414" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T024354Z:cc06c6ec-6779-4a7e-97cd-54c08e9d0414" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 02:43:53 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE0MzYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE0MzYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekUwTXpZdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31972" + ], + "x-ms-request-id": [ + "ebf69028-59fa-4b51-8a17-5e7a2ead0782" + ], + "x-ms-correlation-request-id": [ + "ebf69028-59fa-4b51-8a17-5e7a2ead0782" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T024409Z:ebf69028-59fa-4b51-8a17-5e7a2ead0782" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 02:44:08 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE0MzYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE0MzYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekUwTXpZdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31971" + ], + "x-ms-request-id": [ + "d182fa4e-5b88-42e7-9bca-5ae82fdfdf20" + ], + "x-ms-correlation-request-id": [ + "d182fa4e-5b88-42e7-9bca-5ae82fdfdf20" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T024425Z:d182fa4e-5b88-42e7-9bca-5ae82fdfdf20" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 02:44:25 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE0MzYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE0MzYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekUwTXpZdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31970" + ], + "x-ms-request-id": [ + "22460dbe-d36b-4696-9ac3-e3206d9609ee" + ], + "x-ms-correlation-request-id": [ + "22460dbe-d36b-4696-9ac3-e3206d9609ee" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T024440Z:22460dbe-d36b-4696-9ac3-e3206d9609ee" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 02:44:40 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE0MzYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE0MzYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekUwTXpZdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31969" + ], + "x-ms-request-id": [ + "4e504dce-6955-4cb1-bd50-aa224c5a3e3d" + ], + "x-ms-correlation-request-id": [ + "4e504dce-6955-4cb1-bd50-aa224c5a3e3d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T024455Z:4e504dce-6955-4cb1-bd50-aa224c5a3e3d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 02:44:55 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE0MzYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE0MzYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekUwTXpZdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31970" + ], + "x-ms-request-id": [ + "9060e51d-3933-4576-9b17-a8d23399e9f8" + ], + "x-ms-correlation-request-id": [ + "9060e51d-3933-4576-9b17-a8d23399e9f8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T024511Z:9060e51d-3933-4576-9b17-a8d23399e9f8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 02:45:10 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE0MzYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE0MzYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekUwTXpZdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31969" + ], + "x-ms-request-id": [ + "75ee61f9-62ce-40ec-816c-0042fc2ef7cd" + ], + "x-ms-correlation-request-id": [ + "75ee61f9-62ce-40ec-816c-0042fc2ef7cd" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T024526Z:75ee61f9-62ce-40ec-816c-0042fc2ef7cd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 02:45:25 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE0MzYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE0MzYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekUwTXpZdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31968" + ], + "x-ms-request-id": [ + "21401b33-6036-4e49-8471-003073d78040" + ], + "x-ms-correlation-request-id": [ + "21401b33-6036-4e49-8471-003073d78040" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T024541Z:21401b33-6036-4e49-8471-003073d78040" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 02:45:41 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE0MzYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE0MzYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekUwTXpZdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31967" + ], + "x-ms-request-id": [ + "06111f70-3f51-4c67-9545-a2a1658039a5" + ], + "x-ms-correlation-request-id": [ + "06111f70-3f51-4c67-9545-a2a1658039a5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T024557Z:06111f70-3f51-4c67-9545-a2a1658039a5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 02:45:56 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE0MzYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE0MzYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekUwTXpZdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31966" + ], + "x-ms-request-id": [ + "b5cdc417-4a25-4bf0-945e-709404637074" + ], + "x-ms-correlation-request-id": [ + "b5cdc417-4a25-4bf0-945e-709404637074" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T024612Z:b5cdc417-4a25-4bf0-945e-709404637074" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 02:46:12 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE0MzYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE0MzYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekUwTXpZdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31965" + ], + "x-ms-request-id": [ + "c496b10d-3607-41c9-a7e9-c305aff7024f" + ], + "x-ms-correlation-request-id": [ + "c496b10d-3607-41c9-a7e9-c305aff7024f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T024628Z:c496b10d-3607-41c9-a7e9-c305aff7024f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 02:46:27 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE0MzYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE0MzYtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekUwTXpZdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31964" + ], + "x-ms-request-id": [ + "5966c5a1-ccc2-42ba-b953-7d15da332ff2" + ], + "x-ms-correlation-request-id": [ + "5966c5a1-ccc2-42ba-b953-7d15da332ff2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150422T024643Z:5966c5a1-ccc2-42ba-b953-7d15da332ff2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 02:46:42 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "Test-VirtualMachinePIRv2": [ + "pstestrg1436" + ] + }, + "Variables": { + "SubscriptionId": "4d368445-cbb1-42a7-97a6-6850ab99f48e", + "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "Domain": "microsoft.com" + } +} \ No newline at end of file diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestVirtualMachinePlan.json b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestVirtualMachinePlan.json new file mode 100644 index 000000000000..9300020f7317 --- /dev/null +++ b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestVirtualMachinePlan.json @@ -0,0 +1,2231 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg91?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnOTE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31944" + ], + "x-ms-request-id": [ + "1f3b8161-2467-4300-aaec-f493743f2a21" + ], + "x-ms-correlation-request-id": [ + "1f3b8161-2467-4300-aaec-f493743f2a21" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T010240Z:1f3b8161-2467-4300-aaec-f493743f2a21" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 26 Apr 2015 01:02:40 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg91?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnOTE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31940" + ], + "x-ms-request-id": [ + "84b7598f-d9ac-4c7b-acf6-863b5c0999ac" + ], + "x-ms-correlation-request-id": [ + "84b7598f-d9ac-4c7b-acf6-863b5c0999ac" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T010415Z:84b7598f-d9ac-4c7b-acf6-863b5c0999ac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 26 Apr 2015 01:04:14 GMT" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg91?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnOTE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastasia\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "30" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg91\",\r\n \"name\": \"pstestrg91\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "175" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-request-id": [ + "98eade78-dd8f-498f-8e1b-2394e34311fc" + ], + "x-ms-correlation-request-id": [ + "98eade78-dd8f-498f-8e1b-2394e34311fc" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T010243Z:98eade78-dd8f-498f-8e1b-2394e34311fc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 26 Apr 2015 01:02:42 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg91/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTEvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31943" + ], + "x-ms-request-id": [ + "a741bf4e-3583-4926-addc-a7a8da0fdb9e" + ], + "x-ms-correlation-request-id": [ + "a741bf4e-3583-4926-addc-a7a8da0fdb9e" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T010243Z:a741bf4e-3583-4926-addc-a7a8da0fdb9e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 26 Apr 2015 01:02:42 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg91/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnOTEvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "45" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "northcentralus:d20f0b6b-0262-444a-ae6d-6b594a7a1543" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31965" + ], + "x-ms-correlation-request-id": [ + "7ecfb0dc-cca4-4b00-80aa-729a4d29fe8a" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T010244Z:7ecfb0dc-cca4-4b00-80aa-729a4d29fe8a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 26 Apr 2015 01:02:43 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg91/providers/Microsoft.Network/virtualnetworks/vnetpstestrg91?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0cHN0ZXN0cmc5MT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "69" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "bb41376b-c52d-45ad-afe8-3dc5ce158330" + ], + "x-ms-correlation-request-id": [ + "bb41376b-c52d-45ad-afe8-3dc5ce158330" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T010245Z:bb41376b-c52d-45ad-afe8-3dc5ce158330" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 26 Apr 2015 01:02:45 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg91/providers/Microsoft.Network/virtualnetworks/vnetpstestrg91?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0cHN0ZXN0cmc5MT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vnetpstestrg91\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg91/providers/Microsoft.Network/virtualNetworks/vnetpstestrg91\",\r\n \"etag\": \"W/\\\"3dcf4c52-afe2-4213-a283-2fd855c8f779\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\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 \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg91\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg91/providers/Microsoft.Network/virtualNetworks/vnetpstestrg91/subnets/subnetpstestrg91\",\r\n \"etag\": \"W/\\\"3dcf4c52-afe2-4213-a283-2fd855c8f779\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"eastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "948" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "db7c98db-f9cf-480a-9814-d184d412ec2b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"3dcf4c52-afe2-4213-a283-2fd855c8f779\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31972" + ], + "x-ms-correlation-request-id": [ + "ac2acf8a-2467-4a32-b6b9-ed7dd230a7ba" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T010304Z:ac2acf8a-2467-4a32-b6b9-ed7dd230a7ba" + ], + "Date": [ + "Sun, 26 Apr 2015 01:03:03 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg91/providers/Microsoft.Network/virtualnetworks/vnetpstestrg91?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0cHN0ZXN0cmc5MT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vnetpstestrg91\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg91/providers/Microsoft.Network/virtualNetworks/vnetpstestrg91\",\r\n \"etag\": \"W/\\\"3dcf4c52-afe2-4213-a283-2fd855c8f779\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\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 \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg91\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg91/providers/Microsoft.Network/virtualNetworks/vnetpstestrg91/subnets/subnetpstestrg91\",\r\n \"etag\": \"W/\\\"3dcf4c52-afe2-4213-a283-2fd855c8f779\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"eastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "948" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "1260b7ab-845f-4751-b82b-6c97bd18d720" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"3dcf4c52-afe2-4213-a283-2fd855c8f779\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31971" + ], + "x-ms-correlation-request-id": [ + "eea9006d-9080-4a5f-9d1e-a8874d8821be" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T010304Z:eea9006d-9080-4a5f-9d1e-a8874d8821be" + ], + "Date": [ + "Sun, 26 Apr 2015 01:03:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg91/providers/Microsoft.Network/virtualnetworks/vnetpstestrg91?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0cHN0ZXN0cmc5MT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "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 \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": []\r\n },\r\n \"name\": \"subnetpstestrg91\"\r\n }\r\n ]\r\n },\r\n \"name\": \"vnetpstestrg91\",\r\n \"type\": \"microsoft.network/virtualNetworks\",\r\n \"location\": \"eastasia\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "498" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vnetpstestrg91\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg91/providers/Microsoft.Network/virtualNetworks/vnetpstestrg91\",\r\n \"etag\": \"W/\\\"9d8f424e-4593-4252-b934-c87d00134fca\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\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 \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg91\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg91/providers/Microsoft.Network/virtualNetworks/vnetpstestrg91/subnets/subnetpstestrg91\",\r\n \"etag\": \"W/\\\"9d8f424e-4593-4252-b934-c87d00134fca\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"eastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "946" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "ee1d110b-eed9-4c3b-8e49-f8e0ad90e813" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/eastasia/operations/ee1d110b-eed9-4c3b-8e49-f8e0ad90e813?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "1c86500d-9fc2-43ee-9744-be3315d18315" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T010252Z:1c86500d-9fc2-43ee-9744-be3315d18315" + ], + "Date": [ + "Sun, 26 Apr 2015 01:02:51 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/eastasia/operations/ee1d110b-eed9-4c3b-8e49-f8e0ad90e813?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9lZTFkMTEwYi1lZWQ5LTRjM2ItOGU0OS1mOGUwYWQ5MGU4MTM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-05-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "2e929b09-1976-4cbb-9ef3-385c042d1101" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31974" + ], + "x-ms-correlation-request-id": [ + "4c0f8ce2-38b0-479a-988b-61ab468072fb" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T010253Z:4c0f8ce2-38b0-479a-988b-61ab468072fb" + ], + "Date": [ + "Sun, 26 Apr 2015 01:02:52 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/eastasia/operations/ee1d110b-eed9-4c3b-8e49-f8e0ad90e813?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9lZTFkMTEwYi1lZWQ5LTRjM2ItOGU0OS1mOGUwYWQ5MGU4MTM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-05-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "5d42aed8-7e0f-4756-bd93-0842e2e20dfc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31973" + ], + "x-ms-correlation-request-id": [ + "c225e0c6-2e5a-4d44-ae9d-bedc0edbb794" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T010304Z:c225e0c6-2e5a-4d44-ae9d-bedc0edbb794" + ], + "Date": [ + "Sun, 26 Apr 2015 01:03:03 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg91/providers/Microsoft.Network/publicIPAddresses/pubippstestrg91/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwcHN0ZXN0cmc5MS8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "69" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "c26acbf2-e1cd-4a34-a160-688273186cb3" + ], + "x-ms-correlation-request-id": [ + "c26acbf2-e1cd-4a34-a160-688273186cb3" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T010305Z:c26acbf2-e1cd-4a34-a160-688273186cb3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 26 Apr 2015 01:03:04 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg91/providers/Microsoft.Network/publicIPAddresses/pubippstestrg91/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwcHN0ZXN0cmc5MS8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pubippstestrg91\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg91/providers/Microsoft.Network/publicIPAddresses/pubippstestrg91\",\r\n \"etag\": \"W/\\\"eecffc8f-0540-4100-a4bd-84ee8b2d2c03\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubippstestrg91\",\r\n \"fqdn\": \"pubippstestrg91.eastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"eastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "544" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ef8c3297-a050-45d6-be80-409b51f5ed95" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"eecffc8f-0540-4100-a4bd-84ee8b2d2c03\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31968" + ], + "x-ms-correlation-request-id": [ + "24db4797-ecd3-465a-abab-fab2290c484e" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T010313Z:24db4797-ecd3-465a-abab-fab2290c484e" + ], + "Date": [ + "Sun, 26 Apr 2015 01:03:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg91/providers/Microsoft.Network/publicIPAddresses/pubippstestrg91/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwcHN0ZXN0cmc5MS8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pubippstestrg91\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg91/providers/Microsoft.Network/publicIPAddresses/pubippstestrg91\",\r\n \"etag\": \"W/\\\"eecffc8f-0540-4100-a4bd-84ee8b2d2c03\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubippstestrg91\",\r\n \"fqdn\": \"pubippstestrg91.eastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"eastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "544" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "8237a2f5-3125-4dea-b756-4528ff78aff4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"eecffc8f-0540-4100-a4bd-84ee8b2d2c03\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31967" + ], + "x-ms-correlation-request-id": [ + "86f885af-812a-4fe8-9383-966301d8d6bd" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T010313Z:86f885af-812a-4fe8-9383-966301d8d6bd" + ], + "Date": [ + "Sun, 26 Apr 2015 01:03:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg91/providers/Microsoft.Network/publicIPAddresses/pubippstestrg91/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwcHN0ZXN0cmc5MS8/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubippstestrg91\"\r\n }\r\n },\r\n \"name\": \"pubippstestrg91\",\r\n \"type\": \"microsoft.network/publicIPAddresses\",\r\n \"location\": \"eastasia\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "252" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pubippstestrg91\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg91/providers/Microsoft.Network/publicIPAddresses/pubippstestrg91\",\r\n \"etag\": \"W/\\\"3d131d11-9dbd-4792-8e2b-f0d36c5cda08\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubippstestrg91\",\r\n \"fqdn\": \"pubippstestrg91.eastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"eastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "543" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "5f443adf-2270-4e1c-843a-e5c29e85e22d" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/eastasia/operations/5f443adf-2270-4e1c-843a-e5c29e85e22d?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "84b58b3e-8159-4172-a9f4-bad6c5db1da5" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T010312Z:84b58b3e-8159-4172-a9f4-bad6c5db1da5" + ], + "Date": [ + "Sun, 26 Apr 2015 01:03:11 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/eastasia/operations/5f443adf-2270-4e1c-843a-e5c29e85e22d?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy81ZjQ0M2FkZi0yMjcwLTRlMWMtODQzYS1lNWMyOWU4NWUyMmQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-05-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "9f28da95-d994-4b14-ab16-1818dd3a97c2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31969" + ], + "x-ms-correlation-request-id": [ + "7809a627-2c79-41ed-be1a-2f4c4fe7fb54" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T010312Z:7809a627-2c79-41ed-be1a-2f4c4fe7fb54" + ], + "Date": [ + "Sun, 26 Apr 2015 01:03:11 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg91/providers/Microsoft.Network/networkInterfaces/nicpstestrg91?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY3BzdGVzdHJnOTE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "69" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "e15360f1-414e-43ae-a942-049e22ef6e64" + ], + "x-ms-correlation-request-id": [ + "e15360f1-414e-43ae-a942-049e22ef6e64" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T010313Z:e15360f1-414e-43ae-a942-049e22ef6e64" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 26 Apr 2015 01:03:12 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg91/providers/Microsoft.Network/networkInterfaces/nicpstestrg91?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY3BzdGVzdHJnOTE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"nicpstestrg91\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg91/providers/Microsoft.Network/networkInterfaces/nicpstestrg91\",\r\n \"etag\": \"W/\\\"d3010f67-c985-44e2-bb44-420f1c7ef375\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg91/providers/Microsoft.Network/networkInterfaces/nicpstestrg91/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"d3010f67-c985-44e2-bb44-420f1c7ef375\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg91/providers/Microsoft.Network/publicIPAddresses/pubippstestrg91\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg91/providers/Microsoft.Network/virtualNetworks/vnetpstestrg91/subnets/subnetpstestrg91\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"eastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1282" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "323a8b48-2f38-4fc9-81a2-114059338131" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"d3010f67-c985-44e2-bb44-420f1c7ef375\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31964" + ], + "x-ms-correlation-request-id": [ + "9e55855e-d0b3-49cb-afdf-0ea8bf4eec7c" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T010321Z:9e55855e-d0b3-49cb-afdf-0ea8bf4eec7c" + ], + "Date": [ + "Sun, 26 Apr 2015 01:03:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg91/providers/Microsoft.Network/networkInterfaces/nicpstestrg91?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY3BzdGVzdHJnOTE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"nicpstestrg91\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg91/providers/Microsoft.Network/networkInterfaces/nicpstestrg91\",\r\n \"etag\": \"W/\\\"d3010f67-c985-44e2-bb44-420f1c7ef375\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg91/providers/Microsoft.Network/networkInterfaces/nicpstestrg91/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"d3010f67-c985-44e2-bb44-420f1c7ef375\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg91/providers/Microsoft.Network/publicIPAddresses/pubippstestrg91\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg91/providers/Microsoft.Network/virtualNetworks/vnetpstestrg91/subnets/subnetpstestrg91\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"eastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1282" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "0095bda1-da5f-4c3c-bc2e-cc2b1b5d1337" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"d3010f67-c985-44e2-bb44-420f1c7ef375\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31963" + ], + "x-ms-correlation-request-id": [ + "c597ab5a-b187-445e-8e55-73c82eaba5ae" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T010321Z:c597ab5a-b187-445e-8e55-73c82eaba5ae" + ], + "Date": [ + "Sun, 26 Apr 2015 01:03:21 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg91/providers/Microsoft.Network/networkInterfaces/nicpstestrg91?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY3BzdGVzdHJnOTE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg91/providers/Microsoft.Network/virtualNetworks/vnetpstestrg91/subnets/subnetpstestrg91\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg91/providers/Microsoft.Network/publicIPAddresses/pubippstestrg91\"\r\n },\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": []\r\n },\r\n \"name\": \"ipconfig1\"\r\n }\r\n ],\r\n \"primary\": false\r\n },\r\n \"name\": \"nicpstestrg91\",\r\n \"type\": \"microsoft.network/networkInterfaces\",\r\n \"location\": \"eastasia\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "847" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"nicpstestrg91\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg91/providers/Microsoft.Network/networkInterfaces/nicpstestrg91\",\r\n \"etag\": \"W/\\\"d3010f67-c985-44e2-bb44-420f1c7ef375\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg91/providers/Microsoft.Network/networkInterfaces/nicpstestrg91/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"d3010f67-c985-44e2-bb44-420f1c7ef375\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg91/providers/Microsoft.Network/publicIPAddresses/pubippstestrg91\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg91/providers/Microsoft.Network/virtualNetworks/vnetpstestrg91/subnets/subnetpstestrg91\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"eastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1282" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "279b6a83-80a4-402c-b4ac-11b91239ae0a" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/eastasia/operations/279b6a83-80a4-402c-b4ac-11b91239ae0a?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "fbb42c97-8ffc-440e-ada6-1c8821ce5474" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T010319Z:fbb42c97-8ffc-440e-ada6-1c8821ce5474" + ], + "Date": [ + "Sun, 26 Apr 2015 01:03:19 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/eastasia/operations/279b6a83-80a4-402c-b4ac-11b91239ae0a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy8yNzliNmE4My04MGE0LTQwMmMtYjRhYy0xMWI5MTIzOWFlMGE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-05-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "fc769b88-998d-4637-a796-f047688d19e2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31965" + ], + "x-ms-correlation-request-id": [ + "0c5c7b3b-cfa2-45ab-b5ba-7af2de9133dc" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T010320Z:0c5c7b3b-cfa2-45ab-b5ba-7af2de9133dc" + ], + "Date": [ + "Sun, 26 Apr 2015 01:03:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg91/providers/Microsoft.Storage/storageAccounts/stopstestrg91?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTEvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9wc3Rlc3RyZzkxP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "90" + ], + "x-ms-client-request-id": [ + "ffd84a4a-6c9b-41fa-ac81-a4a9d1f26a53" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "25" + ], + "x-ms-request-id": [ + "e5e50b36-e41d-4558-85b8-d6a5942b8f55" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/e5e50b36-e41d-4558-85b8-d6a5942b8f55?monitor=true&api-version=2015-05-01-preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "38b9e877-c71f-43de-8a43-2261fd35c670" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T010328Z:38b9e877-c71f-43de-8a43-2261fd35c670" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Sun, 26 Apr 2015 01:03:27 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/e5e50b36-e41d-4558-85b8-d6a5942b8f55?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2U1ZTUwYjM2LWU0MWQtNDU1OC04NWI4LWQ2YTU5NDJiOGY1NT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9f13a575-11cd-4ce1-8e8a-08c67a152825" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "25" + ], + "x-ms-request-id": [ + "ca1bc36a-59cd-445e-b412-f898e2724f24" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/e5e50b36-e41d-4558-85b8-d6a5942b8f55?monitor=true&api-version=2015-05-01-preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31962" + ], + "x-ms-correlation-request-id": [ + "2dc0af71-8fcb-4f08-a7ff-28213c7632fb" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T010328Z:2dc0af71-8fcb-4f08-a7ff-28213c7632fb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Sun, 26 Apr 2015 01:03:27 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/e5e50b36-e41d-4558-85b8-d6a5942b8f55?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2U1ZTUwYjM2LWU0MWQtNDU1OC04NWI4LWQ2YTU5NDJiOGY1NT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c4712e06-1ecc-4808-b993-41173b81d077" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n },\r\n \"location\": \"East Asia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "68" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b1729ab0-8f18-4247-95ac-ab6f7da9bbd6" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31961" + ], + "x-ms-correlation-request-id": [ + "2a30cb35-938f-4074-9a90-39b9b5775c1f" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T010353Z:2a30cb35-938f-4074-9a90-39b9b5775c1f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Sun, 26 Apr 2015 01:03:53 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg91/providers/Microsoft.Storage/storageAccounts/stopstestrg91?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTEvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9wc3Rlc3RyZzkxP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "35ec3492-f2d8-4063-9da5-ffb4cd30564a" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg91/providers/Microsoft.Storage/storageAccounts/stopstestrg91\",\r\n \"name\": \"stopstestrg91\",\r\n \"location\": \"East Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stopstestrg91.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg91.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg91.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"East Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"Southeast Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-04-26T01:03:25.4862315Z\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "671" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "428f21b3-efeb-4c67-88c1-d9ac71c711c2" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31960" + ], + "x-ms-correlation-request-id": [ + "13c99bde-731a-40c1-8ad0-fe67a8f9e119" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T010353Z:13c99bde-731a-40c1-8ad0-fe67a8f9e119" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Sun, 26 Apr 2015 01:03:53 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg91/providers/Microsoft.Storage/storageAccounts/stopstestrg91?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTEvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9wc3Rlc3RyZzkxP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a556af0d-e0d7-4c32-bd2a-2cab9dc9b8c1" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg91/providers/Microsoft.Storage/storageAccounts/stopstestrg91\",\r\n \"name\": \"stopstestrg91\",\r\n \"location\": \"East Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stopstestrg91.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg91.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg91.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"East Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"Southeast Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-04-26T01:03:25.4862315Z\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "671" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "1700ee8c-8657-4224-b0bd-37d82a818b62" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31959" + ], + "x-ms-correlation-request-id": [ + "14422747-f8cf-4a28-b90c-48d76d27766b" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T010353Z:14422747-f8cf-4a28-b90c-48d76d27766b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Sun, 26 Apr 2015 01:03:53 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/publishers?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"boxless\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/boxless\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"CloudLink.SecureVM\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/CloudLink.SecureVM\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"informatica-cloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/informatica-cloud\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"marketplace-test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/marketplace-test\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"metavistech\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/metavistech\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftWindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServerEssentials\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MSOpenTech.Extensions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MSOpenTech.Extensions\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"seagate\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/seagate\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"sharefile\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/sharefile\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"sisense\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/sisense\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"vision_solutions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/vision_solutions\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/wowza\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "14133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f9566a71-60be-44e9-9f97-3f6ca885139d" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31981" + ], + "x-ms-correlation-request-id": [ + "13a9eb09-7cbd-41be-96ab-40ac89b4aa4d" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T010354Z:13a9eb09-7cbd-41be-96ab-40ac89b4aa4d" + ], + "Date": [ + "Sun, 26 Apr 2015 01:03:54 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"WindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "262" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f379cba2-0990-4640-abf0-11f6309a124a" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31980" + ], + "x-ms-correlation-request-id": [ + "f2031910-6172-46b3-99b4-1dacf937b9a4" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T010355Z:f2031910-6172-46b3-99b4-1dacf937b9a4" + ], + "Date": [ + "Sun, 26 Apr 2015 01:03:55 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvV2luZG93c1NlcnZlci9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"2008-R2-SP1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"2012-Datacenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"2012-R2-Datacenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Windows-Server-Technical-Preview\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/Windows-Server-Technical-Preview\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "1163" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "4345dec4-b2e3-4819-8bad-c4e4830e41c3" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31979" + ], + "x-ms-correlation-request-id": [ + "e87c5b25-7e99-4b75-bbf0-e128a5903aa3" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T010356Z:e87c5b25-7e99-4b75-bbf0-e128a5903aa3" + ], + "Date": [ + "Sun, 26 Apr 2015 01:03:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvV2luZG93c1NlcnZlci9za3VzLzIwMDgtUjItU1AxL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"2.0.201502\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201502\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"2.0.201503\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201503\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Length": [ + "589" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "78ebe56f-818b-4fca-ae65-04af5b0c8cd4" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31978" + ], + "x-ms-correlation-request-id": [ + "30d207c8-de9d-43c5-ac21-93a8b9cbc6e9" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T010357Z:30d207c8-de9d-43c5-ac21-93a8b9cbc6e9" + ], + "Date": [ + "Sun, 26 Apr 2015 01:03:57 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions/2.0.201502?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvV2luZG93c1NlcnZlci9za3VzLzIwMDgtUjItU1AxL3ZlcnNpb25zLzIuMC4yMDE1MDI/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastasia\",\r\n \"name\": \"2.0.201502\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201502\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "397" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "e097f012-7b31-4fba-91b7-fd72caf70d9a" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31977" + ], + "x-ms-correlation-request-id": [ + "066d5e96-2544-4c97-ac6e-f5ff5675721c" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T010358Z:066d5e96-2544-4c97-ac6e-f5ff5675721c" + ], + "Date": [ + "Sun, 26 Apr 2015 01:03:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg91/providers/Microsoft.Compute/virtualMachines/vmpstestrg91?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bXBzdGVzdHJnOTE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"plan\": {\r\n \"name\": \"pstestrg7138\",\r\n \"publisher\": \"pstestrg7138\",\r\n \"product\": \"pstestrg7138\",\r\n \"promotionCode\": \"pstestrg7138\"\r\n },\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201502\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"osDisk\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg91.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"createOption\": \"FromImage\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123pstestrg91\",\r\n \"windowsConfiguration\": {}\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg91/providers/Microsoft.Network/networkInterfaces/nicpstestrg91\"\r\n }\r\n ]\r\n }\r\n },\r\n \"name\": \"vmpstestrg91\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "1235" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourcePurchaseValidationFailed\",\r\n \"message\": \"User failed validation to purchase resources. Error message: 'Invalid Request Parameters'\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "155" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "d091abb4-fd22-45be-8828-4abde5eb8129" + ], + "x-ms-correlation-request-id": [ + "d091abb4-fd22-45be-8828-4abde5eb8129" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T010414Z:d091abb4-fd22-45be-8828-4abde5eb8129" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 26 Apr 2015 01:04:13 GMT" + ] + }, + "StatusCode": 400 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg91?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnOTE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-request-id": [ + "357afc13-dbb8-4ca6-a1da-6b73cbe2c79e" + ], + "x-ms-correlation-request-id": [ + "357afc13-dbb8-4ca6-a1da-6b73cbe2c79e" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T010419Z:357afc13-dbb8-4ca6-a1da-6b73cbe2c79e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 26 Apr 2015 01:04:18 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkxLUVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJlYXN0YXNpYSJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkxLUVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJlYXN0YXNpYSJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemt4TFVWQlUxUkJVMGxCSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMFlYTnBZU0o5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31939" + ], + "x-ms-request-id": [ + "605f4edf-6141-4da7-9f97-69e916dd956b" + ], + "x-ms-correlation-request-id": [ + "605f4edf-6141-4da7-9f97-69e916dd956b" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T010419Z:605f4edf-6141-4da7-9f97-69e916dd956b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 26 Apr 2015 01:04:19 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkxLUVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJlYXN0YXNpYSJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkxLUVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJlYXN0YXNpYSJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemt4TFVWQlUxUkJVMGxCSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMFlYTnBZU0o5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31936" + ], + "x-ms-request-id": [ + "587ca786-2a98-4408-85fb-19409290d62f" + ], + "x-ms-correlation-request-id": [ + "587ca786-2a98-4408-85fb-19409290d62f" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T010435Z:587ca786-2a98-4408-85fb-19409290d62f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 26 Apr 2015 01:04:35 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkxLUVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJlYXN0YXNpYSJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkxLUVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJlYXN0YXNpYSJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemt4TFVWQlUxUkJVMGxCSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMFlYTnBZU0o5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31935" + ], + "x-ms-request-id": [ + "696a3348-f951-4843-9ffd-47ec085dd3b9" + ], + "x-ms-correlation-request-id": [ + "696a3348-f951-4843-9ffd-47ec085dd3b9" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T010450Z:696a3348-f951-4843-9ffd-47ec085dd3b9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 26 Apr 2015 01:04:50 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkxLUVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJlYXN0YXNpYSJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkxLUVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJlYXN0YXNpYSJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemt4TFVWQlUxUkJVMGxCSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMFlYTnBZU0o5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31938" + ], + "x-ms-request-id": [ + "dc03d34c-f698-4e09-bbe3-fa8ff9bffe97" + ], + "x-ms-correlation-request-id": [ + "dc03d34c-f698-4e09-bbe3-fa8ff9bffe97" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T010506Z:dc03d34c-f698-4e09-bbe3-fa8ff9bffe97" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 26 Apr 2015 01:05:06 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkxLUVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJlYXN0YXNpYSJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkxLUVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJlYXN0YXNpYSJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemt4TFVWQlUxUkJVMGxCSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMFlYTnBZU0o5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31937" + ], + "x-ms-request-id": [ + "654afebb-d27d-4208-ae85-2452972ef09a" + ], + "x-ms-correlation-request-id": [ + "654afebb-d27d-4208-ae85-2452972ef09a" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T010521Z:654afebb-d27d-4208-ae85-2452972ef09a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 26 Apr 2015 01:05:21 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkxLUVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJlYXN0YXNpYSJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkxLUVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJlYXN0YXNpYSJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemt4TFVWQlUxUkJVMGxCSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMFlYTnBZU0o5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31936" + ], + "x-ms-request-id": [ + "ed629fa1-033f-47a2-b30e-b2ab9bf99f1d" + ], + "x-ms-correlation-request-id": [ + "ed629fa1-033f-47a2-b30e-b2ab9bf99f1d" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T010537Z:ed629fa1-033f-47a2-b30e-b2ab9bf99f1d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 26 Apr 2015 01:05:36 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkxLUVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJlYXN0YXNpYSJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkxLUVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJlYXN0YXNpYSJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemt4TFVWQlUxUkJVMGxCSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMFlYTnBZU0o5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31935" + ], + "x-ms-request-id": [ + "bc8b16fd-0eed-4668-a2fd-58dff930344e" + ], + "x-ms-correlation-request-id": [ + "bc8b16fd-0eed-4668-a2fd-58dff930344e" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T010552Z:bc8b16fd-0eed-4668-a2fd-58dff930344e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 26 Apr 2015 01:05:52 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkxLUVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJlYXN0YXNpYSJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkxLUVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJlYXN0YXNpYSJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemt4TFVWQlUxUkJVMGxCSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMFlYTnBZU0o5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31934" + ], + "x-ms-request-id": [ + "e96b400f-7365-4b6d-a553-56864e3a81f2" + ], + "x-ms-correlation-request-id": [ + "e96b400f-7365-4b6d-a553-56864e3a81f2" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T010608Z:e96b400f-7365-4b6d-a553-56864e3a81f2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 26 Apr 2015 01:06:07 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "Test-VirtualMachinePlan": [ + "pstestrg91", + "pstestrg7138" + ] + }, + "Variables": { + "SubscriptionId": "4d368445-cbb1-42a7-97a6-6850ab99f48e", + "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "Domain": "microsoft.com" + } +} \ No newline at end of file diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestVirtualMachinePlan2.json b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestVirtualMachinePlan2.json new file mode 100644 index 000000000000..12bb048de4e9 --- /dev/null +++ b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestVirtualMachinePlan2.json @@ -0,0 +1,5460 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg9981?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnOTk4MT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "104" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31982" + ], + "x-ms-request-id": [ + "11cc8cd7-f88d-46dc-a771-6550cd4c168a" + ], + "x-ms-correlation-request-id": [ + "11cc8cd7-f88d-46dc-a771-6550cd4c168a" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T203650Z:11cc8cd7-f88d-46dc-a771-6550cd4c168a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 26 Apr 2015 20:36:50 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg9981?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnOTk4MT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31957" + ], + "x-ms-request-id": [ + "3a3c244f-1665-4172-ab1b-36e918b910d4" + ], + "x-ms-correlation-request-id": [ + "3a3c244f-1665-4172-ab1b-36e918b910d4" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T205844Z:3a3c244f-1665-4172-ab1b-36e918b910d4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 26 Apr 2015 20:58:44 GMT" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg9981?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnOTk4MT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastasia\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "30" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9981\",\r\n \"name\": \"pstestrg9981\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "179" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-request-id": [ + "83ddd7f5-289f-423a-aa9c-584c4705af15" + ], + "x-ms-correlation-request-id": [ + "83ddd7f5-289f-423a-aa9c-584c4705af15" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T203652Z:83ddd7f5-289f-423a-aa9c-584c4705af15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 26 Apr 2015 20:36:52 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9981/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTk4MS9yZXNvdXJjZXM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31981" + ], + "x-ms-request-id": [ + "ee121580-60d6-4431-ba97-c2edaa1e1b1d" + ], + "x-ms-correlation-request-id": [ + "ee121580-60d6-4431-ba97-c2edaa1e1b1d" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T203653Z:ee121580-60d6-4431-ba97-c2edaa1e1b1d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 26 Apr 2015 20:36:52 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg9981/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnOTk4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcGVybWlzc2lvbnM/YXBpLXZlcnNpb249MjAxNC0wNy0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "45" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "northcentralus:513c6e06-087d-4782-9fd8-a2923ae5a2b9" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31997" + ], + "x-ms-correlation-request-id": [ + "e42d5600-8ed9-4cb8-9a62-2c3038db2369" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T203653Z:e42d5600-8ed9-4cb8-9a62-2c3038db2369" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 26 Apr 2015 20:36:53 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9981/providers/Microsoft.Network/virtualnetworks/vnetpstestrg9981?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzk5ODE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "69" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "3e428dcc-23f1-4613-807b-e81317d34739" + ], + "x-ms-correlation-request-id": [ + "3e428dcc-23f1-4613-807b-e81317d34739" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T203654Z:3e428dcc-23f1-4613-807b-e81317d34739" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 26 Apr 2015 20:36:54 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9981/providers/Microsoft.Network/virtualnetworks/vnetpstestrg9981?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzk5ODE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vnetpstestrg9981\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9981/providers/Microsoft.Network/virtualNetworks/vnetpstestrg9981\",\r\n \"etag\": \"W/\\\"ae16c146-1be6-4b0c-a065-3ae7c16d0093\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\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 \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg9981\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9981/providers/Microsoft.Network/virtualNetworks/vnetpstestrg9981/subnets/subnetpstestrg9981\",\r\n \"etag\": \"W/\\\"ae16c146-1be6-4b0c-a065-3ae7c16d0093\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"eastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "962" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b69d09c4-26f9-4535-b6f9-8f3602612222" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"ae16c146-1be6-4b0c-a065-3ae7c16d0093\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31951" + ], + "x-ms-correlation-request-id": [ + "72b50ec3-abb6-4a6b-8263-c74008084878" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T203702Z:72b50ec3-abb6-4a6b-8263-c74008084878" + ], + "Date": [ + "Sun, 26 Apr 2015 20:37:02 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9981/providers/Microsoft.Network/virtualnetworks/vnetpstestrg9981?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzk5ODE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vnetpstestrg9981\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9981/providers/Microsoft.Network/virtualNetworks/vnetpstestrg9981\",\r\n \"etag\": \"W/\\\"ae16c146-1be6-4b0c-a065-3ae7c16d0093\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\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 \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg9981\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9981/providers/Microsoft.Network/virtualNetworks/vnetpstestrg9981/subnets/subnetpstestrg9981\",\r\n \"etag\": \"W/\\\"ae16c146-1be6-4b0c-a065-3ae7c16d0093\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"eastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "962" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "9b7e07d0-aad7-4618-af5a-1d70b14882eb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"ae16c146-1be6-4b0c-a065-3ae7c16d0093\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31950" + ], + "x-ms-correlation-request-id": [ + "5d33c751-244e-4557-92a0-1444e4cb8a44" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T203702Z:5d33c751-244e-4557-92a0-1444e4cb8a44" + ], + "Date": [ + "Sun, 26 Apr 2015 20:37:02 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9981/providers/Microsoft.Network/virtualnetworks/vnetpstestrg9981?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzk5ODE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "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 \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": []\r\n },\r\n \"name\": \"subnetpstestrg9981\"\r\n }\r\n ]\r\n },\r\n \"name\": \"vnetpstestrg9981\",\r\n \"type\": \"microsoft.network/virtualNetworks\",\r\n \"location\": \"eastasia\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "502" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vnetpstestrg9981\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9981/providers/Microsoft.Network/virtualNetworks/vnetpstestrg9981\",\r\n \"etag\": \"W/\\\"fee001b3-d312-48dc-a0f1-fa5ccc230395\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\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 \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg9981\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9981/providers/Microsoft.Network/virtualNetworks/vnetpstestrg9981/subnets/subnetpstestrg9981\",\r\n \"etag\": \"W/\\\"fee001b3-d312-48dc-a0f1-fa5ccc230395\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"eastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "960" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "e8c95874-1490-4fac-995b-11d1f94d847a" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/eastasia/operations/e8c95874-1490-4fac-995b-11d1f94d847a?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1191" + ], + "x-ms-correlation-request-id": [ + "3edb6104-71a9-4f56-9a86-c9a10b51f603" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T203701Z:3edb6104-71a9-4f56-9a86-c9a10b51f603" + ], + "Date": [ + "Sun, 26 Apr 2015 20:37:00 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/eastasia/operations/e8c95874-1490-4fac-995b-11d1f94d847a?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9lOGM5NTg3NC0xNDkwLTRmYWMtOTk1Yi0xMWQxZjk0ZDg0N2E/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-05-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "0b96bc4e-8e6d-42a6-a11f-bb1f14100754" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31952" + ], + "x-ms-correlation-request-id": [ + "2021a2b7-1152-4cf2-a48b-aa0eb0d8ff31" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T203702Z:2021a2b7-1152-4cf2-a48b-aa0eb0d8ff31" + ], + "Date": [ + "Sun, 26 Apr 2015 20:37:02 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9981/providers/Microsoft.Network/publicIPAddresses/pubippstestrg9981/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHViaXBwc3Rlc3RyZzk5ODEvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "69" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "bdf6d5b4-add2-4c85-bb7d-0d68a746c8be" + ], + "x-ms-correlation-request-id": [ + "bdf6d5b4-add2-4c85-bb7d-0d68a746c8be" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T203703Z:bdf6d5b4-add2-4c85-bb7d-0d68a746c8be" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 26 Apr 2015 20:37:03 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9981/providers/Microsoft.Network/publicIPAddresses/pubippstestrg9981/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHViaXBwc3Rlc3RyZzk5ODEvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pubippstestrg9981\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9981/providers/Microsoft.Network/publicIPAddresses/pubippstestrg9981\",\r\n \"etag\": \"W/\\\"a0837c06-8ffd-4cb9-b0e2-b62322b54e9b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubippstestrg9981\",\r\n \"fqdn\": \"pubippstestrg9981.eastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"eastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "554" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c6d90db9-5257-4132-b3a5-cf856dd2e2bf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"a0837c06-8ffd-4cb9-b0e2-b62322b54e9b\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31947" + ], + "x-ms-correlation-request-id": [ + "60b83677-6f14-46c8-b8b7-257de0379297" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T203711Z:60b83677-6f14-46c8-b8b7-257de0379297" + ], + "Date": [ + "Sun, 26 Apr 2015 20:37:11 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9981/providers/Microsoft.Network/publicIPAddresses/pubippstestrg9981/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHViaXBwc3Rlc3RyZzk5ODEvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pubippstestrg9981\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9981/providers/Microsoft.Network/publicIPAddresses/pubippstestrg9981\",\r\n \"etag\": \"W/\\\"a0837c06-8ffd-4cb9-b0e2-b62322b54e9b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubippstestrg9981\",\r\n \"fqdn\": \"pubippstestrg9981.eastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"eastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "554" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "2010ab0f-9078-4f75-8408-413089e00db9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"a0837c06-8ffd-4cb9-b0e2-b62322b54e9b\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31946" + ], + "x-ms-correlation-request-id": [ + "6c6981a2-3e74-4d37-8b93-e1f988be5e37" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T203711Z:6c6981a2-3e74-4d37-8b93-e1f988be5e37" + ], + "Date": [ + "Sun, 26 Apr 2015 20:37:11 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9981/providers/Microsoft.Network/publicIPAddresses/pubippstestrg9981/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHViaXBwc3Rlc3RyZzk5ODEvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubippstestrg9981\"\r\n }\r\n },\r\n \"name\": \"pubippstestrg9981\",\r\n \"type\": \"microsoft.network/publicIPAddresses\",\r\n \"location\": \"eastasia\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "256" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pubippstestrg9981\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9981/providers/Microsoft.Network/publicIPAddresses/pubippstestrg9981\",\r\n \"etag\": \"W/\\\"df5d57a2-4797-4ec8-b96e-b892af24a3b0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubippstestrg9981\",\r\n \"fqdn\": \"pubippstestrg9981.eastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"eastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "553" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "34aab64c-5139-4e74-b58a-1b95f9d289e0" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/eastasia/operations/34aab64c-5139-4e74-b58a-1b95f9d289e0?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1190" + ], + "x-ms-correlation-request-id": [ + "89852acc-f3e8-4105-88a3-d1d9ca2c7f2e" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T203710Z:89852acc-f3e8-4105-88a3-d1d9ca2c7f2e" + ], + "Date": [ + "Sun, 26 Apr 2015 20:37:10 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/eastasia/operations/34aab64c-5139-4e74-b58a-1b95f9d289e0?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy8zNGFhYjY0Yy01MTM5LTRlNzQtYjU4YS0xYjk1ZjlkMjg5ZTA/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-05-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "83dcb61a-2550-4e2d-a9f0-b775998b4002" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31948" + ], + "x-ms-correlation-request-id": [ + "2e28593d-2acf-43d7-a5e9-52e383202cfa" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T203711Z:2e28593d-2acf-43d7-a5e9-52e383202cfa" + ], + "Date": [ + "Sun, 26 Apr 2015 20:37:11 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9981/providers/Microsoft.Network/networkInterfaces/nicpstestrg9981?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljcHN0ZXN0cmc5OTgxP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "69" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "e45e4dba-a4c4-42ac-aee9-3f2c45978554" + ], + "x-ms-correlation-request-id": [ + "e45e4dba-a4c4-42ac-aee9-3f2c45978554" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T203712Z:e45e4dba-a4c4-42ac-aee9-3f2c45978554" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 26 Apr 2015 20:37:11 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9981/providers/Microsoft.Network/networkInterfaces/nicpstestrg9981?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljcHN0ZXN0cmc5OTgxP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"nicpstestrg9981\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9981/providers/Microsoft.Network/networkInterfaces/nicpstestrg9981\",\r\n \"etag\": \"W/\\\"7107fd0c-2136-4caf-bd4d-3c555bef02e3\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9981/providers/Microsoft.Network/networkInterfaces/nicpstestrg9981/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"7107fd0c-2136-4caf-bd4d-3c555bef02e3\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9981/providers/Microsoft.Network/publicIPAddresses/pubippstestrg9981\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9981/providers/Microsoft.Network/virtualNetworks/vnetpstestrg9981/subnets/subnetpstestrg9981\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"eastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1302" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "00bf0f52-2c48-4e21-af28-0a8dd062a830" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"7107fd0c-2136-4caf-bd4d-3c555bef02e3\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31943" + ], + "x-ms-correlation-request-id": [ + "e0905b6d-4286-43c2-9bad-0ff83ab6bc90" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T203718Z:e0905b6d-4286-43c2-9bad-0ff83ab6bc90" + ], + "Date": [ + "Sun, 26 Apr 2015 20:37:18 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9981/providers/Microsoft.Network/networkInterfaces/nicpstestrg9981?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljcHN0ZXN0cmc5OTgxP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"nicpstestrg9981\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9981/providers/Microsoft.Network/networkInterfaces/nicpstestrg9981\",\r\n \"etag\": \"W/\\\"7107fd0c-2136-4caf-bd4d-3c555bef02e3\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9981/providers/Microsoft.Network/networkInterfaces/nicpstestrg9981/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"7107fd0c-2136-4caf-bd4d-3c555bef02e3\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9981/providers/Microsoft.Network/publicIPAddresses/pubippstestrg9981\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9981/providers/Microsoft.Network/virtualNetworks/vnetpstestrg9981/subnets/subnetpstestrg9981\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"eastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1302" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "1ec73f9c-442f-4408-b408-43ae7780ab69" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"7107fd0c-2136-4caf-bd4d-3c555bef02e3\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31942" + ], + "x-ms-correlation-request-id": [ + "c2995875-5eda-4ede-a170-c83cc89635ed" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T203719Z:c2995875-5eda-4ede-a170-c83cc89635ed" + ], + "Date": [ + "Sun, 26 Apr 2015 20:37:18 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9981/providers/Microsoft.Network/networkInterfaces/nicpstestrg9981?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTk4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljcHN0ZXN0cmc5OTgxP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9981/providers/Microsoft.Network/virtualNetworks/vnetpstestrg9981/subnets/subnetpstestrg9981\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9981/providers/Microsoft.Network/publicIPAddresses/pubippstestrg9981\"\r\n },\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": []\r\n },\r\n \"name\": \"ipconfig1\"\r\n }\r\n ],\r\n \"primary\": false\r\n },\r\n \"name\": \"nicpstestrg9981\",\r\n \"type\": \"microsoft.network/networkInterfaces\",\r\n \"location\": \"eastasia\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "859" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"nicpstestrg9981\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9981/providers/Microsoft.Network/networkInterfaces/nicpstestrg9981\",\r\n \"etag\": \"W/\\\"7107fd0c-2136-4caf-bd4d-3c555bef02e3\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9981/providers/Microsoft.Network/networkInterfaces/nicpstestrg9981/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"7107fd0c-2136-4caf-bd4d-3c555bef02e3\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9981/providers/Microsoft.Network/publicIPAddresses/pubippstestrg9981\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9981/providers/Microsoft.Network/virtualNetworks/vnetpstestrg9981/subnets/subnetpstestrg9981\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"eastasia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1302" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "39eaa898-f149-4005-b935-1a2e7df007f9" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/eastasia/operations/39eaa898-f149-4005-b935-1a2e7df007f9?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1189" + ], + "x-ms-correlation-request-id": [ + "1339e42d-4874-4923-b63a-8e9095afa6f8" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T203717Z:1339e42d-4874-4923-b63a-8e9095afa6f8" + ], + "Date": [ + "Sun, 26 Apr 2015 20:37:16 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/eastasia/operations/39eaa898-f149-4005-b935-1a2e7df007f9?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy8zOWVhYTg5OC1mMTQ5LTQwMDUtYjkzNS0xYTJlN2RmMDA3Zjk/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-05-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "075a418e-ee46-4f14-a2ed-0e03d06869b6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31944" + ], + "x-ms-correlation-request-id": [ + "abb11393-fbe2-410f-9fd2-20a0e18c6e9f" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T203718Z:abb11393-fbe2-410f-9fd2-20a0e18c6e9f" + ], + "Date": [ + "Sun, 26 Apr 2015 20:37:17 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9981/providers/Microsoft.Storage/storageAccounts/stopstestrg9981?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTk4MS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnOTk4MT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "90" + ], + "x-ms-client-request-id": [ + "e1364f0f-c771-4140-95b0-4543cd0056ee" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "25" + ], + "x-ms-request-id": [ + "02f52a0d-7b4d-4810-b61e-380e3b140a11" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/02f52a0d-7b4d-4810-b61e-380e3b140a11?monitor=true&api-version=2015-05-01-preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "f1235ad7-cb16-47f6-a246-67f1f1007091" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T203727Z:f1235ad7-cb16-47f6-a246-67f1f1007091" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Sun, 26 Apr 2015 20:37:27 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/02f52a0d-7b4d-4810-b61e-380e3b140a11?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzAyZjUyYTBkLTdiNGQtNDgxMC1iNjFlLTM4MGUzYjE0MGExMT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7f8f8873-94c1-43eb-98c2-9582853ccf70" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "null", + "ResponseHeaders": { + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "25" + ], + "x-ms-request-id": [ + "f8bc9b55-be58-414b-a0ff-0d9eaeb1d1cb" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/02f52a0d-7b4d-4810-b61e-380e3b140a11?monitor=true&api-version=2015-05-01-preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31996" + ], + "x-ms-correlation-request-id": [ + "acf90783-bcd6-4eb1-a507-4659a63f1125" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T203728Z:acf90783-bcd6-4eb1-a507-4659a63f1125" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Sun, 26 Apr 2015 20:37:28 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/02f52a0d-7b4d-4810-b61e-380e3b140a11?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzAyZjUyYTBkLTdiNGQtNDgxMC1iNjFlLTM4MGUzYjE0MGExMT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6df32d62-a1a4-4fa7-9707-4adbc4bbce8d" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n },\r\n \"location\": \"East Asia\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "68" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "1021285d-8428-4979-9fb6-e1725f61ad25" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31995" + ], + "x-ms-correlation-request-id": [ + "e828fdc7-48f2-4184-ba58-6c30df87cd50" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T203753Z:e828fdc7-48f2-4184-ba58-6c30df87cd50" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Sun, 26 Apr 2015 20:37:52 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9981/providers/Microsoft.Storage/storageAccounts/stopstestrg9981?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTk4MS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnOTk4MT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1fdb0c6d-e47f-4ee5-8a16-755f40cf3c77" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9981/providers/Microsoft.Storage/storageAccounts/stopstestrg9981\",\r\n \"name\": \"stopstestrg9981\",\r\n \"location\": \"East Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stopstestrg9981.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg9981.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg9981.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"East Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"Southeast Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-04-26T20:37:25.2162707Z\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "683" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "4ec4bda4-e73d-41a5-a08b-8f3d2e41de52" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31994" + ], + "x-ms-correlation-request-id": [ + "069ef4bf-9ada-444c-b565-bc0b0d4a7d72" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T203753Z:069ef4bf-9ada-444c-b565-bc0b0d4a7d72" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Sun, 26 Apr 2015 20:37:52 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9981/providers/Microsoft.Storage/storageAccounts/stopstestrg9981?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTk4MS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnOTk4MT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3453b025-2000-41ca-9e0a-ea588e5d8366" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9981/providers/Microsoft.Storage/storageAccounts/stopstestrg9981\",\r\n \"name\": \"stopstestrg9981\",\r\n \"location\": \"East Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stopstestrg9981.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg9981.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg9981.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"East Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"Southeast Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-04-26T20:37:25.2162707Z\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "683" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "30c5e6f4-76c1-414b-8215-45368ef7b05e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31993" + ], + "x-ms-correlation-request-id": [ + "0f042c6d-1af8-4ac6-a487-d80ca250753d" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T203753Z:0f042c6d-1af8-4ac6-a487-d80ca250753d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Date": [ + "Sun, 26 Apr 2015 20:37:52 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/publishers/a10networks/artifacttypes/vmimage/offers/a10-vthunder-adc/skus/vthunder_byol/versions/1.0.0?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycy9hMTBuZXR3b3Jrcy9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2ExMC12dGh1bmRlci1hZGMvc2t1cy92dGh1bmRlcl9ieW9sL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"a10networks\",\r\n \"name\": \"vthunder_byol\",\r\n \"product\": \"a10-vthunder-adc\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastasia\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/a10networks/ArtifactTypes/VMImage/Offers/a10-vthunder-adc/Skus/vthunder_byol/Versions/1.0.0\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "506" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "7a073727-7ed5-41d1-b086-df5c56d6cafa" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31995" + ], + "x-ms-correlation-request-id": [ + "b4fda427-e8c0-45e7-a8d7-7529ea2cf6cc" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T203754Z:b4fda427-e8c0-45e7-a8d7-7529ea2cf6cc" + ], + "Date": [ + "Sun, 26 Apr 2015 20:37:54 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9981/providers/Microsoft.Compute/virtualMachines/vmpstestrg9981?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTk4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtcHN0ZXN0cmc5OTgxP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"plan\": {\r\n \"name\": \"vthunder_byol\",\r\n \"publisher\": \"a10networks\",\r\n \"product\": \"a10-vthunder-adc\"\r\n },\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"a10networks\",\r\n \"offer\": \"a10-vthunder-adc\",\r\n \"sku\": \"vthunder_byol\",\r\n \"version\": \"1.0.0\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"osDisk\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg9981.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"createOption\": \"FromImage\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123pstestrg9981\"\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9981/providers/Microsoft.Network/networkInterfaces/nicpstestrg9981\"\r\n }\r\n ]\r\n }\r\n },\r\n \"name\": \"vmpstestrg9981\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "1165" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"a10networks\",\r\n \"offer\": \"a10-vthunder-adc\",\r\n \"sku\": \"vthunder_byol\",\r\n \"version\": \"1.0.0\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg9981.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9981/providers/Microsoft.Network/networkInterfaces/nicpstestrg9981\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9981/providers/Microsoft.Compute/virtualMachines/vmpstestrg9981\",\r\n \"name\": \"vmpstestrg9981\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"plan\": {\r\n \"name\": \"vthunder_byol\",\r\n \"publisher\": \"a10networks\",\r\n \"product\": \"a10-vthunder-adc\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1425" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/de8dd625-10aa-4a5f-88e2-aa863c0f6304?api-version=2015-05-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "de8dd625-10aa-4a5f-88e2-aa863c0f6304" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "4ebb94eb-20f6-4e03-87ee-08ba3a6b5820" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T203804Z:4ebb94eb-20f6-4e03-87ee-08ba3a6b5820" + ], + "Date": [ + "Sun, 26 Apr 2015 20:38:03 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/de8dd625-10aa-4a5f-88e2-aa863c0f6304?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9kZThkZDYyNS0xMGFhLTRhNWYtODhlMi1hYTg2M2MwZjYzMDQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"de8dd625-10aa-4a5f-88e2-aa863c0f6304\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-26T13:38:01.6838581-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "4d2236d8-2077-4aad-b241-47bccf0360f3" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31994" + ], + "x-ms-correlation-request-id": [ + "fe992d93-f45a-4869-a4b6-56326ad50ad2" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T203805Z:fe992d93-f45a-4869-a4b6-56326ad50ad2" + ], + "Date": [ + "Sun, 26 Apr 2015 20:38:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/de8dd625-10aa-4a5f-88e2-aa863c0f6304?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9kZThkZDYyNS0xMGFhLTRhNWYtODhlMi1hYTg2M2MwZjYzMDQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"de8dd625-10aa-4a5f-88e2-aa863c0f6304\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-26T13:38:01.6838581-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "1e2ceaab-7165-43bb-84a5-15b64292e327" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31993" + ], + "x-ms-correlation-request-id": [ + "0b15b992-ddfd-4d61-885d-57466c28ffd5" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T203836Z:0b15b992-ddfd-4d61-885d-57466c28ffd5" + ], + "Date": [ + "Sun, 26 Apr 2015 20:38:35 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/de8dd625-10aa-4a5f-88e2-aa863c0f6304?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9kZThkZDYyNS0xMGFhLTRhNWYtODhlMi1hYTg2M2MwZjYzMDQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"de8dd625-10aa-4a5f-88e2-aa863c0f6304\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-26T13:38:01.6838581-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "68fb8d3f-acbc-4cc6-a051-3fa9f7c9f61c" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31992" + ], + "x-ms-correlation-request-id": [ + "4902d6b5-edb3-4e04-81ae-581aecc36193" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T203907Z:4902d6b5-edb3-4e04-81ae-581aecc36193" + ], + "Date": [ + "Sun, 26 Apr 2015 20:39:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/de8dd625-10aa-4a5f-88e2-aa863c0f6304?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9kZThkZDYyNS0xMGFhLTRhNWYtODhlMi1hYTg2M2MwZjYzMDQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"de8dd625-10aa-4a5f-88e2-aa863c0f6304\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-26T13:38:01.6838581-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "82bcc45c-eb20-4e52-bd03-733ee687b9ca" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31991" + ], + "x-ms-correlation-request-id": [ + "6b4417e1-7d56-450e-a98f-ca9d1cc9733e" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T203937Z:6b4417e1-7d56-450e-a98f-ca9d1cc9733e" + ], + "Date": [ + "Sun, 26 Apr 2015 20:39:37 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/de8dd625-10aa-4a5f-88e2-aa863c0f6304?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9kZThkZDYyNS0xMGFhLTRhNWYtODhlMi1hYTg2M2MwZjYzMDQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"de8dd625-10aa-4a5f-88e2-aa863c0f6304\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-26T13:38:01.6838581-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "574ad773-4aa4-4850-ac7d-48a2adeb9c05" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31990" + ], + "x-ms-correlation-request-id": [ + "686d7ac3-3633-479a-94de-5d1056b0d224" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T204008Z:686d7ac3-3633-479a-94de-5d1056b0d224" + ], + "Date": [ + "Sun, 26 Apr 2015 20:40:08 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/de8dd625-10aa-4a5f-88e2-aa863c0f6304?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9kZThkZDYyNS0xMGFhLTRhNWYtODhlMi1hYTg2M2MwZjYzMDQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"de8dd625-10aa-4a5f-88e2-aa863c0f6304\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-26T13:38:01.6838581-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "cfcda3cb-a5f1-4532-8929-75411a8359b4" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31989" + ], + "x-ms-correlation-request-id": [ + "94395cd2-627e-4282-be99-5d1ab63b56f2" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T204039Z:94395cd2-627e-4282-be99-5d1ab63b56f2" + ], + "Date": [ + "Sun, 26 Apr 2015 20:40:39 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/de8dd625-10aa-4a5f-88e2-aa863c0f6304?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9kZThkZDYyNS0xMGFhLTRhNWYtODhlMi1hYTg2M2MwZjYzMDQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"de8dd625-10aa-4a5f-88e2-aa863c0f6304\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-26T13:38:01.6838581-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "e5391623-5817-405f-a56a-3a17ad0cf22a" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31988" + ], + "x-ms-correlation-request-id": [ + "76756635-8546-407b-aaa9-cb2bb32a7070" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T204110Z:76756635-8546-407b-aaa9-cb2bb32a7070" + ], + "Date": [ + "Sun, 26 Apr 2015 20:41:10 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/de8dd625-10aa-4a5f-88e2-aa863c0f6304?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9kZThkZDYyNS0xMGFhLTRhNWYtODhlMi1hYTg2M2MwZjYzMDQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"de8dd625-10aa-4a5f-88e2-aa863c0f6304\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-26T13:38:01.6838581-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "bb74ffc2-20b5-408b-ab26-ae4b23b6aa54" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31987" + ], + "x-ms-correlation-request-id": [ + "15f57332-5adc-49d8-9d8c-7745dad3a047" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T204141Z:15f57332-5adc-49d8-9d8c-7745dad3a047" + ], + "Date": [ + "Sun, 26 Apr 2015 20:41:41 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/de8dd625-10aa-4a5f-88e2-aa863c0f6304?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9kZThkZDYyNS0xMGFhLTRhNWYtODhlMi1hYTg2M2MwZjYzMDQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"de8dd625-10aa-4a5f-88e2-aa863c0f6304\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-26T13:38:01.6838581-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "daec30a4-3c70-46ca-ac1c-f90b85ebd7bd" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31986" + ], + "x-ms-correlation-request-id": [ + "b29f980a-df98-44c5-886d-6d1d7f1ecee5" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T204212Z:b29f980a-df98-44c5-886d-6d1d7f1ecee5" + ], + "Date": [ + "Sun, 26 Apr 2015 20:42:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/de8dd625-10aa-4a5f-88e2-aa863c0f6304?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9kZThkZDYyNS0xMGFhLTRhNWYtODhlMi1hYTg2M2MwZjYzMDQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"de8dd625-10aa-4a5f-88e2-aa863c0f6304\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-26T13:38:01.6838581-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "6e655d36-d3b1-42c6-8a0c-1e7688923c8e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31985" + ], + "x-ms-correlation-request-id": [ + "1f511d85-b95b-455a-bc83-e1bd25a8ef4c" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T204243Z:1f511d85-b95b-455a-bc83-e1bd25a8ef4c" + ], + "Date": [ + "Sun, 26 Apr 2015 20:42:43 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/de8dd625-10aa-4a5f-88e2-aa863c0f6304?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9kZThkZDYyNS0xMGFhLTRhNWYtODhlMi1hYTg2M2MwZjYzMDQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"de8dd625-10aa-4a5f-88e2-aa863c0f6304\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-26T13:38:01.6838581-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d9363e8f-d717-4e39-812d-88acef856b03" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31984" + ], + "x-ms-correlation-request-id": [ + "5904fa36-cb58-4412-855c-15b27fa63cf8" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T204314Z:5904fa36-cb58-4412-855c-15b27fa63cf8" + ], + "Date": [ + "Sun, 26 Apr 2015 20:43:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/de8dd625-10aa-4a5f-88e2-aa863c0f6304?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9kZThkZDYyNS0xMGFhLTRhNWYtODhlMi1hYTg2M2MwZjYzMDQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"de8dd625-10aa-4a5f-88e2-aa863c0f6304\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-26T13:38:01.6838581-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d04d9994-984b-4f26-b003-5dbf64509540" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31983" + ], + "x-ms-correlation-request-id": [ + "1163a608-3ee0-4124-854b-529e1fe9d272" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T204345Z:1163a608-3ee0-4124-854b-529e1fe9d272" + ], + "Date": [ + "Sun, 26 Apr 2015 20:43:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/de8dd625-10aa-4a5f-88e2-aa863c0f6304?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9kZThkZDYyNS0xMGFhLTRhNWYtODhlMi1hYTg2M2MwZjYzMDQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"de8dd625-10aa-4a5f-88e2-aa863c0f6304\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-26T13:38:01.6838581-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "211c8b85-87c7-40ee-a8a3-ca3e233e20ce" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31982" + ], + "x-ms-correlation-request-id": [ + "0b737a05-e48e-4d23-a39a-233d04777aae" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T204416Z:0b737a05-e48e-4d23-a39a-233d04777aae" + ], + "Date": [ + "Sun, 26 Apr 2015 20:44:15 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/de8dd625-10aa-4a5f-88e2-aa863c0f6304?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9kZThkZDYyNS0xMGFhLTRhNWYtODhlMi1hYTg2M2MwZjYzMDQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"de8dd625-10aa-4a5f-88e2-aa863c0f6304\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-26T13:38:01.6838581-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "56b1f2f1-3e33-4dd1-bf69-002631b7a08a" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31981" + ], + "x-ms-correlation-request-id": [ + "ee1da616-b51d-46a0-abe0-1101b8f354ca" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T204447Z:ee1da616-b51d-46a0-abe0-1101b8f354ca" + ], + "Date": [ + "Sun, 26 Apr 2015 20:44:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/de8dd625-10aa-4a5f-88e2-aa863c0f6304?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9kZThkZDYyNS0xMGFhLTRhNWYtODhlMi1hYTg2M2MwZjYzMDQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"de8dd625-10aa-4a5f-88e2-aa863c0f6304\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-26T13:38:01.6838581-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "567c3819-ef5c-4f1b-a731-92b8fe967ee7" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31980" + ], + "x-ms-correlation-request-id": [ + "9fbd2351-5f9b-42f6-a5fe-b283044f5c23" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T204518Z:9fbd2351-5f9b-42f6-a5fe-b283044f5c23" + ], + "Date": [ + "Sun, 26 Apr 2015 20:45:17 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/de8dd625-10aa-4a5f-88e2-aa863c0f6304?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9kZThkZDYyNS0xMGFhLTRhNWYtODhlMi1hYTg2M2MwZjYzMDQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"de8dd625-10aa-4a5f-88e2-aa863c0f6304\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-26T13:38:01.6838581-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "45d80bd9-df83-4bdd-81d8-ae10b33b6b02" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31979" + ], + "x-ms-correlation-request-id": [ + "3efaa987-74a3-443f-a752-ca99f984dc46" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T204549Z:3efaa987-74a3-443f-a752-ca99f984dc46" + ], + "Date": [ + "Sun, 26 Apr 2015 20:45:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/de8dd625-10aa-4a5f-88e2-aa863c0f6304?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9kZThkZDYyNS0xMGFhLTRhNWYtODhlMi1hYTg2M2MwZjYzMDQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"de8dd625-10aa-4a5f-88e2-aa863c0f6304\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-26T13:38:01.6838581-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "091d66fc-cb88-4978-a7aa-f0982043af01" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31982" + ], + "x-ms-correlation-request-id": [ + "197a28ec-e46f-484d-8555-0465272dcb36" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T204720Z:197a28ec-e46f-484d-8555-0465272dcb36" + ], + "Date": [ + "Sun, 26 Apr 2015 20:47:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/de8dd625-10aa-4a5f-88e2-aa863c0f6304?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9kZThkZDYyNS0xMGFhLTRhNWYtODhlMi1hYTg2M2MwZjYzMDQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"de8dd625-10aa-4a5f-88e2-aa863c0f6304\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-26T13:38:01.6838581-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "4c210177-8346-41a7-8cfd-a8597800235c" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31981" + ], + "x-ms-correlation-request-id": [ + "0972e2ff-3578-4ce2-80f6-0125224574bc" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T204751Z:0972e2ff-3578-4ce2-80f6-0125224574bc" + ], + "Date": [ + "Sun, 26 Apr 2015 20:47:51 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/de8dd625-10aa-4a5f-88e2-aa863c0f6304?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9kZThkZDYyNS0xMGFhLTRhNWYtODhlMi1hYTg2M2MwZjYzMDQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"de8dd625-10aa-4a5f-88e2-aa863c0f6304\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-26T13:38:01.6838581-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "fdfac42c-c464-4e4a-a14c-6fc749159c7a" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31980" + ], + "x-ms-correlation-request-id": [ + "0b536a84-a783-4481-95d6-a90fc7d7bbf6" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T204822Z:0b536a84-a783-4481-95d6-a90fc7d7bbf6" + ], + "Date": [ + "Sun, 26 Apr 2015 20:48:21 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/de8dd625-10aa-4a5f-88e2-aa863c0f6304?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9kZThkZDYyNS0xMGFhLTRhNWYtODhlMi1hYTg2M2MwZjYzMDQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"de8dd625-10aa-4a5f-88e2-aa863c0f6304\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-26T13:38:01.6838581-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "717982cc-60fb-4b1e-90c7-50abef08d1af" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31979" + ], + "x-ms-correlation-request-id": [ + "8d382ac5-fbb0-4762-86d8-8b0331c90686" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T204853Z:8d382ac5-fbb0-4762-86d8-8b0331c90686" + ], + "Date": [ + "Sun, 26 Apr 2015 20:48:52 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/de8dd625-10aa-4a5f-88e2-aa863c0f6304?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9kZThkZDYyNS0xMGFhLTRhNWYtODhlMi1hYTg2M2MwZjYzMDQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"de8dd625-10aa-4a5f-88e2-aa863c0f6304\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-26T13:38:01.6838581-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d77d6be4-08c0-4601-9f10-0a004719a6ff" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31978" + ], + "x-ms-correlation-request-id": [ + "942617a1-286c-4428-91d7-c97e86b82b19" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T204924Z:942617a1-286c-4428-91d7-c97e86b82b19" + ], + "Date": [ + "Sun, 26 Apr 2015 20:49:23 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/de8dd625-10aa-4a5f-88e2-aa863c0f6304?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9kZThkZDYyNS0xMGFhLTRhNWYtODhlMi1hYTg2M2MwZjYzMDQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"de8dd625-10aa-4a5f-88e2-aa863c0f6304\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-26T13:38:01.6838581-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d69439cb-3f55-452b-a83a-c0fdcbf27ffd" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31977" + ], + "x-ms-correlation-request-id": [ + "bd910288-3a4c-421f-ab6b-3e6533bffefc" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T204955Z:bd910288-3a4c-421f-ab6b-3e6533bffefc" + ], + "Date": [ + "Sun, 26 Apr 2015 20:49:54 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/de8dd625-10aa-4a5f-88e2-aa863c0f6304?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9kZThkZDYyNS0xMGFhLTRhNWYtODhlMi1hYTg2M2MwZjYzMDQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"de8dd625-10aa-4a5f-88e2-aa863c0f6304\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-26T13:38:01.6838581-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "afd082b8-6d3e-4f76-9a38-2342b0f71c4c" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31976" + ], + "x-ms-correlation-request-id": [ + "58f07c94-9603-4f33-bb29-fa8d85966b0e" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T205026Z:58f07c94-9603-4f33-bb29-fa8d85966b0e" + ], + "Date": [ + "Sun, 26 Apr 2015 20:50:25 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/de8dd625-10aa-4a5f-88e2-aa863c0f6304?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9kZThkZDYyNS0xMGFhLTRhNWYtODhlMi1hYTg2M2MwZjYzMDQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"de8dd625-10aa-4a5f-88e2-aa863c0f6304\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-26T13:38:01.6838581-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "69040dea-fdff-44e6-9d7b-033ca99aef61" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31975" + ], + "x-ms-correlation-request-id": [ + "565cdb1e-ff16-4ce1-a00f-073f3f38d9fd" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T205057Z:565cdb1e-ff16-4ce1-a00f-073f3f38d9fd" + ], + "Date": [ + "Sun, 26 Apr 2015 20:50:57 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/de8dd625-10aa-4a5f-88e2-aa863c0f6304?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9kZThkZDYyNS0xMGFhLTRhNWYtODhlMi1hYTg2M2MwZjYzMDQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"de8dd625-10aa-4a5f-88e2-aa863c0f6304\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-26T13:38:01.6838581-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "683dd0ad-ea72-4a67-be0e-eeefd6f4bc75" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31974" + ], + "x-ms-correlation-request-id": [ + "f4ce50f6-2de3-439d-b190-a8f39e304bcd" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T205129Z:f4ce50f6-2de3-439d-b190-a8f39e304bcd" + ], + "Date": [ + "Sun, 26 Apr 2015 20:51:29 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/de8dd625-10aa-4a5f-88e2-aa863c0f6304?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9kZThkZDYyNS0xMGFhLTRhNWYtODhlMi1hYTg2M2MwZjYzMDQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"de8dd625-10aa-4a5f-88e2-aa863c0f6304\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-26T13:38:01.6838581-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b1b6bd3b-feb1-4d7d-bb32-b0f183a20542" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31973" + ], + "x-ms-correlation-request-id": [ + "75205cff-2095-42b5-9b5f-688d67cbfc52" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T205201Z:75205cff-2095-42b5-9b5f-688d67cbfc52" + ], + "Date": [ + "Sun, 26 Apr 2015 20:52:01 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/de8dd625-10aa-4a5f-88e2-aa863c0f6304?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9kZThkZDYyNS0xMGFhLTRhNWYtODhlMi1hYTg2M2MwZjYzMDQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"de8dd625-10aa-4a5f-88e2-aa863c0f6304\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-26T13:38:01.6838581-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "785645e8-e9e7-4b56-939f-36f59dd58181" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31972" + ], + "x-ms-correlation-request-id": [ + "ee10a6fc-8be8-44a1-9b8f-735216e396a0" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T205232Z:ee10a6fc-8be8-44a1-9b8f-735216e396a0" + ], + "Date": [ + "Sun, 26 Apr 2015 20:52:32 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/de8dd625-10aa-4a5f-88e2-aa863c0f6304?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9kZThkZDYyNS0xMGFhLTRhNWYtODhlMi1hYTg2M2MwZjYzMDQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"de8dd625-10aa-4a5f-88e2-aa863c0f6304\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-26T13:38:01.6838581-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "2f9ff969-f0a2-4afa-a4aa-1771a3303894" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31971" + ], + "x-ms-correlation-request-id": [ + "11abec13-6563-4986-ba8b-3963f247b228" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T205303Z:11abec13-6563-4986-ba8b-3963f247b228" + ], + "Date": [ + "Sun, 26 Apr 2015 20:53:02 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/de8dd625-10aa-4a5f-88e2-aa863c0f6304?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9kZThkZDYyNS0xMGFhLTRhNWYtODhlMi1hYTg2M2MwZjYzMDQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"de8dd625-10aa-4a5f-88e2-aa863c0f6304\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-26T13:38:01.6838581-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ff003dfd-d3b0-4ade-a42a-fe4d7ffc611a" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31970" + ], + "x-ms-correlation-request-id": [ + "a1e4d3c1-58ae-4833-9d5a-b336db096c27" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T205335Z:a1e4d3c1-58ae-4833-9d5a-b336db096c27" + ], + "Date": [ + "Sun, 26 Apr 2015 20:53:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/de8dd625-10aa-4a5f-88e2-aa863c0f6304?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9kZThkZDYyNS0xMGFhLTRhNWYtODhlMi1hYTg2M2MwZjYzMDQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"de8dd625-10aa-4a5f-88e2-aa863c0f6304\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-26T13:38:01.6838581-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "2b795c0f-76ea-4ffc-b05d-5ebdfed381df" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31969" + ], + "x-ms-correlation-request-id": [ + "d19706b6-542c-4134-a2c3-02f78ac532a0" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T205406Z:d19706b6-542c-4134-a2c3-02f78ac532a0" + ], + "Date": [ + "Sun, 26 Apr 2015 20:54:05 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/de8dd625-10aa-4a5f-88e2-aa863c0f6304?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9kZThkZDYyNS0xMGFhLTRhNWYtODhlMi1hYTg2M2MwZjYzMDQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"de8dd625-10aa-4a5f-88e2-aa863c0f6304\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-26T13:38:01.6838581-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d4eaae0e-6905-488d-be84-845171b00752" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31968" + ], + "x-ms-correlation-request-id": [ + "eb6087c6-cd52-4dbf-8113-647eb2130517" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T205437Z:eb6087c6-cd52-4dbf-8113-647eb2130517" + ], + "Date": [ + "Sun, 26 Apr 2015 20:54:36 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/de8dd625-10aa-4a5f-88e2-aa863c0f6304?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9kZThkZDYyNS0xMGFhLTRhNWYtODhlMi1hYTg2M2MwZjYzMDQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"de8dd625-10aa-4a5f-88e2-aa863c0f6304\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-26T13:38:01.6838581-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "624f1751-10d9-4fc3-8a8f-0d2930770b75" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31967" + ], + "x-ms-correlation-request-id": [ + "d4587923-19c6-455b-beed-96c62e4c8309" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T205508Z:d4587923-19c6-455b-beed-96c62e4c8309" + ], + "Date": [ + "Sun, 26 Apr 2015 20:55:07 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/de8dd625-10aa-4a5f-88e2-aa863c0f6304?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9kZThkZDYyNS0xMGFhLTRhNWYtODhlMi1hYTg2M2MwZjYzMDQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"de8dd625-10aa-4a5f-88e2-aa863c0f6304\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-26T13:38:01.6838581-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b0d3032a-131d-405b-b144-7fd03e6469bc" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31966" + ], + "x-ms-correlation-request-id": [ + "487001f9-737c-4ae4-ba87-1bf26133cc0e" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T205539Z:487001f9-737c-4ae4-ba87-1bf26133cc0e" + ], + "Date": [ + "Sun, 26 Apr 2015 20:55:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/de8dd625-10aa-4a5f-88e2-aa863c0f6304?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9kZThkZDYyNS0xMGFhLTRhNWYtODhlMi1hYTg2M2MwZjYzMDQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"de8dd625-10aa-4a5f-88e2-aa863c0f6304\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-26T13:38:01.6838581-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "94b1f939-4fb7-4f04-80a1-adf8262ff4a8" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31965" + ], + "x-ms-correlation-request-id": [ + "c931619e-ba23-4207-90e2-27d9ff1a7076" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T205610Z:c931619e-ba23-4207-90e2-27d9ff1a7076" + ], + "Date": [ + "Sun, 26 Apr 2015 20:56:09 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/de8dd625-10aa-4a5f-88e2-aa863c0f6304?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9kZThkZDYyNS0xMGFhLTRhNWYtODhlMi1hYTg2M2MwZjYzMDQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"de8dd625-10aa-4a5f-88e2-aa863c0f6304\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-26T13:38:01.6838581-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "61079f57-7565-47fb-97d7-2ba742f3684f" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31964" + ], + "x-ms-correlation-request-id": [ + "eef6fa0c-6b0f-4d64-b349-67a50b0fb2ef" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T205640Z:eef6fa0c-6b0f-4d64-b349-67a50b0fb2ef" + ], + "Date": [ + "Sun, 26 Apr 2015 20:56:40 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/de8dd625-10aa-4a5f-88e2-aa863c0f6304?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9kZThkZDYyNS0xMGFhLTRhNWYtODhlMi1hYTg2M2MwZjYzMDQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"de8dd625-10aa-4a5f-88e2-aa863c0f6304\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-26T13:38:01.6838581-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b9b2baf0-d821-468a-895a-6cd0da62ae7e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31963" + ], + "x-ms-correlation-request-id": [ + "fce31842-5164-4e2e-a665-3b505af10cd9" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T205711Z:fce31842-5164-4e2e-a665-3b505af10cd9" + ], + "Date": [ + "Sun, 26 Apr 2015 20:57:11 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/de8dd625-10aa-4a5f-88e2-aa863c0f6304?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9kZThkZDYyNS0xMGFhLTRhNWYtODhlMi1hYTg2M2MwZjYzMDQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"de8dd625-10aa-4a5f-88e2-aa863c0f6304\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-26T13:38:01.6838581-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "94903698-620b-4c0b-a869-f4a149f05b00" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31962" + ], + "x-ms-correlation-request-id": [ + "2517dda0-8f67-4851-bc04-17b2fbdb9927" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T205742Z:2517dda0-8f67-4851-bc04-17b2fbdb9927" + ], + "Date": [ + "Sun, 26 Apr 2015 20:57:42 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/de8dd625-10aa-4a5f-88e2-aa863c0f6304?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9kZThkZDYyNS0xMGFhLTRhNWYtODhlMi1hYTg2M2MwZjYzMDQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"de8dd625-10aa-4a5f-88e2-aa863c0f6304\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-26T13:38:01.6838581-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "5bd5974c-cbe7-409b-99f3-78c45ad31d16" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31961" + ], + "x-ms-correlation-request-id": [ + "7beec4ca-f87f-4c37-aa3f-21a6c3980b2a" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T205813Z:7beec4ca-f87f-4c37-aa3f-21a6c3980b2a" + ], + "Date": [ + "Sun, 26 Apr 2015 20:58:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/de8dd625-10aa-4a5f-88e2-aa863c0f6304?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9kZThkZDYyNS0xMGFhLTRhNWYtODhlMi1hYTg2M2MwZjYzMDQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"de8dd625-10aa-4a5f-88e2-aa863c0f6304\",\r\n \"status\": \"Failed\",\r\n \"startTime\": \"2015-04-26T13:38:01.6838581-07:00\",\r\n \"endTime\": \"2015-04-26T13:58:20.2932356-07:00\",\r\n \"error\": {\r\n \"code\": \"OSProvisioningTimedOut\",\r\n \"message\": \"OS Provisioning for VM 'vmpstestrg9981' did not finish in the allotted time. The VM may still finish provisioning successfully. Please check provisioning state later.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "432" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "cc7e34ad-1c97-4a94-a024-1c9dce5358d6" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31960" + ], + "x-ms-correlation-request-id": [ + "6abbcf91-c0f0-447d-8f77-3441b4085909" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T205844Z:6abbcf91-c0f0-447d-8f77-3441b4085909" + ], + "Date": [ + "Sun, 26 Apr 2015 20:58:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg9981?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnOTk4MT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1192" + ], + "x-ms-request-id": [ + "6ce326e2-d332-4958-92ef-5c49e66d21d3" + ], + "x-ms-correlation-request-id": [ + "6ce326e2-d332-4958-92ef-5c49e66d21d3" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T205848Z:6ce326e2-d332-4958-92ef-5c49e66d21d3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 26 Apr 2015 20:58:48 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk5ODEtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk5ODEtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSems1T0RFdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31956" + ], + "x-ms-request-id": [ + "075f0253-a231-42b3-b054-0a31d8f5ee82" + ], + "x-ms-correlation-request-id": [ + "075f0253-a231-42b3-b054-0a31d8f5ee82" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T205849Z:075f0253-a231-42b3-b054-0a31d8f5ee82" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 26 Apr 2015 20:58:48 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk5ODEtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk5ODEtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSems1T0RFdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31955" + ], + "x-ms-request-id": [ + "e66193c3-8d66-43c2-b3e7-570e9fecc50e" + ], + "x-ms-correlation-request-id": [ + "e66193c3-8d66-43c2-b3e7-570e9fecc50e" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T205904Z:e66193c3-8d66-43c2-b3e7-570e9fecc50e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 26 Apr 2015 20:59:04 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk5ODEtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk5ODEtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSems1T0RFdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31954" + ], + "x-ms-request-id": [ + "2dd7a177-a0b6-40e7-8991-3bd354572445" + ], + "x-ms-correlation-request-id": [ + "2dd7a177-a0b6-40e7-8991-3bd354572445" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T205920Z:2dd7a177-a0b6-40e7-8991-3bd354572445" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 26 Apr 2015 20:59:19 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk5ODEtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk5ODEtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSems1T0RFdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31953" + ], + "x-ms-request-id": [ + "c38bf1af-2065-4030-9d2c-d8c2073e6020" + ], + "x-ms-correlation-request-id": [ + "c38bf1af-2065-4030-9d2c-d8c2073e6020" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T205935Z:c38bf1af-2065-4030-9d2c-d8c2073e6020" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 26 Apr 2015 20:59:35 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk5ODEtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk5ODEtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSems1T0RFdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31952" + ], + "x-ms-request-id": [ + "230d3134-0e77-4733-aa4e-488a2cfa5378" + ], + "x-ms-correlation-request-id": [ + "230d3134-0e77-4733-aa4e-488a2cfa5378" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T205951Z:230d3134-0e77-4733-aa4e-488a2cfa5378" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 26 Apr 2015 20:59:51 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk5ODEtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk5ODEtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSems1T0RFdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31969" + ], + "x-ms-request-id": [ + "b35a40c0-2b00-4195-9936-3adfe56ade84" + ], + "x-ms-correlation-request-id": [ + "b35a40c0-2b00-4195-9936-3adfe56ade84" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T210006Z:b35a40c0-2b00-4195-9936-3adfe56ade84" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 26 Apr 2015 21:00:06 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk5ODEtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk5ODEtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSems1T0RFdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31968" + ], + "x-ms-request-id": [ + "f0d385fc-47d5-406c-a719-6c068516c2d4" + ], + "x-ms-correlation-request-id": [ + "f0d385fc-47d5-406c-a719-6c068516c2d4" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T210022Z:f0d385fc-47d5-406c-a719-6c068516c2d4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 26 Apr 2015 21:00:22 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk5ODEtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk5ODEtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSems1T0RFdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31967" + ], + "x-ms-request-id": [ + "a2ebab43-c0ab-407d-9434-68e50f918cf2" + ], + "x-ms-correlation-request-id": [ + "a2ebab43-c0ab-407d-9434-68e50f918cf2" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T210037Z:a2ebab43-c0ab-407d-9434-68e50f918cf2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 26 Apr 2015 21:00:37 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk5ODEtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk5ODEtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSems1T0RFdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31966" + ], + "x-ms-request-id": [ + "ec9ecb38-2553-4473-b385-f04cc988bcc4" + ], + "x-ms-correlation-request-id": [ + "ec9ecb38-2553-4473-b385-f04cc988bcc4" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T210053Z:ec9ecb38-2553-4473-b385-f04cc988bcc4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 26 Apr 2015 21:00:53 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk5ODEtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk5ODEtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSems1T0RFdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31965" + ], + "x-ms-request-id": [ + "12fa8a1a-38df-46ce-8173-8baeadac2ad1" + ], + "x-ms-correlation-request-id": [ + "12fa8a1a-38df-46ce-8173-8baeadac2ad1" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T210108Z:12fa8a1a-38df-46ce-8173-8baeadac2ad1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 26 Apr 2015 21:01:08 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk5ODEtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk5ODEtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSems1T0RFdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31964" + ], + "x-ms-request-id": [ + "a5b2e517-05f8-4b4a-a702-6487c48b0c4a" + ], + "x-ms-correlation-request-id": [ + "a5b2e517-05f8-4b4a-a702-6487c48b0c4a" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T210124Z:a5b2e517-05f8-4b4a-a702-6487c48b0c4a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 26 Apr 2015 21:01:24 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk5ODEtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk5ODEtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSems1T0RFdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31963" + ], + "x-ms-request-id": [ + "e0489121-369b-4ccd-96e0-8c1de41af827" + ], + "x-ms-correlation-request-id": [ + "e0489121-369b-4ccd-96e0-8c1de41af827" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T210139Z:e0489121-369b-4ccd-96e0-8c1de41af827" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 26 Apr 2015 21:01:39 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk5ODEtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk5ODEtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSems1T0RFdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31962" + ], + "x-ms-request-id": [ + "4eaaf37e-e3be-4c37-85cf-9e77b8e316ed" + ], + "x-ms-correlation-request-id": [ + "4eaaf37e-e3be-4c37-85cf-9e77b8e316ed" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T210155Z:4eaaf37e-e3be-4c37-85cf-9e77b8e316ed" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 26 Apr 2015 21:01:55 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk5ODEtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk5ODEtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSems1T0RFdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31961" + ], + "x-ms-request-id": [ + "83398cbe-535f-49f3-a18f-4efb2f17f7d0" + ], + "x-ms-correlation-request-id": [ + "83398cbe-535f-49f3-a18f-4efb2f17f7d0" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T210210Z:83398cbe-535f-49f3-a18f-4efb2f17f7d0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 26 Apr 2015 21:02:10 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk5ODEtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk5ODEtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSems1T0RFdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31960" + ], + "x-ms-request-id": [ + "a30cfab1-4f5e-4f77-acd5-9fa5038d6d50" + ], + "x-ms-correlation-request-id": [ + "a30cfab1-4f5e-4f77-acd5-9fa5038d6d50" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T210226Z:a30cfab1-4f5e-4f77-acd5-9fa5038d6d50" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 26 Apr 2015 21:02:25 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk5ODEtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk5ODEtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSems1T0RFdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31959" + ], + "x-ms-request-id": [ + "3cb9bfda-48e0-48e0-b1dd-655117697455" + ], + "x-ms-correlation-request-id": [ + "3cb9bfda-48e0-48e0-b1dd-655117697455" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T210241Z:3cb9bfda-48e0-48e0-b1dd-655117697455" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 26 Apr 2015 21:02:41 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk5ODEtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk5ODEtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSems1T0RFdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31958" + ], + "x-ms-request-id": [ + "59c10cc4-ca40-43c4-98d5-9122a9ff9726" + ], + "x-ms-correlation-request-id": [ + "59c10cc4-ca40-43c4-98d5-9122a9ff9726" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T210257Z:59c10cc4-ca40-43c4-98d5-9122a9ff9726" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 26 Apr 2015 21:02:56 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk5ODEtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk5ODEtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSems1T0RFdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31957" + ], + "x-ms-request-id": [ + "499bc4dd-f6c4-46de-879b-8176961feaeb" + ], + "x-ms-correlation-request-id": [ + "499bc4dd-f6c4-46de-879b-8176961feaeb" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T210312Z:499bc4dd-f6c4-46de-879b-8176961feaeb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 26 Apr 2015 21:03:12 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk5ODEtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk5ODEtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSems1T0RFdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31956" + ], + "x-ms-request-id": [ + "afc4f901-1f89-4ecd-9d08-e977a72e0b56" + ], + "x-ms-correlation-request-id": [ + "afc4f901-1f89-4ecd-9d08-e977a72e0b56" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T210328Z:afc4f901-1f89-4ecd-9d08-e977a72e0b56" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 26 Apr 2015 21:03:27 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk5ODEtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk5ODEtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSems1T0RFdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31955" + ], + "x-ms-request-id": [ + "9dd61f27-5f8b-4613-b965-b4815a65a29c" + ], + "x-ms-correlation-request-id": [ + "9dd61f27-5f8b-4613-b965-b4815a65a29c" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T210343Z:9dd61f27-5f8b-4613-b965-b4815a65a29c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 26 Apr 2015 21:03:42 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk5ODEtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk5ODEtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSems1T0RFdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31954" + ], + "x-ms-request-id": [ + "b35d7d97-f61d-47a9-b5e8-367a24d83abd" + ], + "x-ms-correlation-request-id": [ + "b35d7d97-f61d-47a9-b5e8-367a24d83abd" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T210359Z:b35d7d97-f61d-47a9-b5e8-367a24d83abd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 26 Apr 2015 21:03:58 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk5ODEtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk5ODEtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSems1T0RFdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31953" + ], + "x-ms-request-id": [ + "30aa3ddc-9f0b-4652-81f6-b7e6e94d8f26" + ], + "x-ms-correlation-request-id": [ + "30aa3ddc-9f0b-4652-81f6-b7e6e94d8f26" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T210414Z:30aa3ddc-9f0b-4652-81f6-b7e6e94d8f26" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 26 Apr 2015 21:04:14 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk5ODEtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk5ODEtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSems1T0RFdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31952" + ], + "x-ms-request-id": [ + "aaaff393-782d-48c8-b6a5-f6f173a9525c" + ], + "x-ms-correlation-request-id": [ + "aaaff393-782d-48c8-b6a5-f6f173a9525c" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T210430Z:aaaff393-782d-48c8-b6a5-f6f173a9525c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 26 Apr 2015 21:04:29 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk5ODEtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk5ODEtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSems1T0RFdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31951" + ], + "x-ms-request-id": [ + "0791129d-ac2c-45a4-9254-b6749d2f9c7b" + ], + "x-ms-correlation-request-id": [ + "0791129d-ac2c-45a4-9254-b6749d2f9c7b" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T210445Z:0791129d-ac2c-45a4-9254-b6749d2f9c7b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 26 Apr 2015 21:04:45 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk5ODEtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk5ODEtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSems1T0RFdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31959" + ], + "x-ms-request-id": [ + "85cd90ed-d7ce-4b41-b689-0c6057bff5d9" + ], + "x-ms-correlation-request-id": [ + "85cd90ed-d7ce-4b41-b689-0c6057bff5d9" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T210501Z:85cd90ed-d7ce-4b41-b689-0c6057bff5d9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 26 Apr 2015 21:05:00 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk5ODEtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk5ODEtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSems1T0RFdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31958" + ], + "x-ms-request-id": [ + "fe45256f-b2ef-4fae-add8-e4d48b5dc98e" + ], + "x-ms-correlation-request-id": [ + "fe45256f-b2ef-4fae-add8-e4d48b5dc98e" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T210516Z:fe45256f-b2ef-4fae-add8-e4d48b5dc98e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 26 Apr 2015 21:05:16 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk5ODEtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk5ODEtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSems1T0RFdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31957" + ], + "x-ms-request-id": [ + "4309f856-039f-44c1-8722-654760c59005" + ], + "x-ms-correlation-request-id": [ + "4309f856-039f-44c1-8722-654760c59005" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T210532Z:4309f856-039f-44c1-8722-654760c59005" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 26 Apr 2015 21:05:31 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk5ODEtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk5ODEtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSems1T0RFdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31956" + ], + "x-ms-request-id": [ + "146cbcf2-2124-43ff-97e3-2d20d776c14f" + ], + "x-ms-correlation-request-id": [ + "146cbcf2-2124-43ff-97e3-2d20d776c14f" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T210547Z:146cbcf2-2124-43ff-97e3-2d20d776c14f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 26 Apr 2015 21:05:47 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk5ODEtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk5ODEtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSems1T0RFdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31955" + ], + "x-ms-request-id": [ + "c04b03be-c31f-4925-86f6-942307b25850" + ], + "x-ms-correlation-request-id": [ + "c04b03be-c31f-4925-86f6-942307b25850" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T210603Z:c04b03be-c31f-4925-86f6-942307b25850" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 26 Apr 2015 21:06:02 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk5ODEtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk5ODEtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSems1T0RFdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31954" + ], + "x-ms-request-id": [ + "71e8293f-ac6b-42f3-8407-4891c8e8d500" + ], + "x-ms-correlation-request-id": [ + "71e8293f-ac6b-42f3-8407-4891c8e8d500" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T210618Z:71e8293f-ac6b-42f3-8407-4891c8e8d500" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 26 Apr 2015 21:06:18 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk5ODEtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk5ODEtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSems1T0RFdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31953" + ], + "x-ms-request-id": [ + "7309117b-bfe8-4217-841e-56e5135c5ee3" + ], + "x-ms-correlation-request-id": [ + "7309117b-bfe8-4217-841e-56e5135c5ee3" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T210634Z:7309117b-bfe8-4217-841e-56e5135c5ee3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 26 Apr 2015 21:06:33 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk5ODEtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk5ODEtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSems1T0RFdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31952" + ], + "x-ms-request-id": [ + "6778659a-2c79-4f02-ae42-24db576b004a" + ], + "x-ms-correlation-request-id": [ + "6778659a-2c79-4f02-ae42-24db576b004a" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T210649Z:6778659a-2c79-4f02-ae42-24db576b004a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 26 Apr 2015 21:06:49 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk5ODEtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk5ODEtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSems1T0RFdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31951" + ], + "x-ms-request-id": [ + "ebd2cad5-5fd0-4dfe-9377-21b71fa97acd" + ], + "x-ms-correlation-request-id": [ + "ebd2cad5-5fd0-4dfe-9377-21b71fa97acd" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T210705Z:ebd2cad5-5fd0-4dfe-9377-21b71fa97acd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 26 Apr 2015 21:07:05 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk5ODEtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk5ODEtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSems1T0RFdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31950" + ], + "x-ms-request-id": [ + "46b398d7-ef17-4c83-b179-d4000a346d78" + ], + "x-ms-correlation-request-id": [ + "46b398d7-ef17-4c83-b179-d4000a346d78" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T210720Z:46b398d7-ef17-4c83-b179-d4000a346d78" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 26 Apr 2015 21:07:20 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk5ODEtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk5ODEtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSems1T0RFdFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31949" + ], + "x-ms-request-id": [ + "dc798449-0190-400d-babc-8db3d3da64a6" + ], + "x-ms-correlation-request-id": [ + "dc798449-0190-400d-babc-8db3d3da64a6" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20150426T210736Z:dc798449-0190-400d-babc-8db3d3da64a6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 26 Apr 2015 21:07:36 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "Test-VirtualMachinePlan2": [ + "pstestrg9981" + ] + }, + "Variables": { + "SubscriptionId": "4d368445-cbb1-42a7-97a6-6850ab99f48e", + "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "Domain": "microsoft.com" + } +} \ No newline at end of file diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestVirtualMachineSizeAndUsage.json b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestVirtualMachineSizeAndUsage.json index 33963038f180..7e987a6a3c8b 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestVirtualMachineSizeAndUsage.json +++ b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestVirtualMachineSizeAndUsage.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourcegroups/pstestrg5803?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YjVjMzMtNzcyNS00ZmMyLTljODEtYzliMDdkZTQ0NjY4L3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNTgwMz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg3518?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnMzUxOD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -28,16 +28,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31884" + "31968" ], "x-ms-request-id": [ - "d0bdd1d9-3b20-41fe-afc9-177aec086979" + "bbfa1a0b-3e35-479c-b96e-9ed7dba4043c" ], "x-ms-correlation-request-id": [ - "d0bdd1d9-3b20-41fe-afc9-177aec086979" + "bbfa1a0b-3e35-479c-b96e-9ed7dba4043c" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150415T093135Z:d0bdd1d9-3b20-41fe-afc9-177aec086979" + "WESTUS:20150424T014337Z:bbfa1a0b-3e35-479c-b96e-9ed7dba4043c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,14 +46,14 @@ "no-cache" ], "Date": [ - "Wed, 15 Apr 2015 09:31:35 GMT" + "Fri, 24 Apr 2015 01:43:36 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourcegroups/pstestrg5803?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YjVjMzMtNzcyNS00ZmMyLTljODEtYzliMDdkZTQ0NjY4L3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNTgwMz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg3518?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnMzUxOD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -73,16 +73,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31858" + "31917" ], "x-ms-request-id": [ - "2211c695-d501-436a-a446-68770797fc33" + "e5f5e1f3-f638-424d-9385-a2c72fdf470c" ], "x-ms-correlation-request-id": [ - "2211c695-d501-436a-a446-68770797fc33" + "e5f5e1f3-f638-424d-9385-a2c72fdf470c" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150415T094241Z:2211c695-d501-436a-a446-68770797fc33" + "WESTUS:20150424T015001Z:e5f5e1f3-f638-424d-9385-a2c72fdf470c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,31 +91,31 @@ "no-cache" ], "Date": [ - "Wed, 15 Apr 2015 09:42:41 GMT" + "Fri, 24 Apr 2015 01:50:00 GMT" ] }, "StatusCode": 204 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourcegroups/pstestrg5803?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YjVjMzMtNzcyNS00ZmMyLTljODEtYzliMDdkZTQ0NjY4L3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNTgwMz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg3518?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnMzUxOD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestBody": "{\r\n \"location\": \"eastasia\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "29" + "30" ], "User-Agent": [ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pstestrg5803\",\r\n \"name\": \"pstestrg5803\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg3518\",\r\n \"name\": \"pstestrg3518\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "177" + "179" ], "Content-Type": [ "application/json; charset=utf-8" @@ -127,16 +127,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1197" ], "x-ms-request-id": [ - "f213d186-d371-458e-b27e-06e704d93dc6" + "b655438e-c7f5-40da-8471-93de0a64b2c9" ], "x-ms-correlation-request-id": [ - "f213d186-d371-458e-b27e-06e704d93dc6" + "b655438e-c7f5-40da-8471-93de0a64b2c9" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150415T093136Z:f213d186-d371-458e-b27e-06e704d93dc6" + "WESTUS:20150424T014339Z:b655438e-c7f5-40da-8471-93de0a64b2c9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -145,14 +145,14 @@ "no-cache" ], "Date": [ - "Wed, 15 Apr 2015 09:31:36 GMT" + "Fri, 24 Apr 2015 01:43:39 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pstestrg5803/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YjVjMzMtNzcyNS00ZmMyLTljODEtYzliMDdkZTQ0NjY4L3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTgwMy9yZXNvdXJjZXM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg3518/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzUxOC9yZXNvdXJjZXM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -175,16 +175,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31883" + "31967" ], "x-ms-request-id": [ - "cbfaaf4f-6afa-45ee-9912-deaaa99a8e73" + "af3d3acf-d85e-4ee9-9dd8-e985e253d091" ], "x-ms-correlation-request-id": [ - "cbfaaf4f-6afa-45ee-9912-deaaa99a8e73" + "af3d3acf-d85e-4ee9-9dd8-e985e253d091" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150415T093136Z:cbfaaf4f-6afa-45ee-9912-deaaa99a8e73" + "WESTUS:20150424T014339Z:af3d3acf-d85e-4ee9-9dd8-e985e253d091" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -193,19 +193,19 @@ "no-cache" ], "Date": [ - "Wed, 15 Apr 2015 09:31:36 GMT" + "Fri, 24 Apr 2015 01:43:39 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourcegroups/pstestrg5803/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YjVjMzMtNzcyNS00ZmMyLTljODEtYzliMDdkZTQ0NjY4L3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNTgwMy9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcGVybWlzc2lvbnM/YXBpLXZlcnNpb249MjAxNC0wNy0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg3518/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnMzUxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcGVybWlzc2lvbnM/YXBpLXZlcnNpb249MjAxNC0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}", @@ -226,16 +226,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "southcentralus:7ad00fab-ea35-4657-91a6-2ee263aa4c16" + "westus:6d121916-f80f-4187-84da-4bc3d0f3f4d4" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31895" + "31977" ], "x-ms-correlation-request-id": [ - "a1c81eaa-c75c-45c6-9167-5c9b2d03b9fc" + "1249cd06-ff12-4e0b-9555-9bcffaa992f7" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150415T093137Z:a1c81eaa-c75c-45c6-9167-5c9b2d03b9fc" + "WESTUS:20150424T014339Z:1249cd06-ff12-4e0b-9555-9bcffaa992f7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -244,31 +244,31 @@ "no-cache" ], "Date": [ - "Wed, 15 Apr 2015 09:31:37 GMT" + "Fri, 24 Apr 2015 01:43:39 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pstestrg5803/providers/Microsoft.Compute/availabilitySets/asetpstestrg5803?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YjVjMzMtNzcyNS00ZmMyLTljODEtYzliMDdkZTQ0NjY4L3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTgwMy9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXZhaWxhYmlsaXR5U2V0cy9hc2V0cHN0ZXN0cmc1ODAzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg3518/providers/Microsoft.Compute/availabilitySets/asetpstestrg3518?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzUxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXZhaWxhYmlsaXR5U2V0cy9hc2V0cHN0ZXN0cmczNTE4P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {},\r\n \"name\": \"asetpstestrg5803\",\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"properties\": {},\r\n \"name\": \"asetpstestrg3518\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "96" + "97" ], "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"id\": \"/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pstestrg5803/providers/Microsoft.Compute/availabilitySets/asetpstestrg5803\",\r\n \"name\": \"asetpstestrg5803\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg3518/providers/Microsoft.Compute/availabilitySets/asetpstestrg3518\",\r\n \"name\": \"asetpstestrg3518\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {}\r\n}", "ResponseHeaders": { "Content-Length": [ - "374" + "376" ], "Content-Type": [ "application/json; charset=utf-8" @@ -283,7 +283,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ec3048d4-f4bb-4bc5-ad17-aeb5fae9a74c" + "26bb9be5-5c12-4063-a063-d26fe0b8ca80" ], "Cache-Control": [ "no-cache" @@ -293,86 +293,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" - ], - "x-ms-correlation-request-id": [ - "84907c4d-8019-4da6-8ef5-fcb703eca852" - ], - "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150415T093139Z:84907c4d-8019-4da6-8ef5-fcb703eca852" - ], - "Date": [ - "Wed, 15 Apr 2015 09:31:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pstestrg5803/providers/Microsoft.Compute/availabilitySets?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YjVjMzMtNzcyNS00ZmMyLTljODEtYzliMDdkZTQ0NjY4L3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTgwMy9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXZhaWxhYmlsaXR5U2V0cz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3,\r\n \"virtualMachines\": []\r\n },\r\n \"id\": \"/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pstestrg5803/providers/Microsoft.Compute/availabilitySets/asetpstestrg5803\",\r\n \"name\": \"asetpstestrg5803\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "475" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "650ddb0b-2e37-4f35-996d-27d20e5e371f" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31889" + "1195" ], "x-ms-correlation-request-id": [ - "3e8a394a-c5c3-4d79-a144-f58a42ea000e" + "02460a50-fa39-49ee-923c-1cd74a4a6076" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150415T093139Z:3e8a394a-c5c3-4d79-a144-f58a42ea000e" + "WESTUS:20150424T014346Z:02460a50-fa39-49ee-923c-1cd74a4a6076" ], "Date": [ - "Wed, 15 Apr 2015 09:31:39 GMT" + "Fri, 24 Apr 2015 01:43:45 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pstestrg5803/providers/Microsoft.Compute/availabilitySets/asetpstestrg5803?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YjVjMzMtNzcyNS00ZmMyLTljODEtYzliMDdkZTQ0NjY4L3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTgwMy9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXZhaWxhYmlsaXR5U2V0cy9hc2V0cHN0ZXN0cmc1ODAzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg3518/providers/Microsoft.Compute/availabilitySets/asetpstestrg3518?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzUxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXZhaWxhYmlsaXR5U2V0cy9hc2V0cHN0ZXN0cmczNTE4P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3,\r\n \"virtualMachines\": []\r\n },\r\n \"id\": \"/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pstestrg5803/providers/Microsoft.Compute/availabilitySets/asetpstestrg5803\",\r\n \"name\": \"asetpstestrg5803\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3,\r\n \"virtualMachines\": []\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg3518/providers/Microsoft.Compute/availabilitySets/asetpstestrg3518\",\r\n \"name\": \"asetpstestrg3518\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {}\r\n}", "ResponseHeaders": { "Content-Length": [ - "402" + "404" ], "Content-Type": [ "application/json; charset=utf-8" @@ -387,7 +335,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5f7c99a0-29df-4626-a69f-c38d5ee1cb39" + "fa2e5e47-dfbd-428d-83df-38ecc19d5722" ], "Cache-Control": [ "no-cache" @@ -397,28 +345,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31888" + "31975" ], "x-ms-correlation-request-id": [ - "43947fef-a39d-40b5-95bc-5c9d0761ac54" + "3902a34e-632c-4b33-8f7f-b74fed3e2483" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150415T093140Z:43947fef-a39d-40b5-95bc-5c9d0761ac54" + "WESTUS:20150424T014346Z:3902a34e-632c-4b33-8f7f-b74fed3e2483" ], "Date": [ - "Wed, 15 Apr 2015 09:31:39 GMT" + "Fri, 24 Apr 2015 01:43:46 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pstestrg5803/providers/Microsoft.Network/virtualnetworks/vnetpstestrg5803?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YjVjMzMtNzcyNS00ZmMyLTljODEtYzliMDdkZTQ0NjY4L3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTgwMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzU4MDM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg3518/providers/Microsoft.Network/virtualnetworks/vnetpstestrg3518?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzUxOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzM1MTg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/1.0.0.0" + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", @@ -439,13 +387,13 @@ "gateway" ], "x-ms-request-id": [ - "c4278b45-7618-4777-b315-b86841714143" + "2952782b-905d-4769-a83a-525e5b1f66d1" ], "x-ms-correlation-request-id": [ - "c4278b45-7618-4777-b315-b86841714143" + "2952782b-905d-4769-a83a-525e5b1f66d1" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150415T093141Z:c4278b45-7618-4777-b315-b86841714143" + "WESTUS:20150424T014346Z:2952782b-905d-4769-a83a-525e5b1f66d1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -454,25 +402,25 @@ "no-cache" ], "Date": [ - "Wed, 15 Apr 2015 09:31:40 GMT" + "Fri, 24 Apr 2015 01:43:46 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pstestrg5803/providers/Microsoft.Network/virtualnetworks/vnetpstestrg5803?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YjVjMzMtNzcyNS00ZmMyLTljODEtYzliMDdkZTQ0NjY4L3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTgwMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzU4MDM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg3518/providers/Microsoft.Network/virtualnetworks/vnetpstestrg3518?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzUxOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzM1MTg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/1.0.0.0" + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetpstestrg5803\",\r\n \"id\": \"/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pstestrg5803/providers/Microsoft.Network/virtualNetworks/vnetpstestrg5803\",\r\n \"etag\": \"W/\\\"0929beae-762c-4587-ae67-93b5eb42878b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\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 \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg5803\",\r\n \"id\": \"/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pstestrg5803/providers/Microsoft.Network/virtualNetworks/vnetpstestrg5803/subnets/subnetpstestrg5803\",\r\n \"etag\": \"W/\\\"0929beae-762c-4587-ae67-93b5eb42878b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"vnetpstestrg3518\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg3518/providers/Microsoft.Network/virtualNetworks/vnetpstestrg3518\",\r\n \"etag\": \"W/\\\"edc26f32-5102-4777-a68e-eee65613b2eb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\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 \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg3518\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg3518/providers/Microsoft.Network/virtualNetworks/vnetpstestrg3518/subnets/subnetpstestrg3518\",\r\n \"etag\": \"W/\\\"edc26f32-5102-4777-a68e-eee65613b2eb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"eastasia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "961" + "962" ], "Content-Type": [ "application/json; charset=utf-8" @@ -484,7 +432,7 @@ "no-cache" ], "x-ms-request-id": [ - "322efedb-1564-4536-9874-af38c8ba3ccd" + "f91f24e8-0206-4d43-9890-5a5616efe0eb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -493,41 +441,41 @@ "no-cache" ], "ETag": [ - "W/\"0929beae-762c-4587-ae67-93b5eb42878b\"" + "W/\"edc26f32-5102-4777-a68e-eee65613b2eb\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31851" + "31972" ], "x-ms-correlation-request-id": [ - "d828c347-40a0-407a-bbb7-63f5a41f9bc4" + "a3bc1d54-b7a0-447b-b63a-f987a7270fcc" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150415T093144Z:d828c347-40a0-407a-bbb7-63f5a41f9bc4" + "WESTUS:20150424T014352Z:a3bc1d54-b7a0-447b-b63a-f987a7270fcc" ], "Date": [ - "Wed, 15 Apr 2015 09:31:43 GMT" + "Fri, 24 Apr 2015 01:43:51 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pstestrg5803/providers/Microsoft.Network/virtualnetworks/vnetpstestrg5803?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YjVjMzMtNzcyNS00ZmMyLTljODEtYzliMDdkZTQ0NjY4L3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTgwMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzU4MDM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg3518/providers/Microsoft.Network/virtualnetworks/vnetpstestrg3518?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzUxOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzM1MTg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/1.0.0.0" + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetpstestrg5803\",\r\n \"id\": \"/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pstestrg5803/providers/Microsoft.Network/virtualNetworks/vnetpstestrg5803\",\r\n \"etag\": \"W/\\\"0929beae-762c-4587-ae67-93b5eb42878b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\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 \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg5803\",\r\n \"id\": \"/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pstestrg5803/providers/Microsoft.Network/virtualNetworks/vnetpstestrg5803/subnets/subnetpstestrg5803\",\r\n \"etag\": \"W/\\\"0929beae-762c-4587-ae67-93b5eb42878b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"vnetpstestrg3518\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg3518/providers/Microsoft.Network/virtualNetworks/vnetpstestrg3518\",\r\n \"etag\": \"W/\\\"edc26f32-5102-4777-a68e-eee65613b2eb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\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 \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg3518\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg3518/providers/Microsoft.Network/virtualNetworks/vnetpstestrg3518/subnets/subnetpstestrg3518\",\r\n \"etag\": \"W/\\\"edc26f32-5102-4777-a68e-eee65613b2eb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"eastasia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "961" + "962" ], "Content-Type": [ "application/json; charset=utf-8" @@ -539,7 +487,7 @@ "no-cache" ], "x-ms-request-id": [ - "0655e89b-eff3-4444-91d1-1325993d7632" + "1d938597-dc22-41c9-8309-2343359c18a4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -548,47 +496,47 @@ "no-cache" ], "ETag": [ - "W/\"0929beae-762c-4587-ae67-93b5eb42878b\"" + "W/\"edc26f32-5102-4777-a68e-eee65613b2eb\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31850" + "31971" ], "x-ms-correlation-request-id": [ - "f65dd6ff-37f9-47ea-8d8c-b7237f9263d5" + "b47b40d6-d7f2-4fb3-8082-fe5397185fb8" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150415T093144Z:f65dd6ff-37f9-47ea-8d8c-b7237f9263d5" + "WESTUS:20150424T014352Z:b47b40d6-d7f2-4fb3-8082-fe5397185fb8" ], "Date": [ - "Wed, 15 Apr 2015 09:31:43 GMT" + "Fri, 24 Apr 2015 01:43:52 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pstestrg5803/providers/Microsoft.Network/virtualnetworks/vnetpstestrg5803?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YjVjMzMtNzcyNS00ZmMyLTljODEtYzliMDdkZTQ0NjY4L3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTgwMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzU4MDM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg3518/providers/Microsoft.Network/virtualnetworks/vnetpstestrg3518?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzUxOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzM1MTg/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "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 \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": []\r\n },\r\n \"name\": \"subnetpstestrg5803\"\r\n }\r\n ]\r\n },\r\n \"name\": \"vnetpstestrg5803\",\r\n \"type\": \"microsoft.network/virtualNetworks\",\r\n \"location\": \"West US\"\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 \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": []\r\n },\r\n \"name\": \"subnetpstestrg3518\"\r\n }\r\n ]\r\n },\r\n \"name\": \"vnetpstestrg3518\",\r\n \"type\": \"microsoft.network/virtualNetworks\",\r\n \"location\": \"eastasia\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "501" + "502" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/1.0.0.0" + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetpstestrg5803\",\r\n \"id\": \"/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pstestrg5803/providers/Microsoft.Network/virtualNetworks/vnetpstestrg5803\",\r\n \"etag\": \"W/\\\"bc9bc07d-aa51-4e16-b7db-bcc9409071dc\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\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 \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg5803\",\r\n \"id\": \"/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pstestrg5803/providers/Microsoft.Network/virtualNetworks/vnetpstestrg5803/subnets/subnetpstestrg5803\",\r\n \"etag\": \"W/\\\"bc9bc07d-aa51-4e16-b7db-bcc9409071dc\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"vnetpstestrg3518\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg3518/providers/Microsoft.Network/virtualNetworks/vnetpstestrg3518\",\r\n \"etag\": \"W/\\\"fd16e10f-3796-4e05-8fd7-e2c6fab981b2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\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 \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnetpstestrg3518\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg3518/providers/Microsoft.Network/virtualNetworks/vnetpstestrg3518/subnets/subnetpstestrg3518\",\r\n \"etag\": \"W/\\\"fd16e10f-3796-4e05-8fd7-e2c6fab981b2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"eastasia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "959" + "960" ], "Content-Type": [ "application/json; charset=utf-8" @@ -603,10 +551,10 @@ "10" ], "x-ms-request-id": [ - "061a5293-4ea0-48b8-b4da-8d23f62be17b" + "f72bfc8a-3907-4639-8502-9f3b55f85fa7" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Network/locations/westus/operations/061a5293-4ea0-48b8-b4da-8d23f62be17b?api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/eastasia/operations/f72bfc8a-3907-4639-8502-9f3b55f85fa7?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -622,20 +570,20 @@ "1194" ], "x-ms-correlation-request-id": [ - "0c5ada59-23ac-410e-aa35-3749bb80cb18" + "54eb7ce9-b635-41e6-bb83-f8fa06e04cf6" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150415T093143Z:0c5ada59-23ac-410e-aa35-3749bb80cb18" + "WESTUS:20150424T014351Z:54eb7ce9-b635-41e6-bb83-f8fa06e04cf6" ], "Date": [ - "Wed, 15 Apr 2015 09:31:42 GMT" + "Fri, 24 Apr 2015 01:43:50 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Network/locations/westus/operations/061a5293-4ea0-48b8-b4da-8d23f62be17b?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YjVjMzMtNzcyNS00ZmMyLTljODEtYzliMDdkZTQ0NjY4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDYxYTUyOTMtNGVhMC00OGI4LWI0ZGEtOGQyM2Y2MmJlMTdiP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/eastasia/operations/f72bfc8a-3907-4639-8502-9f3b55f85fa7?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy9mNzJiZmM4YS0zOTA3LTQ2MzktODUwMi05ZjNiNTVmODVmYTc/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -643,7 +591,7 @@ "2015-05-01-preview" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/1.0.0.0" + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -661,7 +609,7 @@ "no-cache" ], "x-ms-request-id": [ - "d27722dc-f30b-48b8-b750-b404f028b26f" + "9bdac017-b1e4-456c-be24-ccefe20ba902" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -674,28 +622,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31852" + "31973" ], "x-ms-correlation-request-id": [ - "2b02dc9c-5f42-45a0-8c04-718b926c13f4" + "dd1e3760-d7fd-45fd-a94a-42eaf24fc5ad" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150415T093143Z:2b02dc9c-5f42-45a0-8c04-718b926c13f4" + "WESTUS:20150424T014351Z:dd1e3760-d7fd-45fd-a94a-42eaf24fc5ad" ], "Date": [ - "Wed, 15 Apr 2015 09:31:43 GMT" + "Fri, 24 Apr 2015 01:43:51 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pstestrg5803/providers/Microsoft.Network/publicIPAddresses/pubippstestrg5803/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YjVjMzMtNzcyNS00ZmMyLTljODEtYzliMDdkZTQ0NjY4L3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTgwMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHViaXBwc3Rlc3RyZzU4MDMvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg3518/providers/Microsoft.Network/publicIPAddresses/pubippstestrg3518/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzUxOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHViaXBwc3Rlc3RyZzM1MTgvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/1.0.0.0" + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", @@ -716,13 +664,13 @@ "gateway" ], "x-ms-request-id": [ - "51b6b771-c7d4-42c5-bad4-e68e31b3603d" + "1576e423-1bda-4425-a759-0868520ab071" ], "x-ms-correlation-request-id": [ - "51b6b771-c7d4-42c5-bad4-e68e31b3603d" + "1576e423-1bda-4425-a759-0868520ab071" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150415T093144Z:51b6b771-c7d4-42c5-bad4-e68e31b3603d" + "WESTUS:20150424T014352Z:1576e423-1bda-4425-a759-0868520ab071" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -731,25 +679,25 @@ "no-cache" ], "Date": [ - "Wed, 15 Apr 2015 09:31:43 GMT" + "Fri, 24 Apr 2015 01:43:52 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pstestrg5803/providers/Microsoft.Network/publicIPAddresses/pubippstestrg5803/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YjVjMzMtNzcyNS00ZmMyLTljODEtYzliMDdkZTQ0NjY4L3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTgwMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHViaXBwc3Rlc3RyZzU4MDMvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg3518/providers/Microsoft.Network/publicIPAddresses/pubippstestrg3518/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzUxOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHViaXBwc3Rlc3RyZzM1MTgvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/1.0.0.0" + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"pubippstestrg5803\",\r\n \"id\": \"/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pstestrg5803/providers/Microsoft.Network/publicIPAddresses/pubippstestrg5803\",\r\n \"etag\": \"W/\\\"eabba305-6ae2-4d00-9130-48bbca36c336\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubippstestrg5803\",\r\n \"fqdn\": \"pubippstestrg5803.westus.cloudapp.azure.com.\"\r\n }\r\n },\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pubippstestrg3518\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg3518/providers/Microsoft.Network/publicIPAddresses/pubippstestrg3518\",\r\n \"etag\": \"W/\\\"d79d8622-5560-4f39-8810-3110fe2b5bce\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubippstestrg3518\",\r\n \"fqdn\": \"pubippstestrg3518.eastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"eastasia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "552" + "554" ], "Content-Type": [ "application/json; charset=utf-8" @@ -761,7 +709,7 @@ "no-cache" ], "x-ms-request-id": [ - "af24deb2-e5e3-4909-b264-32da322ade43" + "32004aa7-2fab-4844-8632-2ea03cfe5493" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -770,41 +718,41 @@ "no-cache" ], "ETag": [ - "W/\"eabba305-6ae2-4d00-9130-48bbca36c336\"" + "W/\"d79d8622-5560-4f39-8810-3110fe2b5bce\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31847" + "31968" ], "x-ms-correlation-request-id": [ - "62bc16bb-98ee-499d-a555-b13fa0ed4995" + "5a3d048d-cc10-4b3c-bee8-9ef705961967" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150415T093146Z:62bc16bb-98ee-499d-a555-b13fa0ed4995" + "WESTUS:20150424T014358Z:5a3d048d-cc10-4b3c-bee8-9ef705961967" ], "Date": [ - "Wed, 15 Apr 2015 09:31:46 GMT" + "Fri, 24 Apr 2015 01:43:57 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pstestrg5803/providers/Microsoft.Network/publicIPAddresses/pubippstestrg5803/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YjVjMzMtNzcyNS00ZmMyLTljODEtYzliMDdkZTQ0NjY4L3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTgwMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHViaXBwc3Rlc3RyZzU4MDMvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg3518/providers/Microsoft.Network/publicIPAddresses/pubippstestrg3518/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzUxOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHViaXBwc3Rlc3RyZzM1MTgvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/1.0.0.0" + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"pubippstestrg5803\",\r\n \"id\": \"/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pstestrg5803/providers/Microsoft.Network/publicIPAddresses/pubippstestrg5803\",\r\n \"etag\": \"W/\\\"eabba305-6ae2-4d00-9130-48bbca36c336\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubippstestrg5803\",\r\n \"fqdn\": \"pubippstestrg5803.westus.cloudapp.azure.com.\"\r\n }\r\n },\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pubippstestrg3518\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg3518/providers/Microsoft.Network/publicIPAddresses/pubippstestrg3518\",\r\n \"etag\": \"W/\\\"d79d8622-5560-4f39-8810-3110fe2b5bce\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubippstestrg3518\",\r\n \"fqdn\": \"pubippstestrg3518.eastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"eastasia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "552" + "554" ], "Content-Type": [ "application/json; charset=utf-8" @@ -816,7 +764,7 @@ "no-cache" ], "x-ms-request-id": [ - "ad287a27-f418-47ce-98f3-a8eedae7cefd" + "e8cd4467-1ae5-4abe-b53c-e2a0904f7abc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -825,47 +773,47 @@ "no-cache" ], "ETag": [ - "W/\"eabba305-6ae2-4d00-9130-48bbca36c336\"" + "W/\"d79d8622-5560-4f39-8810-3110fe2b5bce\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31846" + "31967" ], "x-ms-correlation-request-id": [ - "ff61796e-bedb-4bae-a93a-ef534e7d92e1" + "75341f1e-0dc1-4df6-913c-85d746424f92" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150415T093147Z:ff61796e-bedb-4bae-a93a-ef534e7d92e1" + "WESTUS:20150424T014358Z:75341f1e-0dc1-4df6-913c-85d746424f92" ], "Date": [ - "Wed, 15 Apr 2015 09:31:46 GMT" + "Fri, 24 Apr 2015 01:43:57 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pstestrg5803/providers/Microsoft.Network/publicIPAddresses/pubippstestrg5803/?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YjVjMzMtNzcyNS00ZmMyLTljODEtYzliMDdkZTQ0NjY4L3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTgwMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHViaXBwc3Rlc3RyZzU4MDMvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg3518/providers/Microsoft.Network/publicIPAddresses/pubippstestrg3518/?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzUxOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHViaXBwc3Rlc3RyZzM1MTgvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubippstestrg5803\"\r\n }\r\n },\r\n \"name\": \"pubippstestrg5803\",\r\n \"type\": \"microsoft.network/publicIPAddresses\",\r\n \"location\": \"West US\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubippstestrg3518\"\r\n }\r\n },\r\n \"name\": \"pubippstestrg3518\",\r\n \"type\": \"microsoft.network/publicIPAddresses\",\r\n \"location\": \"eastasia\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "255" + "256" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/1.0.0.0" + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"pubippstestrg5803\",\r\n \"id\": \"/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pstestrg5803/providers/Microsoft.Network/publicIPAddresses/pubippstestrg5803\",\r\n \"etag\": \"W/\\\"1acca7a3-b629-4add-be85-58be24eae22e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubippstestrg5803\",\r\n \"fqdn\": \"pubippstestrg5803.westus.cloudapp.azure.com.\"\r\n }\r\n },\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pubippstestrg3518\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg3518/providers/Microsoft.Network/publicIPAddresses/pubippstestrg3518\",\r\n \"etag\": \"W/\\\"a2d1e23a-9818-461f-905b-ab719c279e2a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubippstestrg3518\",\r\n \"fqdn\": \"pubippstestrg3518.eastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"eastasia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "551" + "553" ], "Content-Type": [ "application/json; charset=utf-8" @@ -880,10 +828,10 @@ "10" ], "x-ms-request-id": [ - "567ed2f7-8610-40a8-b26b-3393953b709b" + "4da24ba9-0691-450f-936f-5028252275c6" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Network/locations/westus/operations/567ed2f7-8610-40a8-b26b-3393953b709b?api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/eastasia/operations/4da24ba9-0691-450f-936f-5028252275c6?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -899,20 +847,20 @@ "1193" ], "x-ms-correlation-request-id": [ - "6d455eba-90c9-471c-8e83-496094fee1ef" + "bdaf3a7f-a05f-443f-8561-fb47c81bde26" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150415T093146Z:6d455eba-90c9-471c-8e83-496094fee1ef" + "WESTUS:20150424T014357Z:bdaf3a7f-a05f-443f-8561-fb47c81bde26" ], "Date": [ - "Wed, 15 Apr 2015 09:31:45 GMT" + "Fri, 24 Apr 2015 01:43:56 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Network/locations/westus/operations/567ed2f7-8610-40a8-b26b-3393953b709b?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YjVjMzMtNzcyNS00ZmMyLTljODEtYzliMDdkZTQ0NjY4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTY3ZWQyZjctODYxMC00MGE4LWIyNmItMzM5Mzk1M2I3MDliP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/eastasia/operations/4da24ba9-0691-450f-936f-5028252275c6?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy80ZGEyNGJhOS0wNjkxLTQ1MGYtOTM2Zi01MDI4MjUyMjc1YzY/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -920,7 +868,7 @@ "2015-05-01-preview" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/1.0.0.0" + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -938,7 +886,7 @@ "no-cache" ], "x-ms-request-id": [ - "6c86e630-b3fd-4038-944c-f9cb269d088a" + "b051546f-33e4-49e5-8881-2cc902cf4827" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -951,28 +899,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31848" + "31969" ], "x-ms-correlation-request-id": [ - "b71140c0-cbd2-4a72-a2ee-c1e1d2a3646d" + "be8c5eca-017e-4b0b-afe9-72c75e0e3d91" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150415T093146Z:b71140c0-cbd2-4a72-a2ee-c1e1d2a3646d" + "WESTUS:20150424T014358Z:be8c5eca-017e-4b0b-afe9-72c75e0e3d91" ], "Date": [ - "Wed, 15 Apr 2015 09:31:46 GMT" + "Fri, 24 Apr 2015 01:43:57 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pstestrg5803/providers/Microsoft.Network/networkInterfaces/nicpstestrg5803?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YjVjMzMtNzcyNS00ZmMyLTljODEtYzliMDdkZTQ0NjY4L3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTgwMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljcHN0ZXN0cmc1ODAzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg3518/providers/Microsoft.Network/networkInterfaces/nicpstestrg3518?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzUxOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljcHN0ZXN0cmczNTE4P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/1.0.0.0" + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}", @@ -993,13 +941,13 @@ "gateway" ], "x-ms-request-id": [ - "918621b4-031f-4d55-ac49-17702d1b02f8" + "66d4c3e1-c891-4057-b809-bfbbaa9ffd7d" ], "x-ms-correlation-request-id": [ - "918621b4-031f-4d55-ac49-17702d1b02f8" + "66d4c3e1-c891-4057-b809-bfbbaa9ffd7d" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150415T093147Z:918621b4-031f-4d55-ac49-17702d1b02f8" + "WESTUS:20150424T014358Z:66d4c3e1-c891-4057-b809-bfbbaa9ffd7d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1008,25 +956,25 @@ "no-cache" ], "Date": [ - "Wed, 15 Apr 2015 09:31:46 GMT" + "Fri, 24 Apr 2015 01:43:58 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pstestrg5803/providers/Microsoft.Network/networkInterfaces/nicpstestrg5803?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YjVjMzMtNzcyNS00ZmMyLTljODEtYzliMDdkZTQ0NjY4L3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTgwMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljcHN0ZXN0cmc1ODAzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg3518/providers/Microsoft.Network/networkInterfaces/nicpstestrg3518?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzUxOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljcHN0ZXN0cmczNTE4P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/1.0.0.0" + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"nicpstestrg5803\",\r\n \"id\": \"/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pstestrg5803/providers/Microsoft.Network/networkInterfaces/nicpstestrg5803\",\r\n \"etag\": \"W/\\\"e3f2792f-584b-49ed-a70c-9d16f219f7d4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pstestrg5803/providers/Microsoft.Network/networkInterfaces/nicpstestrg5803/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"e3f2792f-584b-49ed-a70c-9d16f219f7d4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pstestrg5803/providers/Microsoft.Network/publicIPAddresses/pubippstestrg5803\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pstestrg5803/providers/Microsoft.Network/virtualNetworks/vnetpstestrg5803/subnets/subnetpstestrg5803\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"nicpstestrg3518\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg3518/providers/Microsoft.Network/networkInterfaces/nicpstestrg3518\",\r\n \"etag\": \"W/\\\"836ce3e8-ed01-418e-8259-7c00db89730f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg3518/providers/Microsoft.Network/networkInterfaces/nicpstestrg3518/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"836ce3e8-ed01-418e-8259-7c00db89730f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg3518/providers/Microsoft.Network/publicIPAddresses/pubippstestrg3518\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg3518/providers/Microsoft.Network/virtualNetworks/vnetpstestrg3518/subnets/subnetpstestrg3518\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"eastasia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1301" + "1302" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1038,7 +986,7 @@ "no-cache" ], "x-ms-request-id": [ - "f73a2988-e17f-4f21-a010-2e0af9fc7daa" + "82f72450-1ee6-4aca-8f94-1eec240e0303" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1047,41 +995,41 @@ "no-cache" ], "ETag": [ - "W/\"e3f2792f-584b-49ed-a70c-9d16f219f7d4\"" + "W/\"836ce3e8-ed01-418e-8259-7c00db89730f\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31843" + "31964" ], "x-ms-correlation-request-id": [ - "6f9fc84c-0e3b-4715-8167-17562aa3ef8a" + "3b3deb19-42c5-4c72-92db-39e17e8b66b6" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150415T093149Z:6f9fc84c-0e3b-4715-8167-17562aa3ef8a" + "WESTUS:20150424T014403Z:3b3deb19-42c5-4c72-92db-39e17e8b66b6" ], "Date": [ - "Wed, 15 Apr 2015 09:31:49 GMT" + "Fri, 24 Apr 2015 01:44:03 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pstestrg5803/providers/Microsoft.Network/networkInterfaces/nicpstestrg5803?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YjVjMzMtNzcyNS00ZmMyLTljODEtYzliMDdkZTQ0NjY4L3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTgwMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljcHN0ZXN0cmc1ODAzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg3518/providers/Microsoft.Network/networkInterfaces/nicpstestrg3518?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzUxOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljcHN0ZXN0cmczNTE4P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/1.0.0.0" + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"nicpstestrg5803\",\r\n \"id\": \"/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pstestrg5803/providers/Microsoft.Network/networkInterfaces/nicpstestrg5803\",\r\n \"etag\": \"W/\\\"e3f2792f-584b-49ed-a70c-9d16f219f7d4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pstestrg5803/providers/Microsoft.Network/networkInterfaces/nicpstestrg5803/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"e3f2792f-584b-49ed-a70c-9d16f219f7d4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pstestrg5803/providers/Microsoft.Network/publicIPAddresses/pubippstestrg5803\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pstestrg5803/providers/Microsoft.Network/virtualNetworks/vnetpstestrg5803/subnets/subnetpstestrg5803\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"nicpstestrg3518\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg3518/providers/Microsoft.Network/networkInterfaces/nicpstestrg3518\",\r\n \"etag\": \"W/\\\"836ce3e8-ed01-418e-8259-7c00db89730f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg3518/providers/Microsoft.Network/networkInterfaces/nicpstestrg3518/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"836ce3e8-ed01-418e-8259-7c00db89730f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg3518/providers/Microsoft.Network/publicIPAddresses/pubippstestrg3518\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg3518/providers/Microsoft.Network/virtualNetworks/vnetpstestrg3518/subnets/subnetpstestrg3518\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"eastasia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1301" + "1302" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1093,7 +1041,7 @@ "no-cache" ], "x-ms-request-id": [ - "2eb0a4ba-de07-4098-9fd0-b2d9ecf8f1c6" + "909b18bc-a6eb-4555-998c-f7e650c9e208" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1102,47 +1050,47 @@ "no-cache" ], "ETag": [ - "W/\"e3f2792f-584b-49ed-a70c-9d16f219f7d4\"" + "W/\"836ce3e8-ed01-418e-8259-7c00db89730f\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31842" + "31963" ], "x-ms-correlation-request-id": [ - "74d52200-8c5f-4e6e-80db-7c73345e5e44" + "b46f1aab-63db-46c9-9133-17424a58d260" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150415T093150Z:74d52200-8c5f-4e6e-80db-7c73345e5e44" + "WESTUS:20150424T014404Z:b46f1aab-63db-46c9-9133-17424a58d260" ], "Date": [ - "Wed, 15 Apr 2015 09:31:49 GMT" + "Fri, 24 Apr 2015 01:44:04 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pstestrg5803/providers/Microsoft.Network/networkInterfaces/nicpstestrg5803?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YjVjMzMtNzcyNS00ZmMyLTljODEtYzliMDdkZTQ0NjY4L3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTgwMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljcHN0ZXN0cmc1ODAzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg3518/providers/Microsoft.Network/networkInterfaces/nicpstestrg3518?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzUxOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljcHN0ZXN0cmczNTE4P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pstestrg5803/providers/Microsoft.Network/virtualNetworks/vnetpstestrg5803/subnets/subnetpstestrg5803\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pstestrg5803/providers/Microsoft.Network/publicIPAddresses/pubippstestrg5803\"\r\n }\r\n },\r\n \"name\": \"ipconfig1\"\r\n }\r\n ],\r\n \"primary\": false\r\n },\r\n \"name\": \"nicpstestrg5803\",\r\n \"type\": \"microsoft.network/networkInterfaces\",\r\n \"location\": \"West US\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg3518/providers/Microsoft.Network/virtualNetworks/vnetpstestrg3518/subnets/subnetpstestrg3518\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg3518/providers/Microsoft.Network/publicIPAddresses/pubippstestrg3518\"\r\n },\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": []\r\n },\r\n \"name\": \"ipconfig1\"\r\n }\r\n ],\r\n \"primary\": false\r\n },\r\n \"name\": \"nicpstestrg3518\",\r\n \"type\": \"microsoft.network/networkInterfaces\",\r\n \"location\": \"eastasia\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "762" + "859" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/1.0.0.0" + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"nicpstestrg5803\",\r\n \"id\": \"/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pstestrg5803/providers/Microsoft.Network/networkInterfaces/nicpstestrg5803\",\r\n \"etag\": \"W/\\\"e3f2792f-584b-49ed-a70c-9d16f219f7d4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pstestrg5803/providers/Microsoft.Network/networkInterfaces/nicpstestrg5803/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"e3f2792f-584b-49ed-a70c-9d16f219f7d4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pstestrg5803/providers/Microsoft.Network/publicIPAddresses/pubippstestrg5803\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pstestrg5803/providers/Microsoft.Network/virtualNetworks/vnetpstestrg5803/subnets/subnetpstestrg5803\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"nicpstestrg3518\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg3518/providers/Microsoft.Network/networkInterfaces/nicpstestrg3518\",\r\n \"etag\": \"W/\\\"836ce3e8-ed01-418e-8259-7c00db89730f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg3518/providers/Microsoft.Network/networkInterfaces/nicpstestrg3518/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"836ce3e8-ed01-418e-8259-7c00db89730f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg3518/providers/Microsoft.Network/publicIPAddresses/pubippstestrg3518\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg3518/providers/Microsoft.Network/virtualNetworks/vnetpstestrg3518/subnets/subnetpstestrg3518\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"eastasia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1301" + "1302" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1153,14 +1101,11 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "10" - ], "x-ms-request-id": [ - "0bb474fb-cb16-4cb8-b573-ee67ae014895" + "3d7a27ee-b441-470c-997e-02a2f42ba5f2" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Network/locations/westus/operations/0bb474fb-cb16-4cb8-b573-ee67ae014895?api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/eastasia/operations/3d7a27ee-b441-470c-997e-02a2f42ba5f2?api-version=2015-05-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1176,20 +1121,20 @@ "1192" ], "x-ms-correlation-request-id": [ - "1516a431-46d1-4f8e-b8e2-052e1891cc33" + "8824c1c8-bb74-4f1d-b325-1a8dcfc4d4eb" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150415T093149Z:1516a431-46d1-4f8e-b8e2-052e1891cc33" + "WESTUS:20150424T014403Z:8824c1c8-bb74-4f1d-b325-1a8dcfc4d4eb" ], "Date": [ - "Wed, 15 Apr 2015 09:31:48 GMT" + "Fri, 24 Apr 2015 01:44:02 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Network/locations/westus/operations/0bb474fb-cb16-4cb8-b573-ee67ae014895?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YjVjMzMtNzcyNS00ZmMyLTljODEtYzliMDdkZTQ0NjY4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMGJiNDc0ZmItY2IxNi00Y2I4LWI1NzMtZWU2N2FlMDE0ODk1P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/eastasia/operations/3d7a27ee-b441-470c-997e-02a2f42ba5f2?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy8zZDdhMjdlZS1iNDQxLTQ3MGMtOTk3ZS0wMmEyZjQyYmE1ZjI/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1197,7 +1142,7 @@ "2015-05-01-preview" ], "User-Agent": [ - "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/1.0.0.0" + "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -1215,7 +1160,7 @@ "no-cache" ], "x-ms-request-id": [ - "d912e1f3-3d80-4544-9ed6-46895af058e6" + "79f85a72-2c22-4645-906f-447fab7ef1e9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1228,34 +1173,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31844" + "31965" ], "x-ms-correlation-request-id": [ - "b7546ff4-2920-4f12-8bc9-b9f6a797c14a" + "3a24f75b-08ef-4336-b001-a5187e56d666" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150415T093149Z:b7546ff4-2920-4f12-8bc9-b9f6a797c14a" + "WESTUS:20150424T014403Z:3a24f75b-08ef-4336-b001-a5187e56d666" ], "Date": [ - "Wed, 15 Apr 2015 09:31:48 GMT" + "Fri, 24 Apr 2015 01:44:03 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pstestrg5803/providers/Microsoft.Storage/storageAccounts/stopstestrg5803?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YjVjMzMtNzcyNS00ZmMyLTljODEtYzliMDdkZTQ0NjY4L3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTgwMy9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNTgwMz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg3518/providers/Microsoft.Storage/storageAccounts/stopstestrg3518?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzUxOC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMzUxOD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "89" + "90" ], "x-ms-client-request-id": [ - "0ba402bd-2897-4286-9ba2-7e67603ce43f" + "8f6ae3ee-0950-4b85-949e-248cb275a834" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" @@ -1279,44 +1224,44 @@ "25" ], "x-ms-request-id": [ - "d776c1a9-deb0-4fd3-a904-ca672aae78c6" + "62576f29-f319-432e-97a9-3d22993cf90c" ], "Cache-Control": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Storage/operations/d776c1a9-deb0-4fd3-a904-ca672aae78c6?monitor=true&api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/62576f29-f319-432e-97a9-3d22993cf90c?monitor=true&api-version=2015-05-01-preview" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1191" ], "x-ms-correlation-request-id": [ - "818e875d-7adc-46de-96b3-d8e88251c85b" + "69416c3f-6688-40d9-b3ab-5a18da19564c" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150415T093155Z:818e875d-7adc-46de-96b3-d8e88251c85b" + "WESTUS:20150424T014409Z:69416c3f-6688-40d9-b3ab-5a18da19564c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Wed, 15 Apr 2015 09:31:54 GMT" + "Fri, 24 Apr 2015 01:44:09 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Storage/operations/d776c1a9-deb0-4fd3-a904-ca672aae78c6?monitor=true&api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YjVjMzMtNzcyNS00ZmMyLTljODEtYzliMDdkZTQ0NjY4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2Q3NzZjMWE5LWRlYjAtNGZkMy1hOTA0LWNhNjcyYWFlNzhjNj9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/62576f29-f319-432e-97a9-3d22993cf90c?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzYyNTc2ZjI5LWYzMTktNDMyZS05N2E5LTNkMjI5OTNjZjkwYz9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e71711f9-b034-46f7-9507-deefb7b2ad6c" + "5d0c55d8-12de-4ec4-ab96-709261055dad" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" @@ -1340,53 +1285,53 @@ "25" ], "x-ms-request-id": [ - "33c58085-141e-48c3-bf17-a748f9aa6995" + "9397f5cb-e8f4-4ef0-baf4-92fceea35abf" ], "Cache-Control": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Storage/operations/d776c1a9-deb0-4fd3-a904-ca672aae78c6?monitor=true&api-version=2015-05-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/62576f29-f319-432e-97a9-3d22993cf90c?monitor=true&api-version=2015-05-01-preview" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31874" + "31962" ], "x-ms-correlation-request-id": [ - "9eccecfe-4c7b-4b8b-b659-84623e74ed82" + "1c48dcd0-55f0-468b-9767-949c7972e935" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150415T093156Z:9eccecfe-4c7b-4b8b-b659-84623e74ed82" + "WESTUS:20150424T014410Z:1c48dcd0-55f0-468b-9767-949c7972e935" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Wed, 15 Apr 2015 09:31:55 GMT" + "Fri, 24 Apr 2015 01:44:09 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Storage/operations/d776c1a9-deb0-4fd3-a904-ca672aae78c6?monitor=true&api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YjVjMzMtNzcyNS00ZmMyLTljODEtYzliMDdkZTQ0NjY4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2Q3NzZjMWE5LWRlYjAtNGZkMy1hOTA0LWNhNjcyYWFlNzhjNj9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/62576f29-f319-432e-97a9-3d22993cf90c?monitor=true&api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzYyNTc2ZjI5LWYzMTktNDMyZS05N2E5LTNkMjI5OTNjZjkwYz9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "57fb2d5b-a050-4533-8cb8-38ff6fa61210" + "e3d59577-6917-491d-bfb8-33e2b93268f0" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n },\r\n \"location\": \"West US\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n },\r\n \"location\": \"East Asia\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "66" + "68" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1398,7 +1343,7 @@ "no-cache" ], "x-ms-request-id": [ - "a7e21ce4-75f6-4c56-ae49-abff2f3abc62" + "66fc2deb-36dc-4336-a4f6-1bc6dd7df4f8" ], "Cache-Control": [ "no-cache" @@ -1408,40 +1353,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31871" + "31961" ], "x-ms-correlation-request-id": [ - "e1481cb0-2e07-4dce-adad-892ac1046395" + "0e753bcc-e748-4497-ad2f-49a806f724de" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150415T093221Z:e1481cb0-2e07-4dce-adad-892ac1046395" + "WESTUS:20150424T014435Z:0e753bcc-e748-4497-ad2f-49a806f724de" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Wed, 15 Apr 2015 09:32:20 GMT" + "Fri, 24 Apr 2015 01:44:34 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pstestrg5803/providers/Microsoft.Storage/storageAccounts/stopstestrg5803?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YjVjMzMtNzcyNS00ZmMyLTljODEtYzliMDdkZTQ0NjY4L3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTgwMy9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNTgwMz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg3518/providers/Microsoft.Storage/storageAccounts/stopstestrg3518?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzUxOC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMzUxOD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c226c2cd-e585-4077-b226-c78722cdef11" + "b75cce81-001e-4e8e-992a-97a42dce1899" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pstestrg5803/providers/Microsoft.Storage/storageAccounts/stopstestrg5803\",\r\n \"name\": \"stopstestrg5803\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stopstestrg5803.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg5803.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg5803.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-04-15T09:31:54.3552074Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg3518/providers/Microsoft.Storage/storageAccounts/stopstestrg3518\",\r\n \"name\": \"stopstestrg3518\",\r\n \"location\": \"East Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stopstestrg3518.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg3518.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg3518.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"East Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"Southeast Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-04-24T01:44:07.378324Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "672" + "683" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1453,7 +1398,7 @@ "no-cache" ], "x-ms-request-id": [ - "34e52591-d98b-4683-8cd0-38b3ff19897a" + "b46539de-4695-49dc-ae46-14225f83bcac" ], "Cache-Control": [ "no-cache" @@ -1463,40 +1408,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31870" + "31960" ], "x-ms-correlation-request-id": [ - "cf93aa5d-dd8e-4c8f-bd3c-c00c81d250fa" + "886e2432-00c6-43ab-8902-4270b09312bd" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150415T093221Z:cf93aa5d-dd8e-4c8f-bd3c-c00c81d250fa" + "WESTUS:20150424T014435Z:886e2432-00c6-43ab-8902-4270b09312bd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Wed, 15 Apr 2015 09:32:20 GMT" + "Fri, 24 Apr 2015 01:44:34 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pstestrg5803/providers/Microsoft.Storage/storageAccounts/stopstestrg5803?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YjVjMzMtNzcyNS00ZmMyLTljODEtYzliMDdkZTQ0NjY4L3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTgwMy9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNTgwMz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg3518/providers/Microsoft.Storage/storageAccounts/stopstestrg3518?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzUxOC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMzUxOD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c226c2cd-e585-4077-b226-c78722cdef11" + "ab686dff-7577-4e4c-bce2-994b783503b7" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pstestrg5803/providers/Microsoft.Storage/storageAccounts/stopstestrg5803\",\r\n \"name\": \"stopstestrg5803\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stopstestrg5803.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg5803.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg5803.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"West US\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"East US\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-04-15T09:31:54.3552074Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg3518/providers/Microsoft.Storage/storageAccounts/stopstestrg3518\",\r\n \"name\": \"stopstestrg3518\",\r\n \"location\": \"East Asia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"accountType\": \"Standard_GRS\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://stopstestrg3518.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg3518.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg3518.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"East Asia\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"secondaryLocation\": \"Southeast Asia\",\r\n \"statusOfSecondary\": \"Available\",\r\n \"creationTime\": \"2015-04-24T01:44:07.378324Z\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "672" + "683" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1508,7 +1453,7 @@ "no-cache" ], "x-ms-request-id": [ - "34e52591-d98b-4683-8cd0-38b3ff19897a" + "971b1835-cb2a-484d-b6ac-967fb1a1e18a" ], "Cache-Control": [ "no-cache" @@ -1518,101 +1463,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31870" + "31959" ], "x-ms-correlation-request-id": [ - "cf93aa5d-dd8e-4c8f-bd3c-c00c81d250fa" + "06642efe-9f50-49cf-9a8f-d0eba6e1b36f" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150415T093221Z:cf93aa5d-dd8e-4c8f-bd3c-c00c81d250fa" + "WESTUS:20150424T014435Z:06642efe-9f50-49cf-9a8f-d0eba6e1b36f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Date": [ - "Wed, 15 Apr 2015 09:32:20 GMT" + "Fri, 24 Apr 2015 01:44:35 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pstestrg5803/providers/Microsoft.Compute/virtualMachines/vmpstestrg5803?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YjVjMzMtNzcyNS00ZmMyLTljODEtYzliMDdkZTQ0NjY4L3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTgwMy9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtcHN0ZXN0cmc1ODAzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A2\"\r\n },\r\n \"storageProfile\": {\r\n \"sourceImage\": {\r\n \"id\": \"/015b5c33-7725-4fc2-9c81-c9b07de44668/services/images/a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-Datacenter-201503.01-en.us-127GB.vhd\"\r\n },\r\n \"destinationVhdsContainer\": \"https://stopstestrg5803.blob.core.windows.net/test\",\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"testDataDisk1\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg5803.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\"\r\n },\r\n {\r\n \"lun\": 1,\r\n \"diskSizeGB\": 11,\r\n \"name\": \"testDataDisk2\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg5803.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\"\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123pstestrg5803\"\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pstestrg5803/providers/Microsoft.Network/networkInterfaces/nicpstestrg5803\"\r\n }\r\n ]\r\n },\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pstestrg5803/providers/Microsoft.Compute/availabilitySets/asetpstestrg5803\"\r\n }\r\n },\r\n \"name\": \"vmpstestrg5803\",\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json" - ], - "Content-Length": [ - "1641" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pstestrg5803/providers/Microsoft.Compute/availabilitySets/ASETPSTESTRG5803\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A2\"\r\n },\r\n \"storageProfile\": {\r\n \"sourceImage\": {\r\n \"id\": \"/015b5c33-7725-4fc2-9c81-c9b07de44668/services/images/a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-Datacenter-201503.01-en.us-127GB.vhd\"\r\n },\r\n \"destinationVhdsContainer\": \"https://stopstestrg5803.blob.core.windows.net/test\",\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"vmpstestrg5803-os-20150415-093231-901640\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg5803.blob.core.windows.net/test/vmpstestrg5803-os-20150415-093231-901640.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"testDataDisk1\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg5803.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\"\r\n },\r\n {\r\n \"lun\": 1,\r\n \"diskSizeGB\": 11,\r\n \"name\": \"testDataDisk2\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg5803.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\"\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pstestrg5803/providers/Microsoft.Network/networkInterfaces/nicpstestrg5803\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"creating\"\r\n },\r\n \"id\": \"/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pstestrg5803/providers/Microsoft.Compute/virtualMachines/vmpstestrg5803\",\r\n \"name\": \"vmpstestrg5803\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "2199" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Compute/locations/westus/operations/4dd16cc9-009d-462e-81e9-a50d66acd978?api-version=2015-05-01-preview" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "4dd16cc9-009d-462e-81e9-a50d66acd978" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" - ], - "x-ms-correlation-request-id": [ - "d8c35e46-af50-488c-9aa2-1ba0e3a9ef91" - ], - "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150415T093231Z:d8c35e46-af50-488c-9aa2-1ba0e3a9ef91" - ], - "Date": [ - "Wed, 15 Apr 2015 09:32:30 GMT" - ] - }, - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Compute/locations/westus/operations/4dd16cc9-009d-462e-81e9-a50d66acd978?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YjVjMzMtNzcyNS00ZmMyLTljODEtYzliMDdkZTQ0NjY4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNGRkMTZjYzktMDA5ZC00NjJlLTgxZTktYTUwZDY2YWNkOTc4P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/publishers?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - - - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"4dd16cc9-009d-462e-81e9-a50d66acd978\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-15T02:32:29.2453573-07:00\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Barracuda.Azure.ConnectivityAgent\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Barracuda.Azure.ConnectivityAgent\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"boxless\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/boxless\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"bssw\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/bssw\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"CloudLink.SecureVM\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/CloudLink.SecureVM\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"informatica-cloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/informatica-cloud\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"marketplace-test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/marketplace-test\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"metavistech\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/metavistech\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.Azure.ServiceFabric\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Azure.ServiceFabric\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Microsoft.WindowsAzure.GuestAgent\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Microsoft.WindowsAzure.GuestAgent\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftWindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServerEssentials\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"MSOpenTech.Extensions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MSOpenTech.Extensions\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"RightScaleLinux\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/RightScaleLinux\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"RightScaleWindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/RightScaleWindowsServer\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"RiverbedTechnology\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/RiverbedTechnology\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"seagate\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/seagate\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"sharefile\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/sharefile\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"sisense\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/sisense\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"vision_solutions\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/vision_solutions\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/wowza\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "132" + "14225" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1627,7 +1508,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2cb79297-2dcc-48ec-9e2e-eaf554989380" + "32ce8b70-b924-4a89-aeba-1dfa577801c6" ], "Cache-Control": [ "no-cache" @@ -1637,37 +1518,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31875" + "31958" ], "x-ms-correlation-request-id": [ - "bfc09679-095d-4041-8430-13cab099f1c6" + "8840f29d-dfdb-4e56-a449-16e0a6069bb9" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150415T093232Z:bfc09679-095d-4041-8430-13cab099f1c6" + "WESTUS:20150424T014436Z:8840f29d-dfdb-4e56-a449-16e0a6069bb9" ], "Date": [ - "Wed, 15 Apr 2015 09:32:31 GMT" + "Fri, 24 Apr 2015 01:44:36 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Compute/locations/westus/operations/4dd16cc9-009d-462e-81e9-a50d66acd978?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YjVjMzMtNzcyNS00ZmMyLTljODEtYzliMDdkZTQ0NjY4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNGRkMTZjYzktMDA5ZC00NjJlLTgxZTktYTUwZDY2YWNkOTc4P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - - - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"4dd16cc9-009d-462e-81e9-a50d66acd978\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-15T02:32:29.2453573-07:00\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"WindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "132" + "262" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1682,7 +1560,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "33cfceb6-80d8-4465-8a46-bd9b1f1e803e" + "7a387d73-a1fa-4d79-a1f7-d0993825ebce" ], "Cache-Control": [ "no-cache" @@ -1692,37 +1570,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31868" + "31957" ], "x-ms-correlation-request-id": [ - "e3702269-f484-4da4-92be-6630d7a07d70" + "7093a7a8-e719-403d-af4b-39a8bf565c4a" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150415T093302Z:e3702269-f484-4da4-92be-6630d7a07d70" + "WESTUS:20150424T014438Z:7093a7a8-e719-403d-af4b-39a8bf565c4a" ], "Date": [ - "Wed, 15 Apr 2015 09:33:02 GMT" + "Fri, 24 Apr 2015 01:44:37 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Compute/locations/westus/operations/4dd16cc9-009d-462e-81e9-a50d66acd978?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YjVjMzMtNzcyNS00ZmMyLTljODEtYzliMDdkZTQ0NjY4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNGRkMTZjYzktMDA5ZC00NjJlLTgxZTktYTUwZDY2YWNkOTc4P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvV2luZG93c1NlcnZlci9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - - - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"4dd16cc9-009d-462e-81e9-a50d66acd978\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-15T02:32:29.2453573-07:00\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"2008-R2-SP1\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"2012-Datacenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"2012-R2-Datacenter\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"Windows-Server-Technical-Preview\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/Windows-Server-Technical-Preview\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "132" + "1163" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1737,7 +1612,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a6ddd666-9a05-42fa-97d1-6f373f6519b5" + "73d7783c-fd23-49df-a83c-7919f424bf6d" ], "Cache-Control": [ "no-cache" @@ -1747,37 +1622,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31865" + "31956" ], "x-ms-correlation-request-id": [ - "9127f642-daf4-4679-b0fa-1bb6756db41a" + "41a71a5a-d18b-4906-885c-128285c9826b" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150415T093333Z:9127f642-daf4-4679-b0fa-1bb6756db41a" + "WESTUS:20150424T014439Z:41a71a5a-d18b-4906-885c-128285c9826b" ], "Date": [ - "Wed, 15 Apr 2015 09:33:33 GMT" + "Fri, 24 Apr 2015 01:44:38 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Compute/locations/westus/operations/4dd16cc9-009d-462e-81e9-a50d66acd978?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YjVjMzMtNzcyNS00ZmMyLTljODEtYzliMDdkZTQ0NjY4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNGRkMTZjYzktMDA5ZC00NjJlLTgxZTktYTUwZDY2YWNkOTc4P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvV2luZG93c1NlcnZlci9za3VzLzIwMDgtUjItU1AxL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - - - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"4dd16cc9-009d-462e-81e9-a50d66acd978\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-15T02:32:29.2453573-07:00\"\r\n}", + "ResponseBody": "[\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"2.0.201502\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201502\"\r\n },\r\n {\r\n \"location\": \"eastasia\",\r\n \"name\": \"2.0.201503\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201503\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "132" + "589" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1792,7 +1664,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "73d0dfc4-7241-4e65-8770-064b2629deba" + "ea301994-0e84-40b9-84d8-0178ed950cd9" ], "Cache-Control": [ "no-cache" @@ -1802,37 +1674,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31858" + "31955" ], "x-ms-correlation-request-id": [ - "9346906e-1e26-46cb-89af-549b0ffe9a06" + "de531675-c3c2-44bf-af7c-27ae6e7478cd" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150415T093403Z:9346906e-1e26-46cb-89af-549b0ffe9a06" + "WESTUS:20150424T014440Z:de531675-c3c2-44bf-af7c-27ae6e7478cd" ], "Date": [ - "Wed, 15 Apr 2015 09:34:03 GMT" + "Fri, 24 Apr 2015 01:44:40 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Compute/locations/westus/operations/4dd16cc9-009d-462e-81e9-a50d66acd978?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YjVjMzMtNzcyNS00ZmMyLTljODEtYzliMDdkZTQ0NjY4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNGRkMTZjYzktMDA5ZC00NjJlLTgxZTktYTUwZDY2YWNkOTc4P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2008-R2-SP1/versions/2.0.201502?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvV2luZG93c1NlcnZlci9za3VzLzIwMDgtUjItU1AxL3ZlcnNpb25zLzIuMC4yMDE1MDI/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - - - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"4dd16cc9-009d-462e-81e9-a50d66acd978\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-15T02:32:29.2453573-07:00\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"eastasia\",\r\n \"name\": \"2.0.201502\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/eastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1/Versions/2.0.201502\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "132" + "397" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1847,7 +1716,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "831036ff-8987-4b82-b25f-458eeff69c29" + "05b646de-e8a6-468c-88d2-7aaec7cffc52" ], "Cache-Control": [ "no-cache" @@ -1857,37 +1726,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31853" + "31954" ], "x-ms-correlation-request-id": [ - "a59599ea-1ce7-4e6e-92ce-82716cd365fb" + "94e7f901-a5ba-4d08-bf78-ad47fdd9a235" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150415T093434Z:a59599ea-1ce7-4e6e-92ce-82716cd365fb" + "WESTUS:20150424T014441Z:94e7f901-a5ba-4d08-bf78-ad47fdd9a235" ], "Date": [ - "Wed, 15 Apr 2015 09:34:33 GMT" + "Fri, 24 Apr 2015 01:44:41 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Compute/locations/westus/operations/4dd16cc9-009d-462e-81e9-a50d66acd978?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YjVjMzMtNzcyNS00ZmMyLTljODEtYzliMDdkZTQ0NjY4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNGRkMTZjYzktMDA5ZC00NjJlLTgxZTktYTUwZDY2YWNkOTc4P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg3518/providers/Microsoft.Compute/virtualMachines/vmpstestrg3518?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzUxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtcHN0ZXN0cmczNTE4P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A1\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201502\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"osDisk\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg3518.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"createOption\": \"FromImage\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123pstestrg3518\",\r\n \"windowsConfiguration\": {}\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg3518/providers/Microsoft.Network/networkInterfaces/nicpstestrg3518\"\r\n }\r\n ]\r\n },\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg3518/providers/Microsoft.Compute/availabilitySets/asetpstestrg3518\"\r\n }\r\n },\r\n \"name\": \"vmpstestrg3518\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { - - - + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "1261" + ], "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"4dd16cc9-009d-462e-81e9-a50d66acd978\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-15T02:32:29.2453573-07:00\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg3518/providers/Microsoft.Compute/availabilitySets/ASETPSTESTRG3518\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A1\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"2.0.201502\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osDisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg3518.blob.core.windows.net/test/os.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg3518/providers/Microsoft.Network/networkInterfaces/nicpstestrg3518\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg3518/providers/Microsoft.Compute/virtualMachines/vmpstestrg3518\",\r\n \"name\": \"vmpstestrg3518\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {}\r\n}", "ResponseHeaders": { "Content-Length": [ - "132" + "1541" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1898,11 +1770,14 @@ "Pragma": [ "no-cache" ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/88fe1538-50ba-4ed4-95c1-355f801f38f3?api-version=2015-05-01-preview" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "316b4a19-4788-492f-a850-6d383d97a848" + "88fe1538-50ba-4ed4-95c1-355f801f38f3" ], "Cache-Control": [ "no-cache" @@ -1911,38 +1786,35 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "31857" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1190" ], "x-ms-correlation-request-id": [ - "dfe831ec-b3b2-4e6b-9e9a-5656cbd80111" + "102c5fb4-4277-4e0e-9bfb-b0b329634159" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150415T093504Z:dfe831ec-b3b2-4e6b-9e9a-5656cbd80111" + "WESTUS:20150424T014445Z:102c5fb4-4277-4e0e-9bfb-b0b329634159" ], "Date": [ - "Wed, 15 Apr 2015 09:35:03 GMT" + "Fri, 24 Apr 2015 01:44:45 GMT" ] }, - "StatusCode": 200 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Compute/locations/westus/operations/4dd16cc9-009d-462e-81e9-a50d66acd978?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YjVjMzMtNzcyNS00ZmMyLTljODEtYzliMDdkZTQ0NjY4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNGRkMTZjYzktMDA5ZC00NjJlLTgxZTktYTUwZDY2YWNkOTc4P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/88fe1538-50ba-4ed4-95c1-355f801f38f3?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy84OGZlMTUzOC01MGJhLTRlZDQtOTVjMS0zNTVmODAxZjM4ZjM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - - - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"4dd16cc9-009d-462e-81e9-a50d66acd978\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-15T02:32:29.2453573-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"88fe1538-50ba-4ed4-95c1-355f801f38f3\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-23T18:44:44.2454688-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "132" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1957,7 +1829,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c34fdafd-82df-423c-8be5-49eed7758daf" + "0c22d905-a8d4-4a16-b02f-52f67f3e5362" ], "Cache-Control": [ "no-cache" @@ -1967,37 +1839,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31848" + "31953" ], "x-ms-correlation-request-id": [ - "6149d3ae-36c8-444e-a429-e3e6de187371" + "7806a661-9621-487b-bce3-f8fabbbbded8" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150415T093535Z:6149d3ae-36c8-444e-a429-e3e6de187371" + "WESTUS:20150424T014446Z:7806a661-9621-487b-bce3-f8fabbbbded8" ], "Date": [ - "Wed, 15 Apr 2015 09:35:34 GMT" + "Fri, 24 Apr 2015 01:44:46 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Compute/locations/westus/operations/4dd16cc9-009d-462e-81e9-a50d66acd978?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YjVjMzMtNzcyNS00ZmMyLTljODEtYzliMDdkZTQ0NjY4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNGRkMTZjYzktMDA5ZC00NjJlLTgxZTktYTUwZDY2YWNkOTc4P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/88fe1538-50ba-4ed4-95c1-355f801f38f3?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy84OGZlMTUzOC01MGJhLTRlZDQtOTVjMS0zNTVmODAxZjM4ZjM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - - - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"4dd16cc9-009d-462e-81e9-a50d66acd978\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-15T02:32:29.2453573-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"88fe1538-50ba-4ed4-95c1-355f801f38f3\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-23T18:44:44.2454688-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "132" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2012,7 +1881,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a53c21c9-cf24-4226-9c4e-2f767d2f6da6" + "dc62470b-5e6e-45e0-9092-bb2692f61587" ], "Cache-Control": [ "no-cache" @@ -2022,37 +1891,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31847" + "31952" ], "x-ms-correlation-request-id": [ - "3631de9b-014a-4d04-b01b-e00f48740eb2" + "3f79abeb-5d0a-4e7a-bee5-5f8115f27e3f" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150415T093605Z:3631de9b-014a-4d04-b01b-e00f48740eb2" + "WESTUS:20150424T014517Z:3f79abeb-5d0a-4e7a-bee5-5f8115f27e3f" ], "Date": [ - "Wed, 15 Apr 2015 09:36:05 GMT" + "Fri, 24 Apr 2015 01:45:17 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Compute/locations/westus/operations/4dd16cc9-009d-462e-81e9-a50d66acd978?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YjVjMzMtNzcyNS00ZmMyLTljODEtYzliMDdkZTQ0NjY4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNGRkMTZjYzktMDA5ZC00NjJlLTgxZTktYTUwZDY2YWNkOTc4P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/88fe1538-50ba-4ed4-95c1-355f801f38f3?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy84OGZlMTUzOC01MGJhLTRlZDQtOTVjMS0zNTVmODAxZjM4ZjM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - - - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"4dd16cc9-009d-462e-81e9-a50d66acd978\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-15T02:32:29.2453573-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"88fe1538-50ba-4ed4-95c1-355f801f38f3\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-23T18:44:44.2454688-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "132" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2067,7 +1933,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0bf47a6e-9d10-401e-91d4-d2f8d0c75154" + "8568b3b9-6d29-43b5-a8f1-08eb19f81975" ], "Cache-Control": [ "no-cache" @@ -2077,37 +1943,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31844" + "31951" ], "x-ms-correlation-request-id": [ - "0899f04e-7ced-40e6-996a-e07e4b1a24a9" + "2ec5223b-8985-4d30-a75e-1f1db75b4944" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150415T093636Z:0899f04e-7ced-40e6-996a-e07e4b1a24a9" + "WESTUS:20150424T014548Z:2ec5223b-8985-4d30-a75e-1f1db75b4944" ], "Date": [ - "Wed, 15 Apr 2015 09:36:35 GMT" + "Fri, 24 Apr 2015 01:45:48 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Compute/locations/westus/operations/4dd16cc9-009d-462e-81e9-a50d66acd978?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YjVjMzMtNzcyNS00ZmMyLTljODEtYzliMDdkZTQ0NjY4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNGRkMTZjYzktMDA5ZC00NjJlLTgxZTktYTUwZDY2YWNkOTc4P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/88fe1538-50ba-4ed4-95c1-355f801f38f3?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy84OGZlMTUzOC01MGJhLTRlZDQtOTVjMS0zNTVmODAxZjM4ZjM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - - - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"4dd16cc9-009d-462e-81e9-a50d66acd978\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-15T02:32:29.2453573-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"88fe1538-50ba-4ed4-95c1-355f801f38f3\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-23T18:44:44.2454688-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "132" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2122,7 +1985,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5ee844ff-fade-4e1b-9340-c787b6b8cd94" + "20eb3536-f2a5-49bc-a07c-f3d798919029" ], "Cache-Control": [ "no-cache" @@ -2132,37 +1995,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31835" + "31950" ], "x-ms-correlation-request-id": [ - "84cf5c52-e1fc-4f47-bb0a-5ca08b22a02f" + "3661d7a4-3233-408b-838c-ec4863798812" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150415T093706Z:84cf5c52-e1fc-4f47-bb0a-5ca08b22a02f" + "WESTUS:20150424T014620Z:3661d7a4-3233-408b-838c-ec4863798812" ], "Date": [ - "Wed, 15 Apr 2015 09:37:05 GMT" + "Fri, 24 Apr 2015 01:46:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Compute/locations/westus/operations/4dd16cc9-009d-462e-81e9-a50d66acd978?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YjVjMzMtNzcyNS00ZmMyLTljODEtYzliMDdkZTQ0NjY4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNGRkMTZjYzktMDA5ZC00NjJlLTgxZTktYTUwZDY2YWNkOTc4P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/88fe1538-50ba-4ed4-95c1-355f801f38f3?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy84OGZlMTUzOC01MGJhLTRlZDQtOTVjMS0zNTVmODAxZjM4ZjM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - - - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"4dd16cc9-009d-462e-81e9-a50d66acd978\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-15T02:32:29.2453573-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"88fe1538-50ba-4ed4-95c1-355f801f38f3\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-23T18:44:44.2454688-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "132" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2177,7 +2037,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2bb4d018-c22c-422d-be79-6a1152fe79f7" + "235d35ff-89d0-4d0c-9760-f0224aca2ac9" ], "Cache-Control": [ "no-cache" @@ -2187,37 +2047,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31832" + "31949" ], "x-ms-correlation-request-id": [ - "bd22c9a1-3a39-4912-9469-6bab7de6c7d8" + "17d1b2f2-e484-402c-a780-7495ccfef08b" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150415T093736Z:bd22c9a1-3a39-4912-9469-6bab7de6c7d8" + "WESTUS:20150424T014651Z:17d1b2f2-e484-402c-a780-7495ccfef08b" ], "Date": [ - "Wed, 15 Apr 2015 09:37:36 GMT" + "Fri, 24 Apr 2015 01:46:51 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Compute/locations/westus/operations/4dd16cc9-009d-462e-81e9-a50d66acd978?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YjVjMzMtNzcyNS00ZmMyLTljODEtYzliMDdkZTQ0NjY4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNGRkMTZjYzktMDA5ZC00NjJlLTgxZTktYTUwZDY2YWNkOTc4P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/88fe1538-50ba-4ed4-95c1-355f801f38f3?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy84OGZlMTUzOC01MGJhLTRlZDQtOTVjMS0zNTVmODAxZjM4ZjM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - - - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"4dd16cc9-009d-462e-81e9-a50d66acd978\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-15T02:32:29.2453573-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"88fe1538-50ba-4ed4-95c1-355f801f38f3\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-23T18:44:44.2454688-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "132" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2232,7 +2089,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "020733e3-315c-498b-a85c-634162bd207c" + "c7f6581a-3d95-4b53-b7a4-c9d395c8c010" ], "Cache-Control": [ "no-cache" @@ -2242,37 +2099,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31831" + "31948" ], "x-ms-correlation-request-id": [ - "83dca796-d4bf-4e34-b0f9-17d178554c5f" + "e6b5b949-2ec5-4351-baa7-77f5b6affe06" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150415T093839Z:83dca796-d4bf-4e34-b0f9-17d178554c5f" + "WESTUS:20150424T014722Z:e6b5b949-2ec5-4351-baa7-77f5b6affe06" ], "Date": [ - "Wed, 15 Apr 2015 09:38:38 GMT" + "Fri, 24 Apr 2015 01:47:21 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Compute/locations/westus/operations/4dd16cc9-009d-462e-81e9-a50d66acd978?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YjVjMzMtNzcyNS00ZmMyLTljODEtYzliMDdkZTQ0NjY4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNGRkMTZjYzktMDA5ZC00NjJlLTgxZTktYTUwZDY2YWNkOTc4P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/88fe1538-50ba-4ed4-95c1-355f801f38f3?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy84OGZlMTUzOC01MGJhLTRlZDQtOTVjMS0zNTVmODAxZjM4ZjM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - - - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"4dd16cc9-009d-462e-81e9-a50d66acd978\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-15T02:32:29.2453573-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"88fe1538-50ba-4ed4-95c1-355f801f38f3\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-23T18:44:44.2454688-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "132" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2287,7 +2141,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5123b2f5-ea03-4eb2-95ae-7fd8cfbc9338" + "c28e2064-01e6-4468-9ac8-761a4e6d7317" ], "Cache-Control": [ "no-cache" @@ -2297,37 +2151,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31830" + "31947" ], "x-ms-correlation-request-id": [ - "1e0a5b7a-910a-4bc6-aed0-7d65e5638986" + "f3f06d94-0754-440c-b0f2-29cf9d6d23b0" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150415T093910Z:1e0a5b7a-910a-4bc6-aed0-7d65e5638986" + "WESTUS:20150424T014753Z:f3f06d94-0754-440c-b0f2-29cf9d6d23b0" ], "Date": [ - "Wed, 15 Apr 2015 09:39:09 GMT" + "Fri, 24 Apr 2015 01:47:52 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Compute/locations/westus/operations/4dd16cc9-009d-462e-81e9-a50d66acd978?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YjVjMzMtNzcyNS00ZmMyLTljODEtYzliMDdkZTQ0NjY4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNGRkMTZjYzktMDA5ZC00NjJlLTgxZTktYTUwZDY2YWNkOTc4P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/88fe1538-50ba-4ed4-95c1-355f801f38f3?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy84OGZlMTUzOC01MGJhLTRlZDQtOTVjMS0zNTVmODAxZjM4ZjM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - - - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"4dd16cc9-009d-462e-81e9-a50d66acd978\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-15T02:32:29.2453573-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"88fe1538-50ba-4ed4-95c1-355f801f38f3\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-23T18:44:44.2454688-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "132" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2342,7 +2193,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9211d392-3c5b-4c98-b670-7938c3d240f3" + "d0ce2f90-db3a-4adb-8694-b74988782e54" ], "Cache-Control": [ "no-cache" @@ -2352,37 +2203,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31827" + "31946" ], "x-ms-correlation-request-id": [ - "72b602c7-55fe-41e5-8cfa-025e6a650cf3" + "2b1389de-b292-47dc-9dba-a0d3d18e8809" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150415T093940Z:72b602c7-55fe-41e5-8cfa-025e6a650cf3" + "WESTUS:20150424T014824Z:2b1389de-b292-47dc-9dba-a0d3d18e8809" ], "Date": [ - "Wed, 15 Apr 2015 09:39:39 GMT" + "Fri, 24 Apr 2015 01:48:23 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Compute/locations/westus/operations/4dd16cc9-009d-462e-81e9-a50d66acd978?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YjVjMzMtNzcyNS00ZmMyLTljODEtYzliMDdkZTQ0NjY4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNGRkMTZjYzktMDA5ZC00NjJlLTgxZTktYTUwZDY2YWNkOTc4P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/88fe1538-50ba-4ed4-95c1-355f801f38f3?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy84OGZlMTUzOC01MGJhLTRlZDQtOTVjMS0zNTVmODAxZjM4ZjM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - - - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"4dd16cc9-009d-462e-81e9-a50d66acd978\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-15T02:32:29.2453573-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"88fe1538-50ba-4ed4-95c1-355f801f38f3\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-23T18:44:44.2454688-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "132" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2397,7 +2245,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "852be7dc-24fd-41eb-8d24-4c990623bf20" + "217361bf-c5b6-4615-aae9-7f8aa286114b" ], "Cache-Control": [ "no-cache" @@ -2407,37 +2255,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31824" + "31945" ], "x-ms-correlation-request-id": [ - "d8d4b8ce-a8ba-4f90-b516-99353220fa08" + "fe884d5b-fc17-4a53-a628-f979a3141063" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150415T094010Z:d8d4b8ce-a8ba-4f90-b516-99353220fa08" + "WESTUS:20150424T014855Z:fe884d5b-fc17-4a53-a628-f979a3141063" ], "Date": [ - "Wed, 15 Apr 2015 09:40:10 GMT" + "Fri, 24 Apr 2015 01:48:54 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Compute/locations/westus/operations/4dd16cc9-009d-462e-81e9-a50d66acd978?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YjVjMzMtNzcyNS00ZmMyLTljODEtYzliMDdkZTQ0NjY4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNGRkMTZjYzktMDA5ZC00NjJlLTgxZTktYTUwZDY2YWNkOTc4P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/88fe1538-50ba-4ed4-95c1-355f801f38f3?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy84OGZlMTUzOC01MGJhLTRlZDQtOTVjMS0zNTVmODAxZjM4ZjM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - - - "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"operationId\": \"4dd16cc9-009d-462e-81e9-a50d66acd978\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-04-15T02:32:29.2453573-07:00\",\r\n \"endTime\": \"2015-04-15T02:40:18.64197-07:00\"\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"88fe1538-50ba-4ed4-95c1-355f801f38f3\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-04-23T18:44:44.2454688-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "180" + "141" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2452,7 +2297,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "63557ea2-230c-4312-ada7-96b81f9cde2b" + "8f204b0d-962b-45bc-aa79-428930149411" ], "Cache-Control": [ "no-cache" @@ -2462,34 +2307,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31817" + "31942" ], "x-ms-correlation-request-id": [ - "62aa6c29-98f6-46d8-9ea3-2c64356af4f5" + "1fab3e1c-b2cb-4083-9987-9985712140b5" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150415T094041Z:62aa6c29-98f6-46d8-9ea3-2c64356af4f5" + "WESTUS:20150424T014926Z:1fab3e1c-b2cb-4083-9987-9985712140b5" ], "Date": [ - "Wed, 15 Apr 2015 09:40:41 GMT" + "Fri, 24 Apr 2015 01:49:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pstestrg5803/providers/Microsoft.Compute/virtualMachines/vmpstestrg5803?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YjVjMzMtNzcyNS00ZmMyLTljODEtYzliMDdkZTQ0NjY4L3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTgwMy9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtcHN0ZXN0cmc1ODAzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/operations/88fe1538-50ba-4ed4-95c1-355f801f38f3?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvb3BlcmF0aW9ucy84OGZlMTUzOC01MGJhLTRlZDQtOTVjMS0zNTVmODAxZjM4ZjM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pstestrg5803/providers/Microsoft.Compute/availabilitySets/ASETPSTESTRG5803\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A2\"\r\n },\r\n \"storageProfile\": {\r\n \"sourceImage\": {\r\n \"id\": \"/015b5c33-7725-4fc2-9c81-c9b07de44668/services/images/a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-Datacenter-201503.01-en.us-127GB.vhd\"\r\n },\r\n \"destinationVhdsContainer\": \"https://stopstestrg5803.blob.core.windows.net/test\",\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"vmpstestrg5803-os-20150415-093231-901640\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg5803.blob.core.windows.net/test/vmpstestrg5803-os-20150415-093231-901640.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"diskSizeGB\": 10,\r\n \"name\": \"testDataDisk1\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg5803.blob.core.windows.net/test/data1.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\"\r\n },\r\n {\r\n \"lun\": 1,\r\n \"diskSizeGB\": 11,\r\n \"name\": \"testDataDisk2\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg5803.blob.core.windows.net/test/data2.vhd\"\r\n },\r\n \"caching\": \"ReadOnly\"\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pstestrg5803/providers/Microsoft.Network/networkInterfaces/nicpstestrg5803\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"succeeded\"\r\n },\r\n \"id\": \"/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pstestrg5803/providers/Microsoft.Compute/virtualMachines/vmpstestrg5803\",\r\n \"name\": \"vmpstestrg5803\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", + "ResponseBody": "{\r\n \"operationId\": \"88fe1538-50ba-4ed4-95c1-355f801f38f3\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-04-23T18:44:44.2454688-07:00\",\r\n \"endTime\": \"2015-04-23T18:49:29.4118732-07:00\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "2200" + "191" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2504,7 +2349,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a7a46fdd-c235-4088-924e-3f54892b3830" + "a3d773f1-9485-4314-9342-672c77b530b9" ], "Cache-Control": [ "no-cache" @@ -2514,34 +2359,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31816" + "31939" ], "x-ms-correlation-request-id": [ - "9c2c5360-e6c0-4f5e-a44b-59721a7824fc" + "a35d9021-fbf0-4efc-a49a-de49301d6df8" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150415T094041Z:9c2c5360-e6c0-4f5e-a44b-59721a7824fc" + "WESTUS:20150424T014957Z:a35d9021-fbf0-4efc-a49a-de49301d6df8" ], "Date": [ - "Wed, 15 Apr 2015 09:40:41 GMT" + "Fri, 24 Apr 2015 01:49:56 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Compute/locations/WestUS/vmSizes?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YjVjMzMtNzcyNS00ZmMyLTljODEtYzliMDdkZTQ0NjY4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvV2VzdFVTL3ZtU2l6ZXM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/vmSizes?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvdm1TaXplcz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Standard_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Standard_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 71680,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A6\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A7\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Basic_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Basic_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 40960,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Basic_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 61440,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Basic_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 122880,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Basic_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 245760,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 51200,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_D2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D11\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D12\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D13\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D14\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_A8\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 391168,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A9\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 391168,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_G1\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 393216,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_G2\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 786432,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_G3\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 1572864,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_G4\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 3145728,\r\n \"memoryInMB\": 229376,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_G5\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 6291456,\r\n \"memoryInMB\": 458752,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_DS1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 51200,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_DS2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_DS3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_DS4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_DS11\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_DS12\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_DS13\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_DS14\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Standard_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Standard_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 71680,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Basic_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Basic_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 40960,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Basic_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 61440,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Basic_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 122880,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Basic_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 245760,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A6\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A7\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 51200,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_D2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D11\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D12\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D13\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D14\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "7274" + "4222" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2556,7 +2401,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "53958b61-4ee0-476e-8e89-fa9ea7cbd6cd" + "1f98c417-76dc-4f53-8df0-17234e673a22" ], "Cache-Control": [ "no-cache" @@ -2566,28 +2411,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31792" + "31938" ], "x-ms-correlation-request-id": [ - "f41c31ab-a3e8-474c-9d7d-13b329104adb" + "2758db40-d03e-4651-b1a0-9145a67705e7" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150415T094235Z:f41c31ab-a3e8-474c-9d7d-13b329104adb" + "WESTUS:20150424T014958Z:2758db40-d03e-4651-b1a0-9145a67705e7" ], "Date": [ - "Wed, 15 Apr 2015 09:42:35 GMT" + "Fri, 24 Apr 2015 01:49:57 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pstestrg5803/providers/Microsoft.Compute/virtualMachines/vmpstestrg5803/vmSizes?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YjVjMzMtNzcyNS00ZmMyLTljODEtYzliMDdkZTQ0NjY4L3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTgwMy9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtcHN0ZXN0cmc1ODAzL3ZtU2l6ZXM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg3518/providers/Microsoft.Compute/virtualMachines/vmpstestrg3518/vmSizes?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzUxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtcHN0ZXN0cmczNTE4L3ZtU2l6ZXM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Standard_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Standard_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 71680,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A6\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A7\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Basic_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Basic_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 40960,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Basic_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 61440,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Basic_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 122880,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Basic_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 245760,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n }\r\n ]\r\n}", @@ -2608,7 +2453,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8cb10e08-01db-4fd3-9c26-14bc08517e0d" + "e550a7d8-1482-447a-8b15-9175349d7bd0" ], "Cache-Control": [ "no-cache" @@ -2618,28 +2463,28 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31791" + "31937" ], "x-ms-correlation-request-id": [ - "bb312e08-594f-4f64-9d84-a3214047e2ce" + "54beb308-1d5f-470e-b2b1-79485a4a8bbf" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150415T094236Z:bb312e08-594f-4f64-9d84-a3214047e2ce" + "WESTUS:20150424T014958Z:54beb308-1d5f-470e-b2b1-79485a4a8bbf" ], "Date": [ - "Wed, 15 Apr 2015 09:42:36 GMT" + "Fri, 24 Apr 2015 01:49:58 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pstestrg5803/providers/Microsoft.Compute/availabilitySets/asetpstestrg5803/vmSizes?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YjVjMzMtNzcyNS00ZmMyLTljODEtYzliMDdkZTQ0NjY4L3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNTgwMy9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXZhaWxhYmlsaXR5U2V0cy9hc2V0cHN0ZXN0cmc1ODAzL3ZtU2l6ZXM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg3518/providers/Microsoft.Compute/availabilitySets/asetpstestrg3518/vmSizes?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzUxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXZhaWxhYmlsaXR5U2V0cy9hc2V0cHN0ZXN0cmczNTE4L3ZtU2l6ZXM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Standard_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Standard_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 71680,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A6\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A7\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Basic_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Basic_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 40960,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Basic_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 61440,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Basic_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 122880,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Basic_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 130048,\r\n \"resourceDiskSizeInMB\": 245760,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n }\r\n ]\r\n}", @@ -2660,7 +2505,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "23e0da79-4992-4630-be32-63a5fba7b21c" + "a8b6b043-ee61-427b-9b71-0061f4e340e2" ], "Cache-Control": [ "no-cache" @@ -2670,34 +2515,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31790" + "31936" ], "x-ms-correlation-request-id": [ - "4139d0ff-ff06-48f3-82a6-df2c4c214f86" + "869abc4a-245f-45fa-8d15-a686c368ab92" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150415T094237Z:4139d0ff-ff06-48f3-82a6-df2c4c214f86" + "WESTUS:20150424T014959Z:869abc4a-245f-45fa-8d15-a686c368ab92" ], "Date": [ - "Wed, 15 Apr 2015 09:42:37 GMT" + "Fri, 24 Apr 2015 01:49:59 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Compute/locations/WestUS/usages?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YjVjMzMtNzcyNS00ZmMyLTljODEtYzliMDdkZTQ0NjY4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvV2VzdFVTL3VzYWdlcz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/eastasia/usages?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdGFzaWEvdXNhZ2VzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Compute.ComputeManagementClient/3.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"unit\": \"Count\",\r\n \"currentValue\": -10,\r\n \"limit\": 20,\r\n \"name\": {\r\n \"value\": \"cores\",\r\n \"localizedValue\": \"Cores\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"unit\": \"Count\",\r\n \"currentValue\": 9,\r\n \"limit\": 20,\r\n \"name\": {\r\n \"value\": \"cores\",\r\n \"localizedValue\": \"Cores\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "197" + "195" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2712,7 +2557,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4170cae5-9cb4-4584-b9f1-e3eeb7ef1887" + "adb328b9-6721-4cc4-ae95-d079acb87dd7" ], "Cache-Control": [ "no-cache" @@ -2722,23 +2567,23 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31785" + "31935" ], "x-ms-correlation-request-id": [ - "a2b13db7-3f32-46ad-ab3d-a5888f3d6794" + "80d61206-b351-4a44-8a73-a9a6724efeeb" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150415T094241Z:a2b13db7-3f32-46ad-ab3d-a5888f3d6794" + "WESTUS:20150424T015000Z:80d61206-b351-4a44-8a73-a9a6724efeeb" ], "Date": [ - "Wed, 15 Apr 2015 09:42:40 GMT" + "Fri, 24 Apr 2015 01:50:00 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourcegroups/pstestrg5803?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YjVjMzMtNzcyNS00ZmMyLTljODEtYzliMDdkZTQ0NjY4L3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNTgwMz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg3518?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnMzUxOD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -2761,16 +2606,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1191" ], "x-ms-request-id": [ - "4d7f11e6-593e-462f-8b5c-30499dc37f9f" + "f280b63e-0e3e-44b2-8f34-0d6a15e26784" ], "x-ms-correlation-request-id": [ - "4d7f11e6-593e-462f-8b5c-30499dc37f9f" + "f280b63e-0e3e-44b2-8f34-0d6a15e26784" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150415T094243Z:4d7f11e6-593e-462f-8b5c-30499dc37f9f" + "WESTUS:20150424T015003Z:f280b63e-0e3e-44b2-8f34-0d6a15e26784" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2779,17 +2624,17 @@ "no-cache" ], "Date": [ - "Wed, 15 Apr 2015 09:42:42 GMT" + "Fri, 24 Apr 2015 01:50:03 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU4MDMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM1MTgtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU4MDMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YjVjMzMtNzcyNS00ZmMyLTljODEtYzliMDdkZTQ0NjY4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelU0TURNdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM1MTgtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0xTVRndFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2815,16 +2660,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31857" + "31916" ], "x-ms-request-id": [ - "979a95c3-1d59-4c81-9ef6-6e80e77be3e1" + "0216e401-7dae-42e5-8081-29cf9fa6db5a" ], "x-ms-correlation-request-id": [ - "979a95c3-1d59-4c81-9ef6-6e80e77be3e1" + "0216e401-7dae-42e5-8081-29cf9fa6db5a" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150415T094243Z:979a95c3-1d59-4c81-9ef6-6e80e77be3e1" + "WESTUS:20150424T015004Z:0216e401-7dae-42e5-8081-29cf9fa6db5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2833,17 +2678,17 @@ "no-cache" ], "Date": [ - "Wed, 15 Apr 2015 09:42:43 GMT" + "Fri, 24 Apr 2015 01:50:03 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU4MDMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM1MTgtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU4MDMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YjVjMzMtNzcyNS00ZmMyLTljODEtYzliMDdkZTQ0NjY4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelU0TURNdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM1MTgtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0xTVRndFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2869,16 +2714,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31856" + "31915" ], "x-ms-request-id": [ - "3565cc55-3ff4-45ac-857f-02806d32083d" + "17ac80db-9bd8-49a8-ad4e-97fafb7a02a0" ], "x-ms-correlation-request-id": [ - "3565cc55-3ff4-45ac-857f-02806d32083d" + "17ac80db-9bd8-49a8-ad4e-97fafb7a02a0" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150415T094258Z:3565cc55-3ff4-45ac-857f-02806d32083d" + "WESTUS:20150424T015020Z:17ac80db-9bd8-49a8-ad4e-97fafb7a02a0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2887,17 +2732,17 @@ "no-cache" ], "Date": [ - "Wed, 15 Apr 2015 09:42:57 GMT" + "Fri, 24 Apr 2015 01:50:19 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU4MDMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM1MTgtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU4MDMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YjVjMzMtNzcyNS00ZmMyLTljODEtYzliMDdkZTQ0NjY4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelU0TURNdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM1MTgtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0xTVRndFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2923,16 +2768,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31855" + "31914" ], "x-ms-request-id": [ - "a32704e0-5265-44f0-8979-0043ea5aac81" + "8687b8c3-7bd8-4f45-bc97-87e0d1181d72" ], "x-ms-correlation-request-id": [ - "a32704e0-5265-44f0-8979-0043ea5aac81" + "8687b8c3-7bd8-4f45-bc97-87e0d1181d72" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150415T094313Z:a32704e0-5265-44f0-8979-0043ea5aac81" + "WESTUS:20150424T015035Z:8687b8c3-7bd8-4f45-bc97-87e0d1181d72" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2941,17 +2786,17 @@ "no-cache" ], "Date": [ - "Wed, 15 Apr 2015 09:43:13 GMT" + "Fri, 24 Apr 2015 01:50:35 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU4MDMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM1MTgtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU4MDMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YjVjMzMtNzcyNS00ZmMyLTljODEtYzliMDdkZTQ0NjY4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelU0TURNdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM1MTgtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0xTVRndFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2977,16 +2822,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31854" + "31913" ], "x-ms-request-id": [ - "83919510-6975-4625-9ce5-79753aba116f" + "2810b1b3-6159-428a-b200-47218728a4ca" ], "x-ms-correlation-request-id": [ - "83919510-6975-4625-9ce5-79753aba116f" + "2810b1b3-6159-428a-b200-47218728a4ca" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150415T094328Z:83919510-6975-4625-9ce5-79753aba116f" + "WESTUS:20150424T015050Z:2810b1b3-6159-428a-b200-47218728a4ca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2995,17 +2840,17 @@ "no-cache" ], "Date": [ - "Wed, 15 Apr 2015 09:43:28 GMT" + "Fri, 24 Apr 2015 01:50:50 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU4MDMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM1MTgtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU4MDMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YjVjMzMtNzcyNS00ZmMyLTljODEtYzliMDdkZTQ0NjY4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelU0TURNdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM1MTgtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0xTVRndFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3031,16 +2876,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31853" + "31912" ], "x-ms-request-id": [ - "2596dd0b-ad87-4f20-85d6-1fefd35867d4" + "7e82e4de-4bb4-4cad-a970-4b3f19b825d1" ], "x-ms-correlation-request-id": [ - "2596dd0b-ad87-4f20-85d6-1fefd35867d4" + "7e82e4de-4bb4-4cad-a970-4b3f19b825d1" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150415T094344Z:2596dd0b-ad87-4f20-85d6-1fefd35867d4" + "WESTUS:20150424T015106Z:7e82e4de-4bb4-4cad-a970-4b3f19b825d1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3049,17 +2894,17 @@ "no-cache" ], "Date": [ - "Wed, 15 Apr 2015 09:43:43 GMT" + "Fri, 24 Apr 2015 01:51:05 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU4MDMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM1MTgtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU4MDMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YjVjMzMtNzcyNS00ZmMyLTljODEtYzliMDdkZTQ0NjY4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelU0TURNdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM1MTgtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0xTVRndFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3085,16 +2930,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31852" + "31911" ], "x-ms-request-id": [ - "e1263138-dc46-4e17-a37d-53b195db3fe4" + "47fb3bb9-b18a-495a-ad76-6990b59f2123" ], "x-ms-correlation-request-id": [ - "e1263138-dc46-4e17-a37d-53b195db3fe4" + "47fb3bb9-b18a-495a-ad76-6990b59f2123" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150415T094359Z:e1263138-dc46-4e17-a37d-53b195db3fe4" + "WESTUS:20150424T015121Z:47fb3bb9-b18a-495a-ad76-6990b59f2123" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3103,17 +2948,17 @@ "no-cache" ], "Date": [ - "Wed, 15 Apr 2015 09:43:58 GMT" + "Fri, 24 Apr 2015 01:51:21 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU4MDMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM1MTgtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU4MDMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YjVjMzMtNzcyNS00ZmMyLTljODEtYzliMDdkZTQ0NjY4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelU0TURNdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM1MTgtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0xTVRndFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3139,16 +2984,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31851" + "31909" ], "x-ms-request-id": [ - "4a3b7517-3d36-450b-82db-7832be21e088" + "792bf026-40b6-441a-bc38-edb349e25480" ], "x-ms-correlation-request-id": [ - "4a3b7517-3d36-450b-82db-7832be21e088" + "792bf026-40b6-441a-bc38-edb349e25480" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150415T094414Z:4a3b7517-3d36-450b-82db-7832be21e088" + "WESTUS:20150424T015136Z:792bf026-40b6-441a-bc38-edb349e25480" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3157,17 +3002,17 @@ "no-cache" ], "Date": [ - "Wed, 15 Apr 2015 09:44:13 GMT" + "Fri, 24 Apr 2015 01:51:36 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU4MDMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM1MTgtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU4MDMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YjVjMzMtNzcyNS00ZmMyLTljODEtYzliMDdkZTQ0NjY4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelU0TURNdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM1MTgtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0xTVRndFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3193,16 +3038,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31850" + "31906" ], "x-ms-request-id": [ - "057c9ddd-97a8-43a6-b242-4577a72ca1fc" + "6b126db5-80a7-4dc1-adad-15dd53394fb8" ], "x-ms-correlation-request-id": [ - "057c9ddd-97a8-43a6-b242-4577a72ca1fc" + "6b126db5-80a7-4dc1-adad-15dd53394fb8" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150415T094429Z:057c9ddd-97a8-43a6-b242-4577a72ca1fc" + "WESTUS:20150424T015152Z:6b126db5-80a7-4dc1-adad-15dd53394fb8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3211,17 +3056,17 @@ "no-cache" ], "Date": [ - "Wed, 15 Apr 2015 09:44:29 GMT" + "Fri, 24 Apr 2015 01:51:52 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU4MDMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM1MTgtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU4MDMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YjVjMzMtNzcyNS00ZmMyLTljODEtYzliMDdkZTQ0NjY4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelU0TURNdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM1MTgtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0xTVRndFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3247,16 +3092,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31849" + "31905" ], "x-ms-request-id": [ - "44de198c-be91-4273-878c-ccd325404007" + "7e314eca-fe91-4cd7-87c3-a0b2cf5cbd58" ], "x-ms-correlation-request-id": [ - "44de198c-be91-4273-878c-ccd325404007" + "7e314eca-fe91-4cd7-87c3-a0b2cf5cbd58" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150415T094444Z:44de198c-be91-4273-878c-ccd325404007" + "WESTUS:20150424T015207Z:7e314eca-fe91-4cd7-87c3-a0b2cf5cbd58" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3265,17 +3110,17 @@ "no-cache" ], "Date": [ - "Wed, 15 Apr 2015 09:44:44 GMT" + "Fri, 24 Apr 2015 01:52:07 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU4MDMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM1MTgtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU4MDMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YjVjMzMtNzcyNS00ZmMyLTljODEtYzliMDdkZTQ0NjY4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelU0TURNdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM1MTgtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0xTVRndFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3301,16 +3146,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31848" + "31904" ], "x-ms-request-id": [ - "9530c2af-c1e1-49f5-bfc7-351cb868f48f" + "d1da5b1f-53d9-4f20-a3a8-30ed1427dbb9" ], "x-ms-correlation-request-id": [ - "9530c2af-c1e1-49f5-bfc7-351cb868f48f" + "d1da5b1f-53d9-4f20-a3a8-30ed1427dbb9" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150415T094500Z:9530c2af-c1e1-49f5-bfc7-351cb868f48f" + "WESTUS:20150424T015223Z:d1da5b1f-53d9-4f20-a3a8-30ed1427dbb9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3319,17 +3164,17 @@ "no-cache" ], "Date": [ - "Wed, 15 Apr 2015 09:44:59 GMT" + "Fri, 24 Apr 2015 01:52:22 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU4MDMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM1MTgtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU4MDMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YjVjMzMtNzcyNS00ZmMyLTljODEtYzliMDdkZTQ0NjY4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelU0TURNdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM1MTgtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0xTVRndFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3355,16 +3200,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31847" + "31901" ], "x-ms-request-id": [ - "0c81c1a4-5f75-4d3c-a6b0-0a78a2633816" + "42ca47e4-68c9-402a-8781-c5c1374a1598" ], "x-ms-correlation-request-id": [ - "0c81c1a4-5f75-4d3c-a6b0-0a78a2633816" + "42ca47e4-68c9-402a-8781-c5c1374a1598" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150415T094515Z:0c81c1a4-5f75-4d3c-a6b0-0a78a2633816" + "WESTUS:20150424T015238Z:42ca47e4-68c9-402a-8781-c5c1374a1598" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3373,17 +3218,17 @@ "no-cache" ], "Date": [ - "Wed, 15 Apr 2015 09:45:15 GMT" + "Fri, 24 Apr 2015 01:52:38 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU4MDMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM1MTgtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU4MDMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YjVjMzMtNzcyNS00ZmMyLTljODEtYzliMDdkZTQ0NjY4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelU0TURNdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM1MTgtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0xTVRndFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3409,16 +3254,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31846" + "31900" ], "x-ms-request-id": [ - "59ee660b-8f16-4203-b4f2-94142fc32eb0" + "f4f88f89-c44c-41ae-9213-e7251896ac13" ], "x-ms-correlation-request-id": [ - "59ee660b-8f16-4203-b4f2-94142fc32eb0" + "f4f88f89-c44c-41ae-9213-e7251896ac13" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150415T094530Z:59ee660b-8f16-4203-b4f2-94142fc32eb0" + "WESTUS:20150424T015253Z:f4f88f89-c44c-41ae-9213-e7251896ac13" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3427,17 +3272,17 @@ "no-cache" ], "Date": [ - "Wed, 15 Apr 2015 09:45:29 GMT" + "Fri, 24 Apr 2015 01:52:53 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU4MDMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM1MTgtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU4MDMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YjVjMzMtNzcyNS00ZmMyLTljODEtYzliMDdkZTQ0NjY4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelU0TURNdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM1MTgtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0xTVRndFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3463,16 +3308,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31845" + "31897" ], "x-ms-request-id": [ - "33bc3fa6-2834-4c4c-bec4-7d4de2e0ed1e" + "ebc61c09-2c0b-4715-bd4e-e9dfd257c768" ], "x-ms-correlation-request-id": [ - "33bc3fa6-2834-4c4c-bec4-7d4de2e0ed1e" + "ebc61c09-2c0b-4715-bd4e-e9dfd257c768" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150415T094545Z:33bc3fa6-2834-4c4c-bec4-7d4de2e0ed1e" + "WESTUS:20150424T015309Z:ebc61c09-2c0b-4715-bd4e-e9dfd257c768" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3481,17 +3326,17 @@ "no-cache" ], "Date": [ - "Wed, 15 Apr 2015 09:45:45 GMT" + "Fri, 24 Apr 2015 01:53:08 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU4MDMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM1MTgtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU4MDMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YjVjMzMtNzcyNS00ZmMyLTljODEtYzliMDdkZTQ0NjY4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelU0TURNdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM1MTgtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0xTVRndFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3517,16 +3362,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31844" + "31896" ], "x-ms-request-id": [ - "a3701455-8c02-40eb-8b3d-bf30266b6518" + "645c1887-2712-4cb8-90a6-35342307ff48" ], "x-ms-correlation-request-id": [ - "a3701455-8c02-40eb-8b3d-bf30266b6518" + "645c1887-2712-4cb8-90a6-35342307ff48" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150415T094600Z:a3701455-8c02-40eb-8b3d-bf30266b6518" + "WESTUS:20150424T015324Z:645c1887-2712-4cb8-90a6-35342307ff48" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3535,17 +3380,17 @@ "no-cache" ], "Date": [ - "Wed, 15 Apr 2015 09:46:00 GMT" + "Fri, 24 Apr 2015 01:53:23 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU4MDMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM1MTgtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU4MDMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YjVjMzMtNzcyNS00ZmMyLTljODEtYzliMDdkZTQ0NjY4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelU0TURNdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM1MTgtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0xTVRndFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3571,16 +3416,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31841" + "31895" ], "x-ms-request-id": [ - "b900fe33-4b68-4dd1-bc86-88ac80231dac" + "6d67f533-4fff-49de-9397-4ee211c229c5" ], "x-ms-correlation-request-id": [ - "b900fe33-4b68-4dd1-bc86-88ac80231dac" + "6d67f533-4fff-49de-9397-4ee211c229c5" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150415T094616Z:b900fe33-4b68-4dd1-bc86-88ac80231dac" + "WESTUS:20150424T015339Z:6d67f533-4fff-49de-9397-4ee211c229c5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3589,17 +3434,17 @@ "no-cache" ], "Date": [ - "Wed, 15 Apr 2015 09:46:15 GMT" + "Fri, 24 Apr 2015 01:53:39 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU4MDMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM1MTgtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU4MDMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YjVjMzMtNzcyNS00ZmMyLTljODEtYzliMDdkZTQ0NjY4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelU0TURNdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM1MTgtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0xTVRndFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3625,16 +3470,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31840" + "31892" ], "x-ms-request-id": [ - "54f22f0d-097e-4850-9b34-d374456cdaf0" + "573f06dc-7b45-469c-963c-41633e41dc05" ], "x-ms-correlation-request-id": [ - "54f22f0d-097e-4850-9b34-d374456cdaf0" + "573f06dc-7b45-469c-963c-41633e41dc05" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150415T094631Z:54f22f0d-097e-4850-9b34-d374456cdaf0" + "WESTUS:20150424T015355Z:573f06dc-7b45-469c-963c-41633e41dc05" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3643,17 +3488,17 @@ "no-cache" ], "Date": [ - "Wed, 15 Apr 2015 09:46:31 GMT" + "Fri, 24 Apr 2015 01:53:54 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU4MDMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM1MTgtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU4MDMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YjVjMzMtNzcyNS00ZmMyLTljODEtYzliMDdkZTQ0NjY4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelU0TURNdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM1MTgtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0xTVRndFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3679,16 +3524,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31839" + "31891" ], "x-ms-request-id": [ - "0c6cc9fb-3177-44f5-85eb-4eb0695cf325" + "68aae382-856b-450d-a516-da7bc41578dd" ], "x-ms-correlation-request-id": [ - "0c6cc9fb-3177-44f5-85eb-4eb0695cf325" + "68aae382-856b-450d-a516-da7bc41578dd" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150415T094646Z:0c6cc9fb-3177-44f5-85eb-4eb0695cf325" + "WESTUS:20150424T015410Z:68aae382-856b-450d-a516-da7bc41578dd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3697,17 +3542,17 @@ "no-cache" ], "Date": [ - "Wed, 15 Apr 2015 09:46:46 GMT" + "Fri, 24 Apr 2015 01:54:09 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU4MDMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM1MTgtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU4MDMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YjVjMzMtNzcyNS00ZmMyLTljODEtYzliMDdkZTQ0NjY4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelU0TURNdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM1MTgtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0xTVRndFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3733,16 +3578,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31838" + "31890" ], "x-ms-request-id": [ - "f081b28c-53db-4e1b-9689-197ebd7d4c2b" + "44b68722-bfe0-4c70-996e-26af601d40c9" ], "x-ms-correlation-request-id": [ - "f081b28c-53db-4e1b-9689-197ebd7d4c2b" + "44b68722-bfe0-4c70-996e-26af601d40c9" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150415T094702Z:f081b28c-53db-4e1b-9689-197ebd7d4c2b" + "WESTUS:20150424T015425Z:44b68722-bfe0-4c70-996e-26af601d40c9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3751,17 +3596,17 @@ "no-cache" ], "Date": [ - "Wed, 15 Apr 2015 09:47:01 GMT" + "Fri, 24 Apr 2015 01:54:25 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU4MDMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM1MTgtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU4MDMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YjVjMzMtNzcyNS00ZmMyLTljODEtYzliMDdkZTQ0NjY4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelU0TURNdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM1MTgtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0xTVRndFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3787,16 +3632,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31837" + "31889" ], "x-ms-request-id": [ - "1c7dffcf-41f3-482c-8ef7-a74c6135b62a" + "039c3401-5732-46d1-9db2-2500e9d6c80e" ], "x-ms-correlation-request-id": [ - "1c7dffcf-41f3-482c-8ef7-a74c6135b62a" + "039c3401-5732-46d1-9db2-2500e9d6c80e" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150415T094717Z:1c7dffcf-41f3-482c-8ef7-a74c6135b62a" + "WESTUS:20150424T015441Z:039c3401-5732-46d1-9db2-2500e9d6c80e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3805,17 +3650,17 @@ "no-cache" ], "Date": [ - "Wed, 15 Apr 2015 09:47:16 GMT" + "Fri, 24 Apr 2015 01:54:40 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU4MDMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM1MTgtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU4MDMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YjVjMzMtNzcyNS00ZmMyLTljODEtYzliMDdkZTQ0NjY4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelU0TURNdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM1MTgtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0xTVRndFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3841,16 +3686,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31836" + "31888" ], "x-ms-request-id": [ - "becb67a9-d90c-44d4-a6f8-15ee6a9191b6" + "24975a75-c8ac-4401-89ea-47c999d44f85" ], "x-ms-correlation-request-id": [ - "becb67a9-d90c-44d4-a6f8-15ee6a9191b6" + "24975a75-c8ac-4401-89ea-47c999d44f85" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150415T094732Z:becb67a9-d90c-44d4-a6f8-15ee6a9191b6" + "WESTUS:20150424T015456Z:24975a75-c8ac-4401-89ea-47c999d44f85" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3859,17 +3704,17 @@ "no-cache" ], "Date": [ - "Wed, 15 Apr 2015 09:47:31 GMT" + "Fri, 24 Apr 2015 01:54:56 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU4MDMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM1MTgtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU4MDMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YjVjMzMtNzcyNS00ZmMyLTljODEtYzliMDdkZTQ0NjY4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelU0TURNdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM1MTgtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0xTVRndFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3895,16 +3740,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31835" + "31887" ], "x-ms-request-id": [ - "7f485d3d-e11e-466f-ad52-9dc070d675a5" + "0ef759a3-5ca8-48a6-b8da-7cc7084e3e28" ], "x-ms-correlation-request-id": [ - "7f485d3d-e11e-466f-ad52-9dc070d675a5" + "0ef759a3-5ca8-48a6-b8da-7cc7084e3e28" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150415T094747Z:7f485d3d-e11e-466f-ad52-9dc070d675a5" + "WESTUS:20150424T015512Z:0ef759a3-5ca8-48a6-b8da-7cc7084e3e28" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3913,17 +3758,17 @@ "no-cache" ], "Date": [ - "Wed, 15 Apr 2015 09:47:47 GMT" + "Fri, 24 Apr 2015 01:55:11 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU4MDMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM1MTgtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU4MDMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YjVjMzMtNzcyNS00ZmMyLTljODEtYzliMDdkZTQ0NjY4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelU0TURNdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM1MTgtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0xTVRndFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3949,16 +3794,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31832" + "31886" ], "x-ms-request-id": [ - "9eeafbb3-98e9-4587-af1f-2764f2a7cf48" + "fe53247f-d92f-4f69-bb95-7b5fcc605c87" ], "x-ms-correlation-request-id": [ - "9eeafbb3-98e9-4587-af1f-2764f2a7cf48" + "fe53247f-d92f-4f69-bb95-7b5fcc605c87" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150415T094802Z:9eeafbb3-98e9-4587-af1f-2764f2a7cf48" + "WESTUS:20150424T015527Z:fe53247f-d92f-4f69-bb95-7b5fcc605c87" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3967,17 +3812,17 @@ "no-cache" ], "Date": [ - "Wed, 15 Apr 2015 09:48:02 GMT" + "Fri, 24 Apr 2015 01:55:27 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU4MDMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM1MTgtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU4MDMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YjVjMzMtNzcyNS00ZmMyLTljODEtYzliMDdkZTQ0NjY4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelU0TURNdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM1MTgtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0xTVRndFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4003,16 +3848,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31825" + "31885" ], "x-ms-request-id": [ - "38990c84-1ae8-48dd-99ed-161ee9b62144" + "652dea21-c87f-4778-b4c0-7d868f68d696" ], "x-ms-correlation-request-id": [ - "38990c84-1ae8-48dd-99ed-161ee9b62144" + "652dea21-c87f-4778-b4c0-7d868f68d696" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150415T094818Z:38990c84-1ae8-48dd-99ed-161ee9b62144" + "WESTUS:20150424T015542Z:652dea21-c87f-4778-b4c0-7d868f68d696" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4021,17 +3866,17 @@ "no-cache" ], "Date": [ - "Wed, 15 Apr 2015 09:48:17 GMT" + "Fri, 24 Apr 2015 01:55:41 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU4MDMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM1MTgtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU4MDMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YjVjMzMtNzcyNS00ZmMyLTljODEtYzliMDdkZTQ0NjY4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelU0TURNdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM1MTgtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0xTVRndFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4057,16 +3902,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31822" + "31884" ], "x-ms-request-id": [ - "634a1309-ecc0-4c21-8b02-6ee32105cbb9" + "46d1b64c-814b-46b1-839e-a9df54082601" ], "x-ms-correlation-request-id": [ - "634a1309-ecc0-4c21-8b02-6ee32105cbb9" + "46d1b64c-814b-46b1-839e-a9df54082601" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150415T094833Z:634a1309-ecc0-4c21-8b02-6ee32105cbb9" + "WESTUS:20150424T015558Z:46d1b64c-814b-46b1-839e-a9df54082601" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4075,17 +3920,17 @@ "no-cache" ], "Date": [ - "Wed, 15 Apr 2015 09:48:32 GMT" + "Fri, 24 Apr 2015 01:55:57 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU4MDMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM1MTgtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU4MDMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YjVjMzMtNzcyNS00ZmMyLTljODEtYzliMDdkZTQ0NjY4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelU0TURNdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM1MTgtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0xTVRndFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4111,16 +3956,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31821" + "31883" ], "x-ms-request-id": [ - "8121c8a7-5e7a-4eae-b547-1eb53d8094f4" + "36246c7c-96a3-4fd2-8685-effa4e2c5068" ], "x-ms-correlation-request-id": [ - "8121c8a7-5e7a-4eae-b547-1eb53d8094f4" + "36246c7c-96a3-4fd2-8685-effa4e2c5068" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150415T094848Z:8121c8a7-5e7a-4eae-b547-1eb53d8094f4" + "WESTUS:20150424T015613Z:36246c7c-96a3-4fd2-8685-effa4e2c5068" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4129,17 +3974,17 @@ "no-cache" ], "Date": [ - "Wed, 15 Apr 2015 09:48:48 GMT" + "Fri, 24 Apr 2015 01:56:12 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU4MDMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM1MTgtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU4MDMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YjVjMzMtNzcyNS00ZmMyLTljODEtYzliMDdkZTQ0NjY4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelU0TURNdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM1MTgtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0xTVRndFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4165,16 +4010,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31820" + "31882" ], "x-ms-request-id": [ - "e046495f-444d-481b-9a53-eb62c997096f" + "7335c293-0e98-4e35-9ea6-ee26db23ae75" ], "x-ms-correlation-request-id": [ - "e046495f-444d-481b-9a53-eb62c997096f" + "7335c293-0e98-4e35-9ea6-ee26db23ae75" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150415T094903Z:e046495f-444d-481b-9a53-eb62c997096f" + "WESTUS:20150424T015628Z:7335c293-0e98-4e35-9ea6-ee26db23ae75" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4183,17 +4028,17 @@ "no-cache" ], "Date": [ - "Wed, 15 Apr 2015 09:49:03 GMT" + "Fri, 24 Apr 2015 01:56:28 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU4MDMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM1MTgtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU4MDMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YjVjMzMtNzcyNS00ZmMyLTljODEtYzliMDdkZTQ0NjY4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelU0TURNdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM1MTgtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0xTVRndFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4219,16 +4064,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31819" + "31877" ], "x-ms-request-id": [ - "3246d6eb-a319-4c4c-ba76-2897d27919a5" + "7f26684d-c287-45f5-ab59-addc9e2bc258" ], "x-ms-correlation-request-id": [ - "3246d6eb-a319-4c4c-ba76-2897d27919a5" + "7f26684d-c287-45f5-ab59-addc9e2bc258" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150415T094919Z:3246d6eb-a319-4c4c-ba76-2897d27919a5" + "WESTUS:20150424T015644Z:7f26684d-c287-45f5-ab59-addc9e2bc258" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4237,17 +4082,17 @@ "no-cache" ], "Date": [ - "Wed, 15 Apr 2015 09:49:18 GMT" + "Fri, 24 Apr 2015 01:56:43 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU4MDMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM1MTgtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU4MDMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YjVjMzMtNzcyNS00ZmMyLTljODEtYzliMDdkZTQ0NjY4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelU0TURNdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM1MTgtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0xTVRndFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4273,16 +4118,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31814" + "31876" ], "x-ms-request-id": [ - "b1c6d873-ed5b-4150-acc2-4afba95387ff" + "beccc114-436a-4b3a-bab4-bb485a8049c1" ], "x-ms-correlation-request-id": [ - "b1c6d873-ed5b-4150-acc2-4afba95387ff" + "beccc114-436a-4b3a-bab4-bb485a8049c1" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150415T094934Z:b1c6d873-ed5b-4150-acc2-4afba95387ff" + "WESTUS:20150424T015659Z:beccc114-436a-4b3a-bab4-bb485a8049c1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4291,17 +4136,17 @@ "no-cache" ], "Date": [ - "Wed, 15 Apr 2015 09:49:34 GMT" + "Fri, 24 Apr 2015 01:56:58 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU4MDMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM1MTgtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU4MDMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YjVjMzMtNzcyNS00ZmMyLTljODEtYzliMDdkZTQ0NjY4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelU0TURNdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM1MTgtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0xTVRndFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4327,16 +4172,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31811" + "31875" ], "x-ms-request-id": [ - "b8bb5329-8784-496d-813b-8d7fe76d56fc" + "f1a9c687-4f3c-468e-b907-47604f3e8440" ], "x-ms-correlation-request-id": [ - "b8bb5329-8784-496d-813b-8d7fe76d56fc" + "f1a9c687-4f3c-468e-b907-47604f3e8440" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150415T094949Z:b8bb5329-8784-496d-813b-8d7fe76d56fc" + "WESTUS:20150424T015715Z:f1a9c687-4f3c-468e-b907-47604f3e8440" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4345,17 +4190,17 @@ "no-cache" ], "Date": [ - "Wed, 15 Apr 2015 09:49:48 GMT" + "Fri, 24 Apr 2015 01:57:15 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU4MDMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM1MTgtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU4MDMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YjVjMzMtNzcyNS00ZmMyLTljODEtYzliMDdkZTQ0NjY4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelU0TURNdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM1MTgtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0xTVRndFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4381,16 +4226,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31806" + "31873" ], "x-ms-request-id": [ - "8aafb1f2-0bce-4ca9-81f1-f60891eccacf" + "20832a5b-31e8-4f7d-9552-cddcbfc25f06" ], "x-ms-correlation-request-id": [ - "8aafb1f2-0bce-4ca9-81f1-f60891eccacf" + "20832a5b-31e8-4f7d-9552-cddcbfc25f06" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150415T095005Z:8aafb1f2-0bce-4ca9-81f1-f60891eccacf" + "WESTUS:20150424T015730Z:20832a5b-31e8-4f7d-9552-cddcbfc25f06" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4399,17 +4244,17 @@ "no-cache" ], "Date": [ - "Wed, 15 Apr 2015 09:50:04 GMT" + "Fri, 24 Apr 2015 01:57:29 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU4MDMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM1MTgtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU4MDMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YjVjMzMtNzcyNS00ZmMyLTljODEtYzliMDdkZTQ0NjY4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelU0TURNdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM1MTgtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0xTVRndFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4435,16 +4280,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31801" + "31872" ], "x-ms-request-id": [ - "a22084e4-cd48-40ff-88e6-0d2a84d2348b" + "bb8d830f-4b3d-4026-832c-a0d471469d66" ], "x-ms-correlation-request-id": [ - "a22084e4-cd48-40ff-88e6-0d2a84d2348b" + "bb8d830f-4b3d-4026-832c-a0d471469d66" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150415T095020Z:a22084e4-cd48-40ff-88e6-0d2a84d2348b" + "WESTUS:20150424T015745Z:bb8d830f-4b3d-4026-832c-a0d471469d66" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4453,17 +4298,17 @@ "no-cache" ], "Date": [ - "Wed, 15 Apr 2015 09:50:20 GMT" + "Fri, 24 Apr 2015 01:57:45 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU4MDMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM1MTgtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU4MDMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YjVjMzMtNzcyNS00ZmMyLTljODEtYzliMDdkZTQ0NjY4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelU0TURNdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM1MTgtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0xTVRndFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4489,16 +4334,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31800" + "31871" ], "x-ms-request-id": [ - "d90476e0-4f65-4f78-8076-b0fb02ea9c06" + "87e0b619-2d98-4280-932d-389135412546" ], "x-ms-correlation-request-id": [ - "d90476e0-4f65-4f78-8076-b0fb02ea9c06" + "87e0b619-2d98-4280-932d-389135412546" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150415T095035Z:d90476e0-4f65-4f78-8076-b0fb02ea9c06" + "WESTUS:20150424T015801Z:87e0b619-2d98-4280-932d-389135412546" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4507,17 +4352,17 @@ "no-cache" ], "Date": [ - "Wed, 15 Apr 2015 09:50:34 GMT" + "Fri, 24 Apr 2015 01:58:00 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU4MDMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM1MTgtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU4MDMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YjVjMzMtNzcyNS00ZmMyLTljODEtYzliMDdkZTQ0NjY4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelU0TURNdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM1MTgtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0xTVRndFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4543,16 +4388,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31799" + "31870" ], "x-ms-request-id": [ - "19113a8b-ac08-4b76-9f6e-a56de508bf2c" + "cf768a35-0dcb-47e6-bd4c-ee3b28ddfc9e" ], "x-ms-correlation-request-id": [ - "19113a8b-ac08-4b76-9f6e-a56de508bf2c" + "cf768a35-0dcb-47e6-bd4c-ee3b28ddfc9e" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150415T095050Z:19113a8b-ac08-4b76-9f6e-a56de508bf2c" + "WESTUS:20150424T015816Z:cf768a35-0dcb-47e6-bd4c-ee3b28ddfc9e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4561,17 +4406,17 @@ "no-cache" ], "Date": [ - "Wed, 15 Apr 2015 09:50:50 GMT" + "Fri, 24 Apr 2015 01:58:15 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU4MDMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM1MTgtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU4MDMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YjVjMzMtNzcyNS00ZmMyLTljODEtYzliMDdkZTQ0NjY4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelU0TURNdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM1MTgtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0xTVRndFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4597,16 +4442,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31796" + "31868" ], "x-ms-request-id": [ - "95e82e4a-3adb-4ae2-bfda-af358af63e23" + "2137c230-3185-4f38-89fc-6ced192a09d1" ], "x-ms-correlation-request-id": [ - "95e82e4a-3adb-4ae2-bfda-af358af63e23" + "2137c230-3185-4f38-89fc-6ced192a09d1" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150415T095106Z:95e82e4a-3adb-4ae2-bfda-af358af63e23" + "WESTUS:20150424T015831Z:2137c230-3185-4f38-89fc-6ced192a09d1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4615,17 +4460,17 @@ "no-cache" ], "Date": [ - "Wed, 15 Apr 2015 09:51:05 GMT" + "Fri, 24 Apr 2015 01:58:31 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU4MDMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM1MTgtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzU4MDMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDE1YjVjMzMtNzcyNS00ZmMyLTljODEtYzliMDdkZTQ0NjY4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelU0TURNdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM1MTgtRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6ImVhc3Rhc2lhIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0xTVRndFJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUmhjMmxoSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4648,16 +4493,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31795" + "31866" ], "x-ms-request-id": [ - "b72fde8b-47f1-4036-a948-efd3809f725e" + "c2d8ab38-2dff-487e-ad41-b1ddc703c92b" ], "x-ms-correlation-request-id": [ - "b72fde8b-47f1-4036-a948-efd3809f725e" + "c2d8ab38-2dff-487e-ad41-b1ddc703c92b" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150415T095121Z:b72fde8b-47f1-4036-a948-efd3809f725e" + "WESTUS:20150424T015847Z:c2d8ab38-2dff-487e-ad41-b1ddc703c92b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4666,7 +4511,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Apr 2015 09:51:21 GMT" + "Fri, 24 Apr 2015 01:58:46 GMT" ] }, "StatusCode": 200 @@ -4674,12 +4519,12 @@ ], "Names": { "Test-VirtualMachineSizeAndUsage": [ - "pstestrg5803" + "pstestrg3518" ] }, "Variables": { - "SubscriptionId": "015b5c33-7725-4fc2-9c81-c9b07de44668", + "SubscriptionId": "4d368445-cbb1-42a7-97a6-6850ab99f48e", "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", "Domain": "microsoft.com" } -} +} \ No newline at end of file diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/packages.config b/src/ResourceManager/Compute/Commands.Compute.Test/packages.config index 3e2845c22493..85092fa9ffa8 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/packages.config +++ b/src/ResourceManager/Compute/Commands.Compute.Test/packages.config @@ -7,10 +7,10 @@ <package id="Microsoft.Azure.Gallery" version="2.6.2-preview" targetFramework="net45" /> <package id="Microsoft.Azure.Graph.RBAC" version="1.7.0-preview" targetFramework="net45" /> <package id="Microsoft.Azure.Management.Authorization" version="0.18.2-preview" targetFramework="net45" /> - <package id="Microsoft.Azure.Management.Compute" version="5.0.0-preview" targetFramework="net45" /> + <package id="Microsoft.Azure.Management.Compute" version="5.0.1-preview" targetFramework="net45" /> <package id="Microsoft.Azure.Management.Network" version="2.0.0-preview" targetFramework="net45" /> <package id="Microsoft.Azure.Management.Resources" version="2.18.0-preview" targetFramework="net45" /> - <package id="Microsoft.Azure.Management.Storage" version="2.3.0-preview" targetFramework="net45" /> + <package id="Microsoft.Azure.Management.Storage" version="2.4.0-preview" targetFramework="net45" /> <package id="Microsoft.Azure.Test.Framework" version="1.0.5571.32271-prerelease" targetFramework="net45" /> <package id="Microsoft.Azure.Test.HttpRecorder" version="1.0.5571.32271-prerelease" targetFramework="net45" /> <package id="Microsoft.Bcl" version="1.1.9" targetFramework="net45" /> diff --git a/src/ResourceManager/Compute/Commands.Compute/AvailabilitySets/AvailabilitySetBaseCmdlet.cs b/src/ResourceManager/Compute/Commands.Compute/AvailabilitySets/AvailabilitySetBaseCmdlet.cs index 88884c1298e9..c68a850ec964 100644 --- a/src/ResourceManager/Compute/Commands.Compute/AvailabilitySets/AvailabilitySetBaseCmdlet.cs +++ b/src/ResourceManager/Compute/Commands.Compute/AvailabilitySets/AvailabilitySetBaseCmdlet.cs @@ -18,29 +18,8 @@ namespace Microsoft.Azure.Commands.Compute { - public abstract class AvailabilitySetBaseCmdlet : AzurePSCmdlet + public abstract class AvailabilitySetBaseCmdlet : ComputeClientBaseCmdlet { - private ComputeClient computeClient; - - public ComputeClient ComputeClient - { - get - { - if (computeClient == null) - { - computeClient = new ComputeClient(Profile.Context) - { - VerboseLogger = WriteVerboseWithTimestamp, - ErrorLogger = WriteErrorWithTimestamp - }; - } - - return computeClient; - } - - set { computeClient = value; } - } - public IAvailabilitySetOperations AvailabilitySetClient { get @@ -65,10 +44,5 @@ public IAvailabilitySetOperations AvailabilitySetClient HelpMessage = "The resource name.")] [ValidateNotNullOrEmpty] public virtual string Name { get; set; } - - public override void ExecuteCmdlet() - { - base.ExecuteCmdlet(); - } } } diff --git a/src/ResourceManager/Compute/Commands.Compute/AvailabilitySets/GetAzureAvailabilitySetCommand.cs b/src/ResourceManager/Compute/Commands.Compute/AvailabilitySets/GetAzureAvailabilitySetCommand.cs index d93292a5b708..2f11853d5884 100644 --- a/src/ResourceManager/Compute/Commands.Compute/AvailabilitySets/GetAzureAvailabilitySetCommand.cs +++ b/src/ResourceManager/Compute/Commands.Compute/AvailabilitySets/GetAzureAvailabilitySetCommand.cs @@ -12,9 +12,11 @@ // limitations under the License. // ---------------------------------------------------------------------------------- +using AutoMapper; using Microsoft.Azure.Commands.Compute.Common; using Microsoft.Azure.Commands.Compute.Models; using Microsoft.Azure.Management.Compute; +using System.Collections.Generic; using System.Management.Automation; namespace Microsoft.Azure.Commands.Compute @@ -45,13 +47,22 @@ public override void ExecuteCmdlet() if (string.IsNullOrEmpty(this.Name)) { - var op = this.AvailabilitySetClient.List(this.ResourceGroupName); - WriteObject(op.ToPSAvailabilitySetList(this.ResourceGroupName), true); + var result = this.AvailabilitySetClient.List(this.ResourceGroupName); + + List<PSAvailabilitySet> psResultList = new List<PSAvailabilitySet>(); + foreach (var item in result.AvailabilitySets) + { + var psItem = Mapper.Map<PSAvailabilitySet>(item); + psResultList.Add(psItem); + } + + WriteObject(psResultList, true); } else { - var op = this.AvailabilitySetClient.Get(this.ResourceGroupName, this.Name); - WriteObject(op.ToPSAvailabilitySet(this.ResourceGroupName)); + var result = this.AvailabilitySetClient.Get(this.ResourceGroupName, this.Name); + var psResult = Mapper.Map<PSAvailabilitySet>(result.AvailabilitySet); + WriteObject(psResult); } } } diff --git a/src/ResourceManager/Compute/Commands.Compute/Commands.Compute.csproj b/src/ResourceManager/Compute/Commands.Compute/Commands.Compute.csproj index 90a81e3bf0ab..718327c99b84 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Commands.Compute.csproj +++ b/src/ResourceManager/Compute/Commands.Compute/Commands.Compute.csproj @@ -48,6 +48,11 @@ <Prefer32Bit>false</Prefer32Bit> </PropertyGroup> <ItemGroup> + <Reference Include="AutoMapper, Version=3.1.1.0, Culture=neutral, PublicKeyToken=be96cd2c38ef1005, processorArchitecture=MSIL"> + <SpecificVersion>False</SpecificVersion> + <HintPath>..\..\..\packages\AutoMapper.3.1.1\lib\net40\AutoMapper.dll</HintPath> + </Reference> + <Reference Include="AutoMapper.Net4, Version=3.1.1.0, Culture=neutral, PublicKeyToken=be96cd2c38ef1005, processorArchitecture=MSIL" /> <Reference Include="Hyak.Common"> <HintPath>..\..\..\packages\Hyak.Common.1.0.2\lib\portable-net403+win+wpa81\Hyak.Common.dll</HintPath> </Reference> @@ -73,12 +78,15 @@ <HintPath>..\..\..\packages\Microsoft.Azure.Management.Authorization.0.18.2-preview\lib\net40\Microsoft.Azure.Management.Authorization.dll</HintPath> </Reference> <Reference Include="Microsoft.Azure.Management.Compute, Version=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"> - <HintPath>..\..\..\packages\Microsoft.Azure.Management.Compute.5.0.0-preview\lib\net40\Microsoft.Azure.Management.Compute.dll</HintPath> - <Private>True</Private> + <SpecificVersion>False</SpecificVersion> + <HintPath>..\..\..\packages\Microsoft.Azure.Management.Compute.5.0.1-preview\lib\net40\Microsoft.Azure.Management.Compute.dll</HintPath> + </Reference> + <Reference Include="Microsoft.Azure.Management.Network"> + <HintPath>..\..\..\packages\Microsoft.Azure.Management.Network.2.0.0-preview\lib\net40\Microsoft.Azure.Management.Network.dll</HintPath> </Reference> <Reference Include="Microsoft.Azure.Management.Storage, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"> - <SpecificVersion>False</SpecificVersion> - <HintPath>..\..\..\packages\Microsoft.Azure.Management.Storage.2.3.0-preview\lib\net40\Microsoft.Azure.Management.Storage.dll</HintPath> + <HintPath>..\..\..\packages\Microsoft.Azure.Management.Storage.2.4.0-preview\lib\net40\Microsoft.Azure.Management.Storage.dll</HintPath> + <Private>True</Private> </Reference> <Reference Include="Microsoft.Azure.ResourceManager"> <HintPath>..\..\..\packages\Microsoft.Azure.Management.Resources.2.18.0-preview\lib\net40\Microsoft.Azure.ResourceManager.dll</HintPath> @@ -137,10 +145,12 @@ <Compile Include="AvailabilitySets\GetAzureAvailabilitySetCommand.cs" /> <Compile Include="AvailabilitySets\NewAzureAvailabilitySetCommand.cs" /> <Compile Include="AvailabilitySets\AvailabilitySetBaseCmdlet.cs" /> + <Compile Include="Common\ComputeAutoMapperProfile.cs" /> + <Compile Include="Common\ComputeClientBaseCmdlet.cs" /> <Compile Include="Common\ComputeClient.cs" /> <Compile Include="ExtensionImages\GetAzureVMExtensionImageTypeCommand.cs" /> - <Compile Include="ExtensionImages\GetAzureVMExtensionImageVersionCommand.cs" /> <Compile Include="ExtensionImages\GetAzureVMExtensionImageCommand.cs" /> + <Compile Include="ExtensionImages\GetAzureVMExtensionImageDetailCommand.cs" /> <Compile Include="ExtensionImages\VirtualMachineExtensionImageBaseCmdlet.cs" /> <Compile Include="Extension\CustomScript\GetAzureVMCustomScriptExtensionCommand.cs" /> <Compile Include="Extension\CustomScript\CustomScriptExtensionPrivateSettings.cs" /> @@ -151,7 +161,7 @@ <Compile Include="Extension\SetAzureVMExtensionCommand.cs" /> <Compile Include="Extension\RemoveAzureVMExtensionCommand.cs" /> <Compile Include="Extension\GetAzureVMExtensionCommand.cs" /> - <Compile Include="Images\GetAzureVMImageVersionCommand.cs" /> + <Compile Include="Images\GetAzureVMImageCommand.cs" /> <Compile Include="Models\PSStorageAccount.cs" /> <Compile Include="Extension\VMAccess\GetAzureVMAccessExtension.cs" /> <Compile Include="Extension\VMAccess\RemoveAzureVMAccessExtension.cs" /> @@ -162,20 +172,19 @@ <Compile Include="Images\GetAzureVMImageSkuCommand.cs" /> <Compile Include="Images\GetAzureVMImagePublisherCommand.cs" /> <Compile Include="Images\GetAzureVMImageOfferCommand.cs" /> - <Compile Include="Images\GetAzureVMImageCommand.cs" /> + <Compile Include="Images\GetAzureVMImageDetailCommand.cs" /> <Compile Include="Images\VirtualMachineImageBaseCmdlet.cs" /> - <Compile Include="Models\PSAdditionalUnattendContent.cs" /> - <Compile Include="Models\PSSshPublicKey.cs" /> - <Compile Include="Models\PSVaultCertificate.cs" /> - <Compile Include="Models\PSVaultSecretGroup.cs" /> <Compile Include="Models\PSOperationContext.cs" /> - <Compile Include="Models\PSVirtualMachineExtensionImageDetails.cs" /> + <Compile Include="Models\PSUsage.cs" /> <Compile Include="Models\PSVirtualMachineExtensionImage.cs" /> - <Compile Include="Models\PSVirtualMachineImageDetails.cs" /> <Compile Include="Models\PSVirtualMachineImage.cs" /> <Compile Include="Models\PSVirtualMachineExtension.cs" /> <Compile Include="Models\PSAvailabilitySet.cs" /> <Compile Include="Models\PSVirtualMachineInstanceView.cs" /> + <Compile Include="Models\PSVirtualMachineSize.cs" /> + <Compile Include="Models\LocationStringExtensions.cs" /> + <Compile Include="RemoteDesktop\VirtualMachineRemoteDesktopBaseCmdlet.cs" /> + <Compile Include="RemoteDesktop\GetAzureRemoteDesktopFileCommand.cs" /> <Compile Include="StorageAccount\StorageManagementClient.cs" /> <Compile Include="Models\SourceImageReferenceExtension.cs" /> <Compile Include="StorageAccount\GetAzureStorageAccount.cs" /> @@ -191,10 +200,9 @@ <Compile Include="VirtualMachineSizes\VirtualMachineSizeBaseCmdlet.cs" /> <Compile Include="VirtualMachine\Action\SaveAzureVMImageCommand.cs" /> <Compile Include="VirtualMachine\Action\SetAzureVMCommand.cs" /> - <Compile Include="VirtualMachine\Config\NewAzureAdditionalUnattendContentCommand.cs" /> - <Compile Include="VirtualMachine\Config\NewAzureSshPublicKeyCommand.cs" /> - <Compile Include="VirtualMachine\Config\NewAzureVaultCertificateCommand.cs" /> - <Compile Include="VirtualMachine\Config\NewAzureVaultSecretGroupCommand.cs" /> + <Compile Include="VirtualMachine\Config\AddAzureVMAdditionalUnattendContentCommand.cs" /> + <Compile Include="VirtualMachine\Config\AddAzureVMSshPublicKeyCommand.cs" /> + <Compile Include="VirtualMachine\Config\AddAzureVMSecretCommand.cs" /> <Compile Include="VirtualMachine\Config\RemoveAzureVMNetworkInterfaceCommand.cs" /> <Compile Include="VirtualMachine\Config\RemoveAzureVMDataDiskCommand.cs" /> <Compile Include="VirtualMachine\Config\SetAzureVMSourceImage.cs" /> @@ -234,6 +242,10 @@ <Project>{c60342b1-47d3-4a0e-8081-9b97ce60b7af}</Project> <Name>Commands.Profile</Name> </ProjectReference> + <ProjectReference Include="..\..\Network\Commands.Network\Commands.Network.csproj"> + <Project>{98cfd96b-a6bc-4f15-ae2c-603fc2b58981}</Project> + <Name>Commands.Network</Name> + </ProjectReference> <ProjectReference Include="..\..\Resources\Commands.Resources\Commands.Resources.csproj"> <Project>{e1f5201d-6067-430e-b303-4e367652991b}</Project> <Name>Commands.Resources</Name> diff --git a/src/ResourceManager/Compute/Commands.Compute/Common/ComputeAutoMapperProfile.cs b/src/ResourceManager/Compute/Commands.Compute/Common/ComputeAutoMapperProfile.cs new file mode 100644 index 000000000000..0f66d1887a34 --- /dev/null +++ b/src/ResourceManager/Compute/Commands.Compute/Common/ComputeAutoMapperProfile.cs @@ -0,0 +1,77 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.Compute +{ + using AutoMapper; + using System; + using System.Collections; + using System.Collections.Generic; + using FROM = Microsoft.Azure.Management.Compute.Models; + using TO = Microsoft.Azure.Commands.Compute.Models; + + public static class ComputeMapperExtension + { + public static IMappingExpression<TSource, TDestination> ForItems<TSource, TDestination, T>( + this IMappingExpression<TSource, TDestination> mapper) + where TSource : IEnumerable + where TDestination : ICollection<T> + { + mapper.AfterMap((c, s) => + { + if (c != null && s != null) + { + foreach (var t in c) + { + s.Add(Mapper.Map<T>(t)); + } + } + }); + + return mapper; + } + } + + public class ComputeAutoMapperProfile : Profile + { + private static readonly Lazy<bool> initialize; + + static ComputeAutoMapperProfile() + { + initialize = new Lazy<bool>(() => + { + Mapper.AddProfile<ComputeAutoMapperProfile>(); + return true; + }); + } + + public override string ProfileName + { + get { return "ComputeAutoMapperProfile"; } + } + + public static bool Initialize() + { + return initialize.Value; + } + + protected override void Configure() + { + Mapper.CreateMap<FROM.AvailabilitySet, TO.PSAvailabilitySet>(); + Mapper.CreateMap<FROM.VirtualMachine, TO.PSVirtualMachine>(); + Mapper.CreateMap<FROM.VirtualMachineSize, TO.PSVirtualMachineSize>(); + Mapper.CreateMap<FROM.Usage, TO.PSUsage>(); + } + } +} \ No newline at end of file diff --git a/src/ResourceManager/Compute/Commands.Compute/Common/ComputeClient.cs b/src/ResourceManager/Compute/Commands.Compute/Common/ComputeClient.cs index 6419aa719015..cc5730c547f8 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Common/ComputeClient.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Common/ComputeClient.cs @@ -12,12 +12,10 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using System; -using Microsoft.Azure.Management.Compute; -using Microsoft.WindowsAzure.Commands.Utilities.Common; -using Microsoft.WindowsAzure.Commands.Common; -using Microsoft.Azure.Common.Authentication.Models; using Microsoft.Azure.Common.Authentication; +using Microsoft.Azure.Common.Authentication.Models; +using Microsoft.Azure.Management.Compute; +using System; namespace Microsoft.Azure.Commands.Compute { diff --git a/src/ResourceManager/Compute/Commands.Compute/Common/ComputeClientBaseCmdlet.cs b/src/ResourceManager/Compute/Commands.Compute/Common/ComputeClientBaseCmdlet.cs new file mode 100644 index 000000000000..b915449145c0 --- /dev/null +++ b/src/ResourceManager/Compute/Commands.Compute/Common/ComputeClientBaseCmdlet.cs @@ -0,0 +1,47 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.WindowsAzure.Commands.Utilities.Common; + +namespace Microsoft.Azure.Commands.Compute +{ + public abstract class ComputeClientBaseCmdlet : AzurePSCmdlet + { + private ComputeClient computeClient; + + public ComputeClient ComputeClient + { + get + { + if (computeClient == null) + { + computeClient = new ComputeClient(Profile.Context) + { + VerboseLogger = WriteVerboseWithTimestamp, + ErrorLogger = WriteErrorWithTimestamp + }; + } + + return computeClient; + } + + set { computeClient = value; } + } + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + ComputeAutoMapperProfile.Initialize(); + } + } +} diff --git a/src/ResourceManager/Compute/Commands.Compute/Common/ConstantStringTypes.cs b/src/ResourceManager/Compute/Commands.Compute/Common/ConstantStringTypes.cs index 6f33294ad5b8..31a3ef05ef16 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Common/ConstantStringTypes.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Common/ConstantStringTypes.cs @@ -73,9 +73,11 @@ public static class ProfileNouns public const string VirtualMachineExtensionImage = "AzureVMExtensionImage"; public const string VirtualMachineExtensionImageVersion = "AzureVMExtensionImageVersion"; public const string VirtualMachineExtensionImageType = "AzureVMExtensionImageType"; + public const string VirtualMachineExtensionImageDetail = "AzureVMExtensionImageDetail"; public const string AvailabilitySet = "AzureAvailabilitySet"; public const string VirtualMachineConfig = "AzureVMConfig"; + public const string VirtualMachinePlan = "AzureVMPlan"; public const string VirtualMachineSize = "AzureVMSize"; @@ -83,13 +85,14 @@ public static class ProfileNouns public const string VirtualMachineImagePublisher = "AzureVMImagePublisher"; public const string VirtualMachineImageOffer = "AzureVMImageOffer"; public const string VirtualMachineImageSku = "AzureVMImageSku"; + public const string VirtualMachineImageDetail = "AzureVMImageDetail"; public const string VirtualMachineImageVersion = "AzureVMImageVersion"; public const string VirtualMachineUsage = "AzureVMUsage"; - public const string SshPublicKey = "AzureSshPublicKey"; - public const string AdditionalUnattendContent = "AzureAdditionalUnattendContent"; - public const string VaultCertificate = "AzureVaultCertificate"; - public const string VaultSecretGroup = "AzureVaultSecretGroup"; + public const string SshPublicKey = "AzureVMSshPublicKey"; + public const string AdditionalUnattendContent = "AzureVMAdditionalUnattendContent"; + public const string VaultSecretGroup = "AzureVMSecret"; + public const string RemoteDesktopFile = "AzureRemoteDesktopFile"; } } diff --git a/src/ResourceManager/Compute/Commands.Compute/Common/ExtensionSettingBuilder.cs b/src/ResourceManager/Compute/Commands.Compute/Common/ExtensionSettingBuilder.cs deleted file mode 100644 index 35076129f671..000000000000 --- a/src/ResourceManager/Compute/Commands.Compute/Common/ExtensionSettingBuilder.cs +++ /dev/null @@ -1,158 +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; -using System.Collections; -using System.Collections.Generic; -using System.Linq; -using System.Text; - -namespace Microsoft.Azure.Commands.Compute.Common -{ - public class JsonSettingBuilder - { - private const char SingleQuote = '\''; - private const char DoubleQuote = '"'; - private const char LeftBracket = '['; - private const char RightBracket = ']'; - private const char LeftCurly = '{'; - private const char RightCurly = '}'; - private const char Colon = ':'; - private const char Comma = ','; - - private IDictionary<string, string> settings; - - public JsonSettingBuilder() - { - this.settings = new Dictionary<string, string>(); - } - - public JsonSettingBuilder(IDictionary<string, string> settings) - { - if (settings == null) - { - throw new ArgumentNullException(); - } - - this.settings = settings; - } - - public JsonSettingBuilder(Hashtable hashtable) - { - if (hashtable == null) - { - throw new ArgumentNullException(); - } - - this.settings = new Dictionary<string, string>(); - foreach (var key in hashtable.Keys) - { - this.settings.Add(key.ToString(), hashtable[key].ToString()); - } - } - - public override string ToString() - { - var sb = new StringBuilder(); - - sb.Append(LeftCurly); - - var settings = this.settings.Keys.Select(k => BuildSetting(k, this.settings[k])); - sb.Append(string.Join(Comma.ToString(), settings)); - - sb.Append(RightCurly); - - return sb.ToString(); - } - - private string BuildSetting(string key, string value) - { - var sb = new StringBuilder(); - - sb.Append(NormalizeKey(key)); - sb.Append(Colon); - sb.Append(NormalizeKey(value)); - - return sb.ToString(); - } - - private string NormalizeKey(string key) - { - var sb = new StringBuilder(); - - if (IsWrappedByDoubleQuotes(key)) - { - sb.Append(key); - } - else if (IsWrappedBySingleQuotes(key)) - { - sb.Replace(SingleQuote, DoubleQuote, 0, 1); - sb.Replace(SingleQuote, DoubleQuote, sb.Length - 1, 1); - } - else - { - sb.Append(DoubleQuote).Append(key).Append(DoubleQuote); - } - - return sb.ToString(); - } - - private string NormalizeValue(string value) - { - var sb = new StringBuilder(); - - if (IsWrappedByBrackets(value)) - { - sb.Append(value); - } - else - { - sb.Append(NormalizeKey(value)); - } - - return sb.ToString(); - } - - private bool IsWrappedByDoubleQuotes(string str) - { - return IsWrappedByCharacters(str, DoubleQuote); - } - - private bool IsWrappedBySingleQuotes(string str) - { - return IsWrappedByCharacters(str, SingleQuote); - } - - private bool IsWrappedByBrackets(string str) - { - return IsWrappedByCharacters(str, LeftBracket, RightBracket) - || IsWrappedByCharacters(str, LeftCurly, RightCurly); - } - - private bool IsWrappedByCharacters(string str, char ch, StringComparison sc = StringComparison.OrdinalIgnoreCase) - { - return IsWrappedByCharacters(str, ch, ch, sc); - } - - private bool IsWrappedByCharacters(string str, char start, char end, StringComparison sc = StringComparison.OrdinalIgnoreCase) - { - if (!string.IsNullOrEmpty(str) && str.Length >= 2) - { - return str.StartsWith(start.ToString(), sc) && str.EndsWith(end.ToString(), sc); - } - - return false; - } - } -} diff --git a/src/ResourceManager/Compute/Commands.Compute/Extension/CustomScript/VirtualMachineCustomScriptExtensionContext.cs b/src/ResourceManager/Compute/Commands.Compute/Extension/CustomScript/VirtualMachineCustomScriptExtensionContext.cs index a8a304bc4c47..a6b142496e36 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Extension/CustomScript/VirtualMachineCustomScriptExtensionContext.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Extension/CustomScript/VirtualMachineCustomScriptExtensionContext.cs @@ -20,7 +20,7 @@ public class VirtualMachineCustomScriptExtensionContext : PSVirtualMachineExtens { public const string ExtensionDefaultPublisher = "Microsoft.Compute"; public const string ExtensionDefaultName = "CustomScriptExtension"; - public const string ExtensionDefaultVersion = "1.*"; + public const string ExtensionDefaultVersion = "1.4"; public string CommandToExecute { get; set; } diff --git a/src/ResourceManager/Compute/Commands.Compute/Extension/VMAccess/VirtualMachineAccessExtensionContext.cs b/src/ResourceManager/Compute/Commands.Compute/Extension/VMAccess/VirtualMachineAccessExtensionContext.cs index 743813e72232..82d18e6ff7a2 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Extension/VMAccess/VirtualMachineAccessExtensionContext.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Extension/VMAccess/VirtualMachineAccessExtensionContext.cs @@ -23,7 +23,7 @@ public class VirtualMachineAccessExtensionContext : PSVirtualMachineExtension public const string ExtensionDefaultPublisher = "Microsoft.Compute"; public const string ExtensionDefaultName = "VMAccessAgent"; - public const string ExtensionDefaultVersion = "2.*"; + public const string ExtensionDefaultVersion = "2.0"; public string UserName { get; set; } public SecureString Password { get; set; } diff --git a/src/ResourceManager/Compute/Commands.Compute/Extension/VirtualMachineExtensionBaseCmdlet.cs b/src/ResourceManager/Compute/Commands.Compute/Extension/VirtualMachineExtensionBaseCmdlet.cs index 7b15f4527dff..4752b4b3639e 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Extension/VirtualMachineExtensionBaseCmdlet.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Extension/VirtualMachineExtensionBaseCmdlet.cs @@ -13,36 +13,14 @@ // ---------------------------------------------------------------------------------- using Microsoft.Azure.Management.Compute; -using Microsoft.WindowsAzure.Commands.Utilities.Common; using System.Management.Automation; namespace Microsoft.Azure.Commands.Compute { - public abstract class VirtualMachineExtensionBaseCmdlet : AzurePSCmdlet + public abstract class VirtualMachineExtensionBaseCmdlet : ComputeClientBaseCmdlet { protected const string VirtualMachineExtensionType = "Microsoft.Compute/virtualMachines/extensions"; - private ComputeClient computeClient; - - public ComputeClient ComputeClient - { - get - { - if (computeClient == null) - { - computeClient = new ComputeClient(Profile.Context) - { - VerboseLogger = WriteVerboseWithTimestamp, - ErrorLogger = WriteErrorWithTimestamp - }; - } - - return computeClient; - } - - set { computeClient = value; } - } - public IVirtualMachineExtensionOperations VirtualMachineExtensionClient { get @@ -76,10 +54,5 @@ public IVirtualMachineExtensionOperations VirtualMachineExtensionClient HelpMessage = "The extension name.")] [ValidateNotNullOrEmpty] public virtual string Name { get; set; } - - public override void ExecuteCmdlet() - { - base.ExecuteCmdlet(); - } } } diff --git a/src/ResourceManager/Compute/Commands.Compute/ExtensionImages/GetAzureVMExtensionImageCommand.cs b/src/ResourceManager/Compute/Commands.Compute/ExtensionImages/GetAzureVMExtensionImageCommand.cs index d8aa6a3c6103..fc142923423f 100644 --- a/src/ResourceManager/Compute/Commands.Compute/ExtensionImages/GetAzureVMExtensionImageCommand.cs +++ b/src/ResourceManager/Compute/Commands.Compute/ExtensionImages/GetAzureVMExtensionImageCommand.cs @@ -16,12 +16,13 @@ using Microsoft.Azure.Commands.Compute.Models; using Microsoft.Azure.Management.Compute; using Microsoft.Azure.Management.Compute.Models; +using System.Linq; using System.Management.Automation; namespace Microsoft.Azure.Commands.Compute { [Cmdlet(VerbsCommon.Get, ProfileNouns.VirtualMachineExtensionImage)] - [OutputType(typeof(PSVirtualMachineExtensionImageDetails))] + [OutputType(typeof(PSVirtualMachineExtensionImage))] public class GetAzureVMExtensionImageCommand : VirtualMachineExtensionImageBaseCmdlet { [Parameter(Mandatory = true, ValueFromPipelineByPropertyName = true), ValidateNotNullOrEmpty] @@ -33,9 +34,6 @@ public class GetAzureVMExtensionImageCommand : VirtualMachineExtensionImageBaseC [Parameter(Mandatory = true, ValueFromPipelineByPropertyName = true), ValidateNotNullOrEmpty] public string Type { get; set; } - [Parameter(ValueFromPipelineByPropertyName = true), ValidateNotNullOrEmpty] - public string Version { get; set; } - [Parameter, ValidateNotNullOrEmpty] public string FilterExpression { get; set; } @@ -43,35 +41,30 @@ public override void ExecuteCmdlet() { base.ExecuteCmdlet(); - var parameters = new VirtualMachineExtensionImageGetParameters + var parameters = new VirtualMachineExtensionImageListVersionsParameters { - Location = Location, + Location = Location.Canonicalize(), PublisherName = PublisherName, Type = Type, - FilterExpression = FilterExpression, - Version = Version + FilterExpression = FilterExpression }; - VirtualMachineExtensionImageGetResponse result = this.VirtualMachineExtensionImageClient.Get(parameters); + VirtualMachineImageResourceList result = this.VirtualMachineExtensionImageClient.ListVersions(parameters); - var image = new PSVirtualMachineExtensionImageDetails - { - RequestId = result.RequestId, - StatusCode = result.StatusCode, - Id = result.VirtualMachineExtensionImage.Id, - Location = result.VirtualMachineExtensionImage.Location, - Name = result.VirtualMachineExtensionImage.Name, - HandlerSchema = result.VirtualMachineExtensionImage.HandlerSchema, - OperatingSystem = result.VirtualMachineExtensionImage.OperatingSystem, - ComputeRole = result.VirtualMachineExtensionImage.ComputeRole, - SupportsMultipleExtensions = result.VirtualMachineExtensionImage.SupportsMultipleExtensions, - VMScaleSetEnabled = result.VirtualMachineExtensionImage.VMScaleSetEnabled, - PublisherName = this.PublisherName, - Type = this.Type, - Version = this.Version - }; + var images = from r in result.Resources + select new PSVirtualMachineExtensionImage + { + RequestId = result.RequestId, + StatusCode = result.StatusCode, + Id = r.Id, + Location = r.Location, + Version = r.Name, + PublisherName = this.PublisherName, + Type = this.Type, + FilterExpression = this.FilterExpression + }; - WriteObject(image); + WriteObject(images, true); } } } diff --git a/src/ResourceManager/Compute/Commands.Compute/ExtensionImages/GetAzureVMExtensionImageVersionCommand.cs b/src/ResourceManager/Compute/Commands.Compute/ExtensionImages/GetAzureVMExtensionImageDetailCommand.cs similarity index 53% rename from src/ResourceManager/Compute/Commands.Compute/ExtensionImages/GetAzureVMExtensionImageVersionCommand.cs rename to src/ResourceManager/Compute/Commands.Compute/ExtensionImages/GetAzureVMExtensionImageDetailCommand.cs index 660c1c132447..0a0e51b03fac 100644 --- a/src/ResourceManager/Compute/Commands.Compute/ExtensionImages/GetAzureVMExtensionImageVersionCommand.cs +++ b/src/ResourceManager/Compute/Commands.Compute/ExtensionImages/GetAzureVMExtensionImageDetailCommand.cs @@ -16,14 +16,13 @@ using Microsoft.Azure.Commands.Compute.Models; using Microsoft.Azure.Management.Compute; using Microsoft.Azure.Management.Compute.Models; -using System.Linq; using System.Management.Automation; namespace Microsoft.Azure.Commands.Compute { - [Cmdlet(VerbsCommon.Get, ProfileNouns.VirtualMachineExtensionImageVersion)] - [OutputType(typeof(PSVirtualMachineExtensionImage))] - public class GetAzureVMExtensionImageVersionCommand : VirtualMachineExtensionImageBaseCmdlet + [Cmdlet(VerbsCommon.Get, ProfileNouns.VirtualMachineExtensionImageDetail)] + [OutputType(typeof(PSVirtualMachineExtensionImageDetails))] + public class GetAzureVMExtensionImageDetailCommand : VirtualMachineExtensionImageBaseCmdlet { [Parameter(Mandatory = true, ValueFromPipelineByPropertyName = true), ValidateNotNullOrEmpty] public string Location { get; set; } @@ -34,6 +33,9 @@ public class GetAzureVMExtensionImageVersionCommand : VirtualMachineExtensionIma [Parameter(Mandatory = true, ValueFromPipelineByPropertyName = true), ValidateNotNullOrEmpty] public string Type { get; set; } + [Parameter(ValueFromPipelineByPropertyName = true), ValidateNotNullOrEmpty] + public string Version { get; set; } + [Parameter, ValidateNotNullOrEmpty] public string FilterExpression { get; set; } @@ -41,30 +43,35 @@ public override void ExecuteCmdlet() { base.ExecuteCmdlet(); - var parameters = new VirtualMachineExtensionImageListVersionsParameters + var parameters = new VirtualMachineExtensionImageGetParameters { - Location = Location, + Location = Location.Canonicalize(), PublisherName = PublisherName, Type = Type, - FilterExpression = FilterExpression + FilterExpression = FilterExpression, + Version = Version }; - VirtualMachineImageResourceList result = this.VirtualMachineExtensionImageClient.ListVersions(parameters); + VirtualMachineExtensionImageGetResponse result = this.VirtualMachineExtensionImageClient.Get(parameters); - var images = from r in result.Resources - select new PSVirtualMachineExtensionImage - { - RequestId = result.RequestId, - StatusCode = result.StatusCode, - Id = r.Id, - Location = r.Location, - Version = r.Name, - PublisherName = this.PublisherName, - Type = this.Type, - FilterExpression = this.FilterExpression - }; + var image = new PSVirtualMachineExtensionImageDetails + { + RequestId = result.RequestId, + StatusCode = result.StatusCode, + Id = result.VirtualMachineExtensionImage.Id, + Location = result.VirtualMachineExtensionImage.Location, + Name = result.VirtualMachineExtensionImage.Name, + HandlerSchema = result.VirtualMachineExtensionImage.HandlerSchema, + OperatingSystem = result.VirtualMachineExtensionImage.OperatingSystem, + ComputeRole = result.VirtualMachineExtensionImage.ComputeRole, + SupportsMultipleExtensions = result.VirtualMachineExtensionImage.SupportsMultipleExtensions, + VMScaleSetEnabled = result.VirtualMachineExtensionImage.VMScaleSetEnabled, + PublisherName = this.PublisherName, + Type = this.Type, + Version = this.Version + }; - WriteObject(images, true); + WriteObject(image); } } } diff --git a/src/ResourceManager/Compute/Commands.Compute/ExtensionImages/GetAzureVMExtensionImageTypeCommand.cs b/src/ResourceManager/Compute/Commands.Compute/ExtensionImages/GetAzureVMExtensionImageTypeCommand.cs index b4efdea571cd..c83e90b8817d 100644 --- a/src/ResourceManager/Compute/Commands.Compute/ExtensionImages/GetAzureVMExtensionImageTypeCommand.cs +++ b/src/ResourceManager/Compute/Commands.Compute/ExtensionImages/GetAzureVMExtensionImageTypeCommand.cs @@ -37,7 +37,7 @@ public override void ExecuteCmdlet() var parameters = new VirtualMachineExtensionImageListTypesParameters { - Location = Location, + Location = Location.Canonicalize(), PublisherName = PublisherName }; diff --git a/src/ResourceManager/Compute/Commands.Compute/ExtensionImages/VirtualMachineExtensionImageBaseCmdlet.cs b/src/ResourceManager/Compute/Commands.Compute/ExtensionImages/VirtualMachineExtensionImageBaseCmdlet.cs index 02a049532b56..4c81ebec8fd1 100644 --- a/src/ResourceManager/Compute/Commands.Compute/ExtensionImages/VirtualMachineExtensionImageBaseCmdlet.cs +++ b/src/ResourceManager/Compute/Commands.Compute/ExtensionImages/VirtualMachineExtensionImageBaseCmdlet.cs @@ -13,33 +13,11 @@ // ---------------------------------------------------------------------------------- using Microsoft.Azure.Management.Compute; -using Microsoft.WindowsAzure.Commands.Utilities.Common; namespace Microsoft.Azure.Commands.Compute { - public abstract class VirtualMachineExtensionImageBaseCmdlet : AzurePSCmdlet + public abstract class VirtualMachineExtensionImageBaseCmdlet : ComputeClientBaseCmdlet { - private ComputeClient computeClient; - - public ComputeClient ComputeClient - { - get - { - if (computeClient == null) - { - computeClient = new ComputeClient(Profile.Context) - { - VerboseLogger = WriteVerboseWithTimestamp, - ErrorLogger = WriteErrorWithTimestamp - }; - } - - return computeClient; - } - - set { computeClient = value; } - } - public IVirtualMachineExtensionImageOperations VirtualMachineExtensionImageClient { get diff --git a/src/ResourceManager/Compute/Commands.Compute/Images/GetAzureVMImageCommand.cs b/src/ResourceManager/Compute/Commands.Compute/Images/GetAzureVMImageCommand.cs index 4c5bd42d6840..68a1454a256c 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Images/GetAzureVMImageCommand.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Images/GetAzureVMImageCommand.cs @@ -22,7 +22,7 @@ namespace Microsoft.Azure.Commands.Compute { [Cmdlet(VerbsCommon.Get, ProfileNouns.VirtualMachineImage)] - [OutputType(typeof(PSVirtualMachineImageDetails))] + [OutputType(typeof(PSVirtualMachineImage))] public class GetAzureVMImageCommand : VirtualMachineImageBaseCmdlet { [Parameter(Mandatory = true, ValueFromPipelineByPropertyName = true), ValidateNotNullOrEmpty] @@ -37,41 +37,39 @@ public class GetAzureVMImageCommand : VirtualMachineImageBaseCmdlet [Parameter(Mandatory = true, ValueFromPipelineByPropertyName = true), ValidateNotNullOrEmpty] public string Skus { get; set; } - [Parameter(Mandatory = true, ValueFromPipelineByPropertyName = true), ValidateNotNullOrEmpty] - public string Version { get; set; } + [Parameter, ValidateNotNullOrEmpty] + public string FilterExpression { get; set; } public override void ExecuteCmdlet() { base.ExecuteCmdlet(); - var parameters = new VirtualMachineImageGetParameters + var parameters = new VirtualMachineImageListParameters { - Location = Location, - PublisherName = PublisherName, + Location = Location.Canonicalize(), Offer = Offer, + PublisherName = PublisherName, Skus = Skus, - Version = Version + FilterExpression = FilterExpression }; - VirtualMachineImageGetResponse response = this.VirtualMachineImageClient.Get(parameters); + VirtualMachineImageResourceList result = this.VirtualMachineImageClient.List(parameters); - var image = new PSVirtualMachineImageDetails - { - RequestId = response.RequestId, - StatusCode = response.StatusCode, - Id = response.VirtualMachineImage.Id, - Location = response.VirtualMachineImage.Location, - Name = response.VirtualMachineImage.Name, - OSDiskImage = response.VirtualMachineImage.OSDiskImage, - DataDiskImages = response.VirtualMachineImage.DataDiskImages, - PurchasePlan = response.VirtualMachineImage.PurchasePlan, - PublisherName = this.PublisherName, - Offer = this.Offer, - Skus = this.Skus, - Version = this.Version - }; + var images = from r in result.Resources + select new PSVirtualMachineImage + { + RequestId = result.RequestId, + StatusCode = result.StatusCode, + Id = r.Id, + Location = r.Location, + Version = r.Name, + PublisherName = this.PublisherName, + Offer = this.Offer, + Skus = this.Skus, + FilterExpression = this.FilterExpression + }; - WriteObject(image); + WriteObject(images, true); } } } diff --git a/src/ResourceManager/Compute/Commands.Compute/Images/GetAzureVMImageVersionCommand.cs b/src/ResourceManager/Compute/Commands.Compute/Images/GetAzureVMImageDetailCommand.cs similarity index 57% rename from src/ResourceManager/Compute/Commands.Compute/Images/GetAzureVMImageVersionCommand.cs rename to src/ResourceManager/Compute/Commands.Compute/Images/GetAzureVMImageDetailCommand.cs index 3ec66a283369..867c6640f71c 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Images/GetAzureVMImageVersionCommand.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Images/GetAzureVMImageDetailCommand.cs @@ -21,9 +21,9 @@ namespace Microsoft.Azure.Commands.Compute { - [Cmdlet(VerbsCommon.Get, ProfileNouns.VirtualMachineImageVersion)] - [OutputType(typeof(PSVirtualMachineImage))] - public class GetAzureVMImageVersionCommand : VirtualMachineImageBaseCmdlet + [Cmdlet(VerbsCommon.Get, ProfileNouns.VirtualMachineImageDetail)] + [OutputType(typeof(PSVirtualMachineImageDetail))] + public class GetAzureVMImageDetailCommand : VirtualMachineImageBaseCmdlet { [Parameter(Mandatory = true, ValueFromPipelineByPropertyName = true), ValidateNotNullOrEmpty] public string Location { get; set; } @@ -37,39 +37,41 @@ public class GetAzureVMImageVersionCommand : VirtualMachineImageBaseCmdlet [Parameter(Mandatory = true, ValueFromPipelineByPropertyName = true), ValidateNotNullOrEmpty] public string Skus { get; set; } - [Parameter, ValidateNotNullOrEmpty] - public string FilterExpression { get; set; } + [Parameter(Mandatory = true, ValueFromPipelineByPropertyName = true), ValidateNotNullOrEmpty] + public string Version { get; set; } public override void ExecuteCmdlet() { base.ExecuteCmdlet(); - var parameters = new VirtualMachineImageListParameters + var parameters = new VirtualMachineImageGetParameters { - Location = Location, - Offer = Offer, + Location = Location.Canonicalize(), PublisherName = PublisherName, + Offer = Offer, Skus = Skus, - FilterExpression = FilterExpression + Version = Version }; - VirtualMachineImageResourceList result = this.VirtualMachineImageClient.List(parameters); + VirtualMachineImageGetResponse response = this.VirtualMachineImageClient.Get(parameters); - var images = from r in result.Resources - select new PSVirtualMachineImage - { - RequestId = result.RequestId, - StatusCode = result.StatusCode, - Id = r.Id, - Location = r.Location, - Version = r.Name, - PublisherName = this.PublisherName, - Offer = this.Offer, - Skus = this.Skus, - FilterExpression = this.FilterExpression - }; + var image = new PSVirtualMachineImageDetail + { + RequestId = response.RequestId, + StatusCode = response.StatusCode, + Id = response.VirtualMachineImage.Id, + Location = response.VirtualMachineImage.Location, + Name = response.VirtualMachineImage.Name, + OSDiskImage = response.VirtualMachineImage.OSDiskImage, + DataDiskImages = response.VirtualMachineImage.DataDiskImages, + PurchasePlan = response.VirtualMachineImage.PurchasePlan, + PublisherName = this.PublisherName, + Offer = this.Offer, + Skus = this.Skus, + Version = this.Version + }; - WriteObject(images, true); + WriteObject(image); } } } diff --git a/src/ResourceManager/Compute/Commands.Compute/Images/GetAzureVMImageOfferCommand.cs b/src/ResourceManager/Compute/Commands.Compute/Images/GetAzureVMImageOfferCommand.cs index 37ef72d8c2cd..2eebca1a541c 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Images/GetAzureVMImageOfferCommand.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Images/GetAzureVMImageOfferCommand.cs @@ -22,7 +22,7 @@ namespace Microsoft.Azure.Commands.Compute { [Cmdlet(VerbsCommon.Get, ProfileNouns.VirtualMachineImageOffer)] - [OutputType(typeof(PSVirtualMachineImage))] + [OutputType(typeof(PSVirtualMachineImageOffer))] public class GetAzureVMImageOfferCommand : VirtualMachineImageBaseCmdlet { [Parameter(Mandatory = true, ValueFromPipelineByPropertyName = true), ValidateNotNullOrEmpty] @@ -37,14 +37,14 @@ public override void ExecuteCmdlet() var parameters = new VirtualMachineImageListOffersParameters { - Location = Location, + Location = Location.Canonicalize(), PublisherName = PublisherName }; VirtualMachineImageResourceList result = this.VirtualMachineImageClient.ListOffers(parameters); var images = from r in result.Resources - select new PSVirtualMachineImage + select new PSVirtualMachineImageOffer { RequestId = result.RequestId, StatusCode = result.StatusCode, diff --git a/src/ResourceManager/Compute/Commands.Compute/Images/GetAzureVMImagePublisherCommand.cs b/src/ResourceManager/Compute/Commands.Compute/Images/GetAzureVMImagePublisherCommand.cs index c9b482bc88c0..2351a7d72ba8 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Images/GetAzureVMImagePublisherCommand.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Images/GetAzureVMImagePublisherCommand.cs @@ -22,7 +22,7 @@ namespace Microsoft.Azure.Commands.Compute { [Cmdlet(VerbsCommon.Get, ProfileNouns.VirtualMachineImagePublisher)] - [OutputType(typeof(PSVirtualMachineImage))] + [OutputType(typeof(PSVirtualMachineImagePublisher))] public class GetAzureVMImagePublisherCommand : VirtualMachineImageBaseCmdlet { [Parameter(Mandatory = true, ValueFromPipelineByPropertyName = true), ValidateNotNullOrEmpty] @@ -34,13 +34,13 @@ public override void ExecuteCmdlet() var parameters = new VirtualMachineImageListPublishersParameters { - Location = Location + Location = Location.Canonicalize() }; VirtualMachineImageResourceList result = this.VirtualMachineImageClient.ListPublishers(parameters); var images = from r in result.Resources - select new PSVirtualMachineImage + select new PSVirtualMachineImagePublisher { RequestId = result.RequestId, StatusCode = result.StatusCode, diff --git a/src/ResourceManager/Compute/Commands.Compute/Images/GetAzureVMImageSkuCommand.cs b/src/ResourceManager/Compute/Commands.Compute/Images/GetAzureVMImageSkuCommand.cs index 215a763a137a..e825c10f1cd5 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Images/GetAzureVMImageSkuCommand.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Images/GetAzureVMImageSkuCommand.cs @@ -22,7 +22,7 @@ namespace Microsoft.Azure.Commands.Compute { [Cmdlet(VerbsCommon.Get, ProfileNouns.VirtualMachineImageSku)] - [OutputType(typeof(PSVirtualMachineImage))] + [OutputType(typeof(PSVirtualMachineImageSku))] public class GetAzureVMImageSkuCommand : VirtualMachineImageBaseCmdlet { [Parameter(Mandatory = true, ValueFromPipelineByPropertyName = true), ValidateNotNullOrEmpty] @@ -40,7 +40,7 @@ public override void ExecuteCmdlet() var parameters = new VirtualMachineImageListSkusParameters { - Location = Location, + Location = Location.Canonicalize(), PublisherName = PublisherName, Offer = Offer }; @@ -48,7 +48,7 @@ public override void ExecuteCmdlet() VirtualMachineImageResourceList result = this.VirtualMachineImageClient.ListSkus(parameters); var images = from r in result.Resources - select new PSVirtualMachineImage + select new PSVirtualMachineImageSku { RequestId = result.RequestId, StatusCode = result.StatusCode, diff --git a/src/ResourceManager/Compute/Commands.Compute/Images/VirtualMachineImageBaseCmdlet.cs b/src/ResourceManager/Compute/Commands.Compute/Images/VirtualMachineImageBaseCmdlet.cs index 7b5a8614f83f..27c71e3be023 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Images/VirtualMachineImageBaseCmdlet.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Images/VirtualMachineImageBaseCmdlet.cs @@ -13,33 +13,11 @@ // ---------------------------------------------------------------------------------- using Microsoft.Azure.Management.Compute; -using Microsoft.WindowsAzure.Commands.Utilities.Common; namespace Microsoft.Azure.Commands.Compute { - public abstract class VirtualMachineImageBaseCmdlet : AzurePSCmdlet + public abstract class VirtualMachineImageBaseCmdlet : ComputeClientBaseCmdlet { - private ComputeClient computeClient; - - public ComputeClient ComputeClient - { - get - { - if (computeClient == null) - { - computeClient = new ComputeClient(Profile.Context) - { - VerboseLogger = WriteVerboseWithTimestamp, - ErrorLogger = WriteErrorWithTimestamp - }; - } - - return computeClient; - } - - set { computeClient = value; } - } - public IVirtualMachineImageOperations VirtualMachineImageClient { get diff --git a/src/ResourceManager/Compute/Commands.Compute/Microsoft.Azure.Commands.Compute.Types.ps1xml b/src/ResourceManager/Compute/Commands.Compute/Microsoft.Azure.Commands.Compute.Types.ps1xml index 2e08879a7d03..345faa61b287 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Microsoft.Azure.Commands.Compute.Types.ps1xml +++ b/src/ResourceManager/Compute/Commands.Compute/Microsoft.Azure.Commands.Compute.Types.ps1xml @@ -1,33 +1,3 @@ <?xml version="1.0" encoding="utf-8" ?> <Types> - <Type> - <Name>Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine</Name> - <Members> - <MemberSet> - <Name>PSStandardMembers</Name> - <Members> - <PropertySet> - <Name>DefaultDisplayPropertySet</Name> - <ReferencedProperties> - <Name>ResourceGroupName</Name> - <Name>Name</Name> - <Name>Location</Name> - <Name>VMSize</Name> - <Name>Tags</Name> - <Name>AvailabilitySetId</Name> - <Name>ProvisioningState</Name> - <Name>OSConfiguration</Name> - <Name>SourceImageId</Name> - <Name>DestinationVHDsContainer</Name> - <Name>OSDisk</Name> - <Name>DataDisks</Name> - <Name>NetworkInterfaces</Name> - <Name>Resources</Name> - <Name>Status</Name> - </ReferencedProperties> - </PropertySet> - </Members> - </MemberSet> - </Members> - </Type> </Types> diff --git a/src/ResourceManager/Compute/Commands.Compute/Microsoft.Azure.Commands.Compute.dll-Help.xml b/src/ResourceManager/Compute/Commands.Compute/Microsoft.Azure.Commands.Compute.dll-Help.xml index 221132bd7cd4..82ab4237b332 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Microsoft.Azure.Commands.Compute.dll-Help.xml +++ b/src/ResourceManager/Compute/Commands.Compute/Microsoft.Azure.Commands.Compute.dll-Help.xml @@ -1,5 +1,175 @@ -<?xml version="1.0" encoding="utf-8"?><helpItems xmlns="http://msh" schema="maml"> -<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10"> +<?xml version="1.0" encoding="utf-8"?><helpItems schema="maml"> +<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> +<!--Generated by PS Cmdlet Help Editor--> + <command:details> + <command:name>Add-AzureVMAdditionalUnattendContent</command:name> + <maml:description> + <maml:para>Specifies additional base-64 encoded XML formatted information that can be included in the Unattend.xml file, which is used by Windows Setup. </maml:para> + </maml:description> + <maml:copyright> + <maml:para /> + </maml:copyright> + <command:verb>Add</command:verb> + <command:noun>AzureVMAdditionalUnattendContent</command:noun> + <dev:version /> + </command:details> + <maml:description> + <maml:para>Specifies additional base-64 encoded XML formatted information that can be included in the Unattend.xml file, which is used by Windows Setup. </maml:para> + </maml:description> + <command:syntax> + <command:syntaxItem> + <maml:name>Add-AzureVMAdditionalUnattendContent</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0"> + <maml:name>VM</maml:name> + <maml:description> + <maml:para>VM object to modify. Create one using New-AzureVMConfig cmdlet or Get one using the Get-AzureVM cmdlet.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">PSVirtualMachine</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="1"> + <maml:name>Content</maml:name> + <maml:description> + <maml:para>Specifies the base-64 encoded XML formatted content that is added to the unattend.xml file for the specified path and component. The XML must be less that 4 KB and must include the root element for the setting or feature that is being inserted.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="2"> + <maml:name>SettingName</maml:name> + <maml:description> + <maml:para>Specifies the name of the setting to which the content applies.</maml:para> + <maml:para>Possible values are:</maml:para> + <maml:para> FirstLogonCommands</maml:para> + <maml:para> AutoLogon </maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + </command:parameter> + </command:syntaxItem> + </command:syntax> + <command:parameters> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0"> + <maml:name>VM</maml:name> + <maml:description> + <maml:para>VM object to modify. Create one using New-AzureVMConfig cmdlet or Get one using the Get-AzureVM cmdlet.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">PSVirtualMachine</command:parameterValue> + <dev:type> + <maml:name>PSVirtualMachine</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="1"> + <maml:name>Content</maml:name> + <maml:description> + <maml:para>Specifies the base-64 encoded XML formatted content that is added to the unattend.xml file for the specified path and component. The XML must be less that 4 KB and must include the root element for the setting or feature that is being inserted.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="2"> + <maml:name>SettingName</maml:name> + <maml:description> + <maml:para>Specifies the name of the setting to which the content applies.</maml:para> + <maml:para>Possible values are:</maml:para> + <maml:para> FirstLogonCommands</maml:para> + <maml:para> AutoLogon </maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + <dev:type> + <maml:name>AzureProfile</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + </command:parameters> + <command:inputTypes> + <command:inputType> + <dev:type> + <maml:name></maml:name> + <maml:uri></maml:uri> + <maml:description/> + </dev:type> + <maml:description> +<maml:para /> + </maml:description> + </command:inputType> + </command:inputTypes> + <command:returnValues> + <command:returnValue> + <dev:type> + <maml:name></maml:name> + <maml:uri></maml:uri> + <maml:description/> + </dev:type> + <maml:description> +<maml:para /> + </maml:description> + </command:returnValue> + </command:returnValues> + <command:terminatingErrors></command:terminatingErrors> + <command:nonTerminatingErrors></command:nonTerminatingErrors> + <maml:alertSet> + <maml:title></maml:title> + <maml:alert> + <maml:para /> + </maml:alert> + </maml:alertSet> + <command:examples> + <command:example> + <maml:title>-------------------------- Example 1 --------------------------</maml:title> + <maml:introduction> + <maml:paragraph>PS C:\&gt;</maml:paragraph> + </maml:introduction> + <dev:code>$vm = New-AzureVMConfig -VMName $vmname -VMSize $vmsize; + +$vm = Set-AzureVMOperatingSystem -VM $vm -Windows -ComputerName $computerName -Credential $cred + +$aucSetting = &quot;AutoLogon&quot;; +$aucContent = &quot;&lt;UserAccounts&gt;&lt;AdministratorPassword&gt;&lt;Value&gt;&quot; + $password + &quot;&lt;/Value&gt;&lt;PlainText&gt;true&lt;/PlainText&gt;&lt;/AdministratorPassword&gt;&lt;/UserAccounts&gt;&quot;; + +$vm = Add-AzureVMAdditionalUnattendContentConfig -VM $vm -Content $aucContent -SettingName $aucSetting;</dev:code> + <dev:remarks> + <maml:para /> + <maml:para /> + <maml:para /> + <maml:para></maml:para> + </dev:remarks> + <command:commandLines> + <command:commandLine> + <command:commandText> + <maml:para /> + </command:commandText> + </command:commandLine> + </command:commandLines> + </command:example> + </command:examples> + <maml:relatedLinks> + </maml:relatedLinks> +</command:command> +<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> <!--Generated by PS Cmdlet Help Editor--> <command:details> <command:name>Add-AzureVMDataDisk</command:name> @@ -14,7 +184,6 @@ <dev:version /> </command:details> <maml:description> - <!--This is the Description section--> <maml:para>This cmdlets allows you to add a Data Disk to the VM at creation time or to an existing VM</maml:para> </maml:description> <command:syntax> @@ -52,7 +221,7 @@ </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> - <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="4"> + <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="4"> <maml:name>DiskSizeInGB</maml:name> <maml:description> <maml:para>Specifies the size, in GB, of an empty disk to be attached to the Virtual Machine.</maml:para> @@ -66,6 +235,28 @@ </maml:description> <command:parameterValue required="true" variableLength="true">Nullable`1[Int32]</command:parameterValue> </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="6"> + <maml:name>CreateOption</maml:name> + <maml:description> + <maml:para>Specifies whether to create a disk in the VM from a platform or user image, to create a new empty disk or to attach an existing disk. Valid values are </maml:para> + <maml:para>&quot;FromImage”, “Attach” or “Empty”</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="7"> + <maml:name>SourceImageUri</maml:name> + <maml:description> + <maml:para>Uri of the existing VHD in case attaching the disk to the VM</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + </command:parameter> </command:syntaxItem> </command:syntax> <command:parameters> @@ -121,7 +312,7 @@ </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="4"> + <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="4"> <maml:name>DiskSizeInGB</maml:name> <maml:description> <maml:para>Specifies the size, in GB, of an empty disk to be attached to the Virtual Machine.</maml:para> @@ -145,78 +336,140 @@ </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="6"> + <maml:name>CreateOption</maml:name> + <maml:description> + <maml:para>Specifies whether to create a disk in the VM from a platform or user image, to create a new empty disk or to attach an existing disk. Valid values are </maml:para> + <maml:para>&quot;FromImage”, “Attach” or “Empty”</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="7"> + <maml:name>SourceImageUri</maml:name> + <maml:description> + <maml:para>Uri of the existing VHD in case attaching the disk to the VM</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + <dev:type> + <maml:name>AzureProfile</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> </command:parameters> <command:inputTypes> <command:inputType> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> + <maml:description> + <maml:para> +</maml:para> + </maml:description> </command:inputType> </command:inputTypes> <command:returnValues> <command:returnValue> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> - </command:returnValue> - </command:returnValues> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:returnValue> + </command:returnValues> <command:terminatingErrors></command:terminatingErrors> <command:nonTerminatingErrors></command:nonTerminatingErrors> <maml:alertSet> <maml:title></maml:title> <maml:alert> - <maml:para></maml:para> + <maml:para /> </maml:alert> </maml:alertSet> <command:examples> <command:example> <maml:title>-------------------------- Add Data Disk to a new VM --------------------------</maml:title> <maml:introduction> - <maml:para></maml:para> + <maml:paragraph>PS C:\&gt;</maml:paragraph> </maml:introduction> - <dev:code>PS C:\&gt; # Create the local VM Object - $vm = New-AzureVMConfig –VMName “myVM” –VMSize “Standard_A1&quot; -AvailabilitySetID $as1.Id + <dev:code># Create the local VM Object +$vm = New-AzureVMConfig –VMName “myVM” –VMSize “Standard_A1&quot; -AvailabilitySetID $as1.Id + +$stoname = &apos;teststo&apos;; +$stotype = &apos;Standard_GRS&apos;; + +$osDiskName = &apos;osDisk&apos;; +$osDiskCaching = &apos;ReadWrite&apos;; +$osDiskVhdUri = &quot;https://$stoname.blob.core.windows.net/test/os.vhd&quot;; - # Add Data Disk disk1 to this VM - Add-AzureVMDataDisk –VM $vm –Name &quot;disk1&quot; –VhdUri &quot;http://storageaccountname.blob.core.windows.net/vhds/test2.vhd&quot; –LUN 0 –Caching ReadOnly –DiskSizeinGB 1</dev:code> +$dataDiskVhdUri1 = &quot;https://$stoname.blob.core.windows.net/test/data1.vhd&quot;; +$dataDiskVhdUri2 = &quot;https://$stoname.blob.core.windows.net/test/data2.vhd&quot;; +$dataDiskVhdUri3 = &quot;https://$stoname.blob.core.windows.net/test/data3.vhd&quot;; + +# Add Data Disks to this VM +$vm = Add-AzureVMDataDisk -VM $vm -Name &apos;testDataDisk1&apos; -Caching &apos;ReadOnly&apos; -DiskSizeInGB 10 -Lun 0 -VhdUri $dataDiskVhdUri1 -CreateOption Empty; +$vm = Add-AzureVMDataDisk -VM $vm -Name &apos;testDataDisk2&apos; -Caching &apos;ReadOnly&apos; -DiskSizeInGB 11 -Lun 1 -VhdUri $dataDiskVhdUri2 -CreateOption Empty; +$vm = Add-AzureVMDataDisk -VM $vm -Name &apos;testDataDisk3&apos; -Caching &apos;ReadOnly&apos; -DiskSizeInGB 12 -Lun 2 -VhdUri $dataDiskVhdUri3 -CreateOption Empty;</dev:code> <dev:remarks> + <maml:para /> + <maml:para /> + <maml:para /> <maml:para></maml:para> </dev:remarks> <command:commandLines> <command:commandLine> - <command:commandText></command:commandText> + <command:commandText> + <maml:para /> + </command:commandText> </command:commandLine> </command:commandLines> </command:example> <command:example> <maml:title>-------------------------- Add a Data Disk to an existing VM --------------------------</maml:title> <maml:introduction> - <maml:para></maml:para> + <maml:paragraph>PS C:\&gt;</maml:paragraph> </maml:introduction> - <dev:code>PS C:\&gt; # Get the VM - $vm = Get-AzureVM -ResourceGroupName &quot;myRG&quot; -Name &quot;crpVM&quot; + <dev:code># Get the VM +$vm = Get-AzureVM -ResourceGroupName &quot;myRG&quot; -Name &quot;crpVM&quot; - # Add Data Disk disk1 to VM - Add-AzureVMDataDisk –VM $vm –Name &quot;disk1&quot; –VhdUri &quot;http://storageaccountname.blob.core.windows.net/vhds/test2.vhd&quot; –LUN 0 –Caching ReadOnly –DiskSizeinGB 1 +# Add Data Disk disk1 to VM +Add-AzureVMDataDisk –VM $vm –Name &quot;disk1&quot; –VhdUri &quot;http://storageaccountname.blob.core.windows.net/vhds/test2.vhd&quot; –LUN 0 –Caching ReadOnly –DiskSizeinGB 1 -CreateOption Empty; - # Update VM state - Update-AzureVM -ResourceGroupName &quot;myRG&quot; -Name &quot;crpVM&quot; –VM $vm</dev:code> +# Update VM state +Update-AzureVM -ResourceGroupName &quot;myRG&quot; -Name &quot;crpVM&quot; –VM $vm</dev:code> <dev:remarks> + <maml:para /> + <maml:para /> + <maml:para /> <maml:para></maml:para> </dev:remarks> <command:commandLines> <command:commandLine> - <command:commandText></command:commandText> + <command:commandText> + <maml:para /> + </command:commandText> </command:commandLine> </command:commandLines> </command:example> @@ -224,7 +477,7 @@ <maml:relatedLinks> </maml:relatedLinks> </command:command> -<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10"> +<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> <!--Generated by PS Cmdlet Help Editor--> <command:details> <command:name>Add-AzureVMNetworkInterface</command:name> @@ -239,7 +492,6 @@ <dev:version /> </command:details> <maml:description> - <!--This is the Description section--> <maml:para>This cmdlets allows you to add a NIC to the VM at creation time or to an existing VM</maml:para> </maml:description> <command:syntax> @@ -259,6 +511,20 @@ </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="2"> + <maml:name>Primary</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + </command:parameter> </command:syntaxItem> </command:syntax> <command:parameters> @@ -286,78 +552,114 @@ </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="2"> + <maml:name>Primary</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> + <dev:type> + <maml:name>SwitchParameter</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + <dev:type> + <maml:name>AzureProfile</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> </command:parameters> <command:inputTypes> <command:inputType> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> + <maml:description> + <maml:para> +</maml:para> + </maml:description> </command:inputType> </command:inputTypes> <command:returnValues> <command:returnValue> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> - </command:returnValue> - </command:returnValues> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:returnValue> + </command:returnValues> <command:terminatingErrors></command:terminatingErrors> <command:nonTerminatingErrors></command:nonTerminatingErrors> <maml:alertSet> <maml:title></maml:title> <maml:alert> - <maml:para></maml:para> + <maml:para /> </maml:alert> </maml:alertSet> <command:examples> <command:example> <maml:title>-------------------------- Add a Network Interface to a new VM --------------------------</maml:title> <maml:introduction> - <maml:para></maml:para> + <maml:paragraph>PS C:\&gt;</maml:paragraph> </maml:introduction> - <dev:code>PS C:\&gt; # Get the VM - $vm = Get-AzureVM -ResourceGroupName &quot;myRG&quot; -Name &quot;crpVM + <dev:code># Get the VM +$vm = Get-AzureVM -ResourceGroupName &quot;myRG&quot; -Name &quot;crpVM - # Add a Network Interface to the VM - Add-AzureVMNetworkInterface –VM $vm –Id &quot;/subscriptions/subscriptionId/resourceGroups/resourceGroupName/providers/Microsoft.Network/NetworkAdapters/Nic1&quot;</dev:code> +# Add a Network Interface to the VM +Add-AzureVMNetworkInterface –VM $vm –Id &quot;/subscriptions/subscriptionId/resourceGroups/resourceGroupName/providers/Microsoft.Network/NetworkAdapters/Nic1&quot;</dev:code> <dev:remarks> + <maml:para /> + <maml:para /> + <maml:para /> <maml:para></maml:para> </dev:remarks> <command:commandLines> <command:commandLine> - <command:commandText></command:commandText> + <command:commandText> + <maml:para /> + </command:commandText> </command:commandLine> </command:commandLines> </command:example> <command:example> <maml:title>-------------------------- Add a Network Interface to an existing VM --------------------------</maml:title> <maml:introduction> - <maml:para></maml:para> + <maml:paragraph>PS C:\&gt;</maml:paragraph> </maml:introduction> - <dev:code>PS C:\&gt; # Get the VM - $vm = Get-AzureVM -ResourceGroupName &quot;myRG&quot; -Name &quot;crpVM&quot; + <dev:code># Get the VM +$vm = Get-AzureVM -ResourceGroupName &quot;myRG&quot; -Name &quot;crpVM&quot; - # Add a Network Interface to the VM - Add-AzureVMNetworkInterface –VM $vm –Id &quot;/subscriptions/subscriptionId/resourceGroups/resourceGroupName/providers/Microsoft.Network/NetworkAdapters/Nic1&quot; +# Add a Network Interface to the VM +Add-AzureVMNetworkInterface –VM $vm –Id &quot;/subscriptions/subscriptionId/resourceGroups/resourceGroupName/providers/Microsoft.Network/NetworkAdapters/Nic1&quot; - # Update VM state - Update-AzureVM -ResourceGroupName &quot;myRG&quot; -Name &quot;crpVM&quot; –VM $vm</dev:code> +# Update VM state +Update-AzureVM -ResourceGroupName &quot;myRG&quot; -Name &quot;crpVM&quot; –VM $vm</dev:code> <dev:remarks> + <maml:para /> + <maml:para /> + <maml:para /> <maml:para></maml:para> </dev:remarks> <command:commandLines> <command:commandLine> - <command:commandText></command:commandText> + <command:commandText> + <maml:para /> + </command:commandText> </command:commandLine> </command:commandLines> </command:example> @@ -365,48 +667,87 @@ <maml:relatedLinks> </maml:relatedLinks> </command:command> -<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10"> +<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> <!--Generated by PS Cmdlet Help Editor--> <command:details> - <command:name>Get-AzureAvailabilitySet</command:name> + <command:name>Add-AzureVMSecret</command:name> <maml:description> - <maml:para>Get Availability Set properties</maml:para> + <maml:para>Add a secret to the VM which allows you to place a certificate on the VM</maml:para> </maml:description> <maml:copyright> <maml:para /> </maml:copyright> - <command:verb>Get</command:verb> - <command:noun>AzureAvailabilitySet</command:noun> + <command:verb>Add</command:verb> + <command:noun>AzureVMSecret</command:noun> <dev:version /> </command:details> <maml:description> - <!--This is the Description section--> - <maml:para>This cmdlet allows you to discover information about a specified Availability Set or all Availability Sets within a Resource Group</maml:para> + <maml:para>Add a secret to the VM which allows you to place a certificate on the VM</maml:para> </maml:description> <command:syntax> <command:syntaxItem> - <maml:name>Get-AzureAvailabilitySet</maml:name> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="0"> - <maml:name>ResourceGroupName</maml:name> + <maml:name>Add-AzureVMSecret</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0"> + <maml:name>VM</maml:name> <maml:description> - <maml:para>Name of the Resource Group containing the Avaialbility Set</maml:para> + <maml:para>VM object to modify. Create one using New-AzureVMConfig cmdlet or Get one using the Get-AzureVM cmdlet.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <command:parameterValue required="true" variableLength="false">PSVirtualMachine</command:parameterValue> </command:parameter> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="1"> - <maml:name>Name</maml:name> + <maml:name>SourceVaultId</maml:name> <maml:description> - <maml:para>Name of the Availability Set</maml:para> + <maml:para>Resource Id of the Key Vault which contains the certificates to place on the VM. Also acts as the key for adding multiple certificates i.e. use the same SourceVaultId when adding multiple certificates from the same KeyVault</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="2"> + <maml:name>CertificateStore</maml:name> + <maml:description> + <maml:para>Name of the certificate store on the Windows VM the certificate should be added to</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="3"> + <maml:name>CertificateUrl</maml:name> + <maml:description> + <maml:para>A KeyVault Url pointing to a KeyVault secret which contains a certificate formatted as follows</maml:para> + <maml:para>It is the Base64 encoding of the following JSON Object which is encoded in UTF-8</maml:para> + <maml:para>{ + “data”:”&lt;Base64-encoded-file&gt;”, + “dataType” :”&lt;file-format&gt;”, + “password”:”&lt;pfx-file-password&gt;” +} +</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + </command:parameter> </command:syntaxItem> </command:syntax> <command:parameters> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="0"> - <maml:name>ResourceGroupName</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0"> + <maml:name>VM</maml:name> <maml:description> - <maml:para>Name of the Resource Group containing the Avaialbility Set</maml:para> + <maml:para>VM object to modify. Create one using New-AzureVMConfig cmdlet or Get one using the Get-AzureVM cmdlet.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">PSVirtualMachine</command:parameterValue> + <dev:type> + <maml:name>PSVirtualMachine</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="1"> + <maml:name>SourceVaultId</maml:name> + <maml:description> + <maml:para>Resource Id of the Key Vault which contains the certificates to place on the VM. Also acts as the key for adding multiple certificates i.e. use the same SourceVaultId when adding multiple certificates from the same KeyVault</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -415,10 +756,29 @@ </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="1"> - <maml:name>Name</maml:name> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="2"> + <maml:name>CertificateStore</maml:name> <maml:description> - <maml:para>Name of the Availability Set</maml:para> + <maml:para>Name of the certificate store on the Windows VM the certificate should be added to</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="3"> + <maml:name>CertificateUrl</maml:name> + <maml:description> + <maml:para>A KeyVault Url pointing to a KeyVault secret which contains a certificate formatted as follows</maml:para> + <maml:para>It is the Base64 encoding of the following JSON Object which is encoded in UTF-8</maml:para> + <maml:para>{ + “data”:”&lt;Base64-encoded-file&gt;”, + “dataType” :”&lt;file-format&gt;”, + “password”:”&lt;pfx-file-password&gt;” +} +</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -427,67 +787,83 @@ </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + <dev:type> + <maml:name>AzureProfile</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> </command:parameters> <command:inputTypes> <command:inputType> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> + <maml:description> +<maml:para /> + </maml:description> </command:inputType> </command:inputTypes> <command:returnValues> <command:returnValue> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> - </command:returnValue> - </command:returnValues> + <maml:description> +<maml:para /> + </maml:description> + </command:returnValue> + </command:returnValues> <command:terminatingErrors></command:terminatingErrors> <command:nonTerminatingErrors></command:nonTerminatingErrors> <maml:alertSet> <maml:title></maml:title> <maml:alert> - <maml:para></maml:para> + <maml:para /> </maml:alert> </maml:alertSet> <command:examples> <command:example> - <maml:title>-------------------------- Get information about a specified Availability Set --------------------------</maml:title> - <maml:introduction> - <maml:para></maml:para> - </maml:introduction> - <dev:code>PS C:\&gt; Get-AzureAvailabilitySet –ResourceGroupName “RG1” –Name “MyASet”</dev:code> - <dev:remarks> - <maml:para></maml:para> - </dev:remarks> - <command:commandLines> - <command:commandLine> - <command:commandText></command:commandText> - </command:commandLine> - </command:commandLines> - </command:example> - <command:example> - <maml:title>-------------------------- Get information about all Availability Sets within a Resource Group --------------------------</maml:title> + <maml:title>-------------------------- Example 1 --------------------------</maml:title> <maml:introduction> - <maml:para></maml:para> + <maml:paragraph>PS C:\&gt;</maml:paragraph> </maml:introduction> - <dev:code>PS C:\&gt; Get-AzureAvailabilitySet –ResourceGroupName “RG1”</dev:code> + <dev:code>$vm = New-AzureVMConfig -VMName $vmname -VMSize $vmsize; + +$vm = Set-AzureVMOperatingSystem -VM $vm -Windows -ComputerName $computerName -Credential $cred + +$SourceVaultId = &quot;/subscriptions/&quot; + $subid + &quot;/resourceGroups/RgTest1/providers/Microsoft.KeyVault/vaults/TestVault123&quot;; +$certStore = &quot;My&quot;; +$certUrl = &quot;https://testvault123.vault.azure.net/secrets/Test1/514ceb769c984379a7e0230bdd703272&quot;; +$vm = Add-AzureVMSecret -VM $vm -SourceVaultId $SourceVaultId -CertificateStore $certStore -CertificateUrl $certUrl; + +$SourceVaultId2 = &quot;/subscriptions/&quot; + $subid + &quot;/resourceGroups/RgTest1/providers/Microsoft.KeyVault/vaults/TestVault456&quot;; +$vm = Add-AzureVMSecret -VM $vm -SourceVaultId $SourceVaultId2 -CertificateStore $certStore -CertificateUrl $certUrl; + +$certStore2 = &quot;My2&quot;; +$certUrl2 = &quot;https://testvault123.vault.azure.net/secrets/Test1/514ceb769c984379a7e0230bddaaaaaa&quot;; +$vm = Add-AzureVMSecret -VM $vm -SourceVaultId $SourceVaultId -CertificateStore $certStore2 -CertificateUrl $certUrl2;</dev:code> <dev:remarks> + <maml:para /> + <maml:para /> + <maml:para /> <maml:para></maml:para> </dev:remarks> <command:commandLines> <command:commandLine> - <command:commandText></command:commandText> + <command:commandText> + <maml:para /> + </command:commandText> </command:commandLine> </command:commandLines> </command:example> @@ -495,48 +871,76 @@ <maml:relatedLinks> </maml:relatedLinks> </command:command> -<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10"> +<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> <!--Generated by PS Cmdlet Help Editor--> <command:details> - <command:name>Get-AzureStorageAccount</command:name> + <command:name>Add-AzureVMSshPublicKey</command:name> <maml:description> - <maml:para>Get the properties of a Storage Account</maml:para> + <maml:para>Specifies the SSH public keys to use with the Virtual Machine.</maml:para> </maml:description> <maml:copyright> <maml:para /> </maml:copyright> - <command:verb>Get</command:verb> - <command:noun>AzureStorageAccount</command:noun> + <command:verb>Add</command:verb> + <command:noun>AzureVMSshPublicKey</command:noun> <dev:version /> </command:details> <maml:description> - <!--This is the Description section--> - <maml:para>This cmdlet allows you to get the properties of a specified Storage Account or all Storage Accounts within a Resource Group or the subscription.</maml:para> + <maml:para>Specifies the SSH public keys to use with the Virtual Machine.</maml:para> </maml:description> <command:syntax> <command:syntaxItem> - <maml:name>Get-AzureStorageAccount</maml:name> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="0"> - <maml:name>ResourceGroupName</maml:name> + <maml:name>Add-AzureVMSshPublicKey</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0"> + <maml:name>VM</maml:name> <maml:description> - <maml:para>Name of the Resource Group</maml:para> + <maml:para>VM object to modify. Create one using New-AzureVMConfig cmdlet or Get one using the Get-AzureVM cmdlet.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <command:parameterValue required="true" variableLength="false">PSVirtualMachine</command:parameterValue> </command:parameter> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="1"> - <maml:name>Name</maml:name> + <maml:name>KeyData</maml:name> <maml:description> - <maml:para>Name of the Storage Account</maml:para> + <maml:para>Specifies a base-64 encoding of the public key used to SSH into the Virtual Machine.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="2"> + <maml:name>Path</maml:name> + <maml:description> + <maml:para>Specifies the full path of a file, on the Virtual Machine, where the SSH public key is stored. If the file already exists, the specified key is appended to the file. +Example: +/home/user/.ssh/authorized_keys +</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + </command:parameter> </command:syntaxItem> </command:syntax> <command:parameters> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="0"> - <maml:name>ResourceGroupName</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0"> + <maml:name>VM</maml:name> <maml:description> - <maml:para>Name of the Resource Group</maml:para> + <maml:para>VM object to modify. Create one using New-AzureVMConfig cmdlet or Get one using the Get-AzureVM cmdlet.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">PSVirtualMachine</command:parameterValue> + <dev:type> + <maml:name>PSVirtualMachine</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="1"> + <maml:name>KeyData</maml:name> + <maml:description> + <maml:para>Specifies a base-64 encoding of the public key used to SSH into the Virtual Machine.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -545,10 +949,13 @@ </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="1"> - <maml:name>Name</maml:name> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="2"> + <maml:name>Path</maml:name> <maml:description> - <maml:para>Name of the Storage Account</maml:para> + <maml:para>Specifies the full path of a file, on the Virtual Machine, where the SSH public key is stored. If the file already exists, the specified key is appended to the file. +Example: +/home/user/.ssh/authorized_keys +</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -557,79 +964,61 @@ </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + <dev:type> + <maml:name>AzureProfile</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> </command:parameters> <command:inputTypes> <command:inputType> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> + <maml:description> +<maml:para /> + </maml:description> </command:inputType> </command:inputTypes> <command:returnValues> <command:returnValue> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> - </command:returnValue> - </command:returnValues> + <maml:description> +<maml:para /> + </maml:description> + </command:returnValue> + </command:returnValues> <command:terminatingErrors></command:terminatingErrors> <command:nonTerminatingErrors></command:nonTerminatingErrors> <maml:alertSet> <maml:title></maml:title> <maml:alert> - <maml:para></maml:para> + <maml:para /> </maml:alert> </maml:alertSet> <command:examples> <command:example> - <maml:title>-------------------------- Get a specified storage account --------------------------</maml:title> - <maml:introduction> - <maml:para></maml:para> - </maml:introduction> - <dev:code>PS C:\&gt; #Get one storage account - Get-AzureStorageAccount -ResourceGroupName &quot;RG1&quot; -AccountName &quot;myStorageAccount&quot;</dev:code> - <dev:remarks> - <maml:para></maml:para> - </dev:remarks> - <command:commandLines> - <command:commandLine> - <command:commandText></command:commandText> - </command:commandLine> - </command:commandLines> - </command:example> - <command:example> - <maml:title>-------------------------- Get all Storage Accounts in a Resource Group --------------------------</maml:title> - <maml:introduction> - <maml:para></maml:para> - </maml:introduction> - <dev:code>PS C:\&gt; # Get all Storage Accounts in a Resource Group - Get-AzureStorageAccount -ResourceGroupName &quot;RG1&quot;</dev:code> - <dev:remarks> - <maml:para></maml:para> - </dev:remarks> - <command:commandLines> - <command:commandLine> - <command:commandText></command:commandText> - </command:commandLine> - </command:commandLines> - </command:example> - <command:example> - <maml:title>-------------------------- Get all Storage Accounts in the subscription --------------------------</maml:title> + <maml:title>-------------------------- Example 1 --------------------------</maml:title> <maml:introduction> - <maml:para></maml:para> + <maml:paragraph>PS C:\&gt;</maml:paragraph> </maml:introduction> - <dev:code>PS C:\&gt; # Get all Storage Accounts in the subscription - Get-AzureStorageAccount</dev:code> + <dev:code>$sshPath = &quot;/home/testuser/.ssh/authorized_keys&quot;; +$sshPublicKey = &quot;MIIDszCCApugAwIBAgIJALBV9YJCF/tAMA0GCSq12Ib3DQEB21QUAMEUxCzAJBgNV&quot;; +$vm = Add-AzureVMSshPublicKey -VM $vm -KeyData $sshPublicKey -Path $sshPath; +$vm = Add-AzureVMSshPublicKey -VM $vm -KeyData $sshPublicKey -Path $sshPath;</dev:code> <dev:remarks> <maml:para /> <maml:para /> @@ -638,7 +1027,9 @@ </dev:remarks> <command:commandLines> <command:commandLine> - <command:commandText></command:commandText> + <command:commandText> + <maml:para /> + </command:commandText> </command:commandLine> </command:commandLines> </command:example> @@ -646,48 +1037,54 @@ <maml:relatedLinks> </maml:relatedLinks> </command:command> -<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10"> +<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> <!--Generated by PS Cmdlet Help Editor--> <command:details> - <command:name>Get-AzureStorageAccountKey</command:name> + <command:name>Get-AzureAvailabilitySet</command:name> <maml:description> - <maml:para>Get the access keys for an Azure storage account</maml:para> + <maml:para>Get Availability Set properties</maml:para> </maml:description> <maml:copyright> <maml:para /> </maml:copyright> <command:verb>Get</command:verb> - <command:noun>AzureStorageAccountKey</command:noun> + <command:noun>AzureAvailabilitySet</command:noun> <dev:version /> </command:details> <maml:description> - <!--This is the Description section--> - <maml:para>This cmdlet allows you to get the access keys for an Azure storage account.</maml:para> + <maml:para>This cmdlet allows you to discover information about a specified Availability Set or all Availability Sets within a Resource Group</maml:para> </maml:description> <command:syntax> <command:syntaxItem> - <maml:name>Get-AzureStorageAccountKey</maml:name> + <maml:name>Get-AzureAvailabilitySet</maml:name> <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="0"> <maml:name>ResourceGroupName</maml:name> <maml:description> - <maml:para>Name of the Resource Group</maml:para> + <maml:para>Name of the Resource Group containing the Avaialbility Set</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="1"> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="1"> <maml:name>Name</maml:name> <maml:description> - <maml:para>Name of the Storage Account</maml:para> + <maml:para>Name of the Availability Set</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + </command:parameter> </command:syntaxItem> </command:syntax> <command:parameters> <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="0"> <maml:name>ResourceGroupName</maml:name> <maml:description> - <maml:para>Name of the Resource Group</maml:para> + <maml:para>Name of the Resource Group containing the Avaialbility Set</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -696,10 +1093,10 @@ </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="1"> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="1"> <maml:name>Name</maml:name> <maml:description> - <maml:para>Name of the Storage Account</maml:para> + <maml:para>Name of the Availability Set</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -708,111 +1105,145 @@ </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + <dev:type> + <maml:name>AzureProfile</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> </command:parameters> <command:inputTypes> <command:inputType> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> + <maml:description> + <maml:para> +</maml:para> + </maml:description> </command:inputType> </command:inputTypes> <command:returnValues> <command:returnValue> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> - </command:returnValue> - </command:returnValues> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:returnValue> + </command:returnValues> <command:terminatingErrors></command:terminatingErrors> <command:nonTerminatingErrors></command:nonTerminatingErrors> <maml:alertSet> <maml:title></maml:title> <maml:alert> - <maml:para></maml:para> + <maml:para /> </maml:alert> </maml:alertSet> <command:examples> <command:example> - <maml:title>-------------------------- Get the access keys for a Storage Account --------------------------</maml:title> + <maml:title>-------------------------- Get information about a specified Availability Set --------------------------</maml:title> <maml:introduction> - <maml:para></maml:para> + <maml:paragraph>PS C:\&gt;</maml:paragraph> </maml:introduction> - <dev:code>PS C:\&gt; #Get keys - Get-AzureStorageAccountKey -ResourceGroupName &quot;RG1&quot; -AccountName &quot;myStorageAccount&quot;</dev:code> + <dev:code>Get-AzureAvailabilitySet –ResourceGroupName “RG1” –Name “MyASet”</dev:code> <dev:remarks> + <maml:para /> + <maml:para /> + <maml:para /> <maml:para></maml:para> </dev:remarks> <command:commandLines> <command:commandLine> - <command:commandText></command:commandText> + <command:commandText> + <maml:para /> + </command:commandText> </command:commandLine> </command:commandLines> </command:example> - </command:examples> - <maml:relatedLinks> - </maml:relatedLinks> -</command:command> -<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10"> + <command:example> + <maml:title>-------------------------- Get information about all Availability Sets within a Resource Group --------------------------</maml:title> + <maml:introduction> + <maml:paragraph>PS C:\&gt;</maml:paragraph> + </maml:introduction> + <dev:code>Get-AzureAvailabilitySet –ResourceGroupName “RG1”</dev:code> + <dev:remarks> + <maml:para /> + <maml:para /> + <maml:para /> + <maml:para></maml:para> + </dev:remarks> + <command:commandLines> + <command:commandLine> + <command:commandText> + <maml:para /> + </command:commandText> + </command:commandLine> + </command:commandLines> + </command:example> + </command:examples> + <maml:relatedLinks> + </maml:relatedLinks> +</command:command> +<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> <!--Generated by PS Cmdlet Help Editor--> <command:details> - <command:name>Get-AzureVM</command:name> + <command:name>Get-AzureRemoteDesktopFile</command:name> <maml:description> - <maml:para>Get the properties of a VM</maml:para> + <maml:para>Get the Remote Desktop file for the VM</maml:para> </maml:description> <maml:copyright> <maml:para /> </maml:copyright> <command:verb>Get</command:verb> - <command:noun>AzureVM</command:noun> + <command:noun>AzureRemoteDesktopFile</command:noun> <dev:version /> </command:details> <maml:description> - <!--This is the Description section--> - <maml:para>This cmdlet allows you to get the model or instance view of the VM. By default the returned VM object contains both model view (user specified properties) and instance view (instance level status). If you&#39;d like to see only the instance view of a VM use the -Status switch.</maml:para> + <maml:para>Get the Remote Desktop file for the VM</maml:para> </maml:description> <command:syntax> <command:syntaxItem> - <maml:name>Get-AzureVM</maml:name> + <maml:name>Get-AzureRemoteDesktopFile</maml:name> <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="0"> <maml:name>ResourceGroupName</maml:name> <maml:description> - <maml:para>Name of the Resource Group</maml:para> + <maml:para>Name of the Resource Group of the VM</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> - </command:syntaxItem> - <command:syntaxItem> - <maml:name>Get-AzureVM</maml:name> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="0"> - <maml:name>ResourceGroupName</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="1"> + <maml:name>Name</maml:name> <maml:description> - <maml:para>Name of the Resource Group</maml:para> + <maml:para>Name of the VM</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="1"> - <maml:name>Name</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="2"> + <maml:name>LocalPath</maml:name> <maml:description> - <maml:para>Name of the VM</maml:para> + <maml:para /> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="2"> - <maml:name>Status</maml:name> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> <maml:description> - <maml:para>Allows you to only return the Instance View</maml:para> + <maml:para /> </maml:description> - <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> </command:parameter> </command:syntaxItem> </command:syntax> @@ -820,7 +1251,7 @@ <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="0"> <maml:name>ResourceGroupName</maml:name> <maml:description> - <maml:para>Name of the Resource Group</maml:para> + <maml:para>Name of the Resource Group of the VM</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -829,7 +1260,7 @@ </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="1"> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="1"> <maml:name>Name</maml:name> <maml:description> <maml:para>Name of the VM</maml:para> @@ -841,14 +1272,26 @@ </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="2"> - <maml:name>Status</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="2"> + <maml:name>LocalPath</maml:name> <maml:description> - <maml:para>Allows you to only return the Instance View</maml:para> + <maml:para /> </maml:description> - <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> - <maml:name>SwitchParameter</maml:name> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + <dev:type> + <maml:name>AzureProfile</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> @@ -858,140 +1301,86 @@ <command:inputType> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> + <maml:description> + <maml:para> +</maml:para> + </maml:description> </command:inputType> </command:inputTypes> <command:returnValues> <command:returnValue> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> - </command:returnValue> - </command:returnValues> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:returnValue> + </command:returnValues> <command:terminatingErrors></command:terminatingErrors> <command:nonTerminatingErrors></command:nonTerminatingErrors> <maml:alertSet> <maml:title></maml:title> <maml:alert> - <maml:para></maml:para> + <maml:para /> </maml:alert> </maml:alertSet> <command:examples> - <command:example> - <maml:title>-------------------------- Get the properties of a VM --------------------------</maml:title> - <maml:introduction> - <maml:para></maml:para> - </maml:introduction> - <dev:code>PS C:\&gt; # Get the VM - $vm = Get-AzureVM -ResourceGroupName &quot;myRG&quot; -Name &quot;crpVM&quot;</dev:code> - <dev:remarks> - <maml:para></maml:para> - </dev:remarks> - <command:commandLines> - <command:commandLine> - <command:commandText></command:commandText> - </command:commandLine> - </command:commandLines> - </command:example> - <command:example> - <maml:title>-------------------------- Get only the status of VM --------------------------</maml:title> - <maml:introduction> - <maml:para></maml:para> - </maml:introduction> - <dev:code>PS C:\&gt; # Get the VM instance view - $vm = Get-AzureVM -ResourceGroupName &quot;myRG&quot; -Name &quot;crpVM&quot; -Status</dev:code> - <dev:remarks> - <maml:para></maml:para> - </dev:remarks> - <command:commandLines> - <command:commandLine> - <command:commandText></command:commandText> - </command:commandLine> - </command:commandLines> - </command:example> - <command:example> - <maml:title>-------------------------- Get all VMs in a Resource Group --------------------------</maml:title> - <maml:introduction> - <maml:para></maml:para> - </maml:introduction> - <dev:code>PS C:\&gt; # Get the VM - $vm = Get-AzureVM -ResourceGroupName &quot;myRG&quot;</dev:code> - <dev:remarks> - <maml:para></maml:para> - </dev:remarks> - <command:commandLines> - <command:commandLine> - <command:commandText></command:commandText> - </command:commandLine> - </command:commandLines> - </command:example> </command:examples> <maml:relatedLinks> </maml:relatedLinks> </command:command> -<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10"> +<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> <!--Generated by PS Cmdlet Help Editor--> <command:details> - <command:name>Get-AzureVMExtension</command:name> + <command:name>Get-AzureStorageAccount</command:name> <maml:description> - <maml:para>Get the extensions installed on the VM</maml:para> + <maml:para>Get the properties of a Storage Account</maml:para> </maml:description> <maml:copyright> <maml:para /> </maml:copyright> <command:verb>Get</command:verb> - <command:noun>AzureVMExtension</command:noun> + <command:noun>AzureStorageAccount</command:noun> <dev:version /> </command:details> <maml:description> - <!--This is the Description section--> - <maml:para>Get properties about the extensions installed on a VM. To get only the instance view of the extensions use the -Status switch.</maml:para> + <maml:para>This cmdlet allows you to get the properties of a specified Storage Account or all Storage Accounts within a Resource Group or the subscription.</maml:para> </maml:description> <command:syntax> <command:syntaxItem> - <maml:name>Get-AzureVMExtension</maml:name> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="0"> + <maml:name>Get-AzureStorageAccount</maml:name> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="0"> <maml:name>ResourceGroupName</maml:name> <maml:description> <maml:para>Name of the Resource Group</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="1"> - <maml:name>VMName</maml:name> - <maml:description> - <maml:para>Name of the VM</maml:para> - </maml:description> - <command:parameterValue required="true" variableLength="false">String</command:parameterValue> - </command:parameter> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="2"> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="1"> <maml:name>Name</maml:name> <maml:description> - <maml:para>Name of the Extension</maml:para> + <maml:para>Name of the Storage Account</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="3"> - <maml:name>Status</maml:name> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> <maml:description> - <maml:para>Return only the status view of the Extension</maml:para> + <maml:para /> </maml:description> - <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> </command:parameter> </command:syntaxItem> </command:syntax> <command:parameters> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="0"> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="0"> <maml:name>ResourceGroupName</maml:name> <maml:description> <maml:para>Name of the Resource Group</maml:para> @@ -1003,22 +1392,10 @@ </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="1"> - <maml:name>VMName</maml:name> - <maml:description> - <maml:para>Name of the VM</maml:para> - </maml:description> - <command:parameterValue required="true" variableLength="false">String</command:parameterValue> - <dev:type> - <maml:name>String</maml:name> - <maml:uri/> - </dev:type> - <dev:defaultValue></dev:defaultValue> - </command:parameter> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="2"> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="1"> <maml:name>Name</maml:name> <maml:description> - <maml:para>Name of the Extension</maml:para> + <maml:para>Name of the Storage Account</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -1027,14 +1404,14 @@ </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="3"> - <maml:name>Status</maml:name> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> <maml:description> - <maml:para>Return only the status view of the Extension</maml:para> + <maml:para /> </maml:description> - <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> <dev:type> - <maml:name>SwitchParameter</maml:name> + <maml:name>AzureProfile</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> @@ -1044,62 +1421,97 @@ <command:inputType> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> + <maml:description> + <maml:para> +</maml:para> + </maml:description> </command:inputType> </command:inputTypes> <command:returnValues> <command:returnValue> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> - </command:returnValue> - </command:returnValues> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:returnValue> + </command:returnValues> <command:terminatingErrors></command:terminatingErrors> <command:nonTerminatingErrors></command:nonTerminatingErrors> <maml:alertSet> <maml:title></maml:title> <maml:alert> - <maml:para></maml:para> + <maml:para /> </maml:alert> </maml:alertSet> <command:examples> <command:example> - <maml:title>-------------------------- Get the properties of an extension --------------------------</maml:title> + <maml:title>-------------------------- Get a specified storage account --------------------------</maml:title> <maml:introduction> - <maml:para></maml:para> + <maml:paragraph>PS C:\&gt;</maml:paragraph> </maml:introduction> - <dev:code>PS C:\&gt; Get-AzureVMExtension -ResourceGroupName &quot;RG1&quot; -VMName &quot;crpVM&quot; -Name &quot;testext&quot;</dev:code> + <dev:code>PS C:\&gt; #Get one storage account + Get-AzureStorageAccount -ResourceGroupName &quot;RG1&quot; -AccountName &quot;myStorageAccount&quot;</dev:code> <dev:remarks> + <maml:para /> + <maml:para /> + <maml:para /> <maml:para></maml:para> </dev:remarks> <command:commandLines> <command:commandLine> - <command:commandText></command:commandText> + <command:commandText> + <maml:para /> + </command:commandText> </command:commandLine> </command:commandLines> </command:example> <command:example> - <maml:title>-------------------------- Get the status view of an extension --------------------------</maml:title> + <maml:title>-------------------------- Get all Storage Accounts in a Resource Group --------------------------</maml:title> <maml:introduction> + <maml:paragraph>PS C:\&gt;</maml:paragraph> + </maml:introduction> + <dev:code>PS C:\&gt; # Get all Storage Accounts in a Resource Group + Get-AzureStorageAccount -ResourceGroupName &quot;RG1&quot;</dev:code> + <dev:remarks> + <maml:para /> + <maml:para /> + <maml:para /> <maml:para></maml:para> + </dev:remarks> + <command:commandLines> + <command:commandLine> + <command:commandText> + <maml:para /> + </command:commandText> + </command:commandLine> + </command:commandLines> + </command:example> + <command:example> + <maml:title>-------------------------- Get all Storage Accounts in the subscription --------------------------</maml:title> + <maml:introduction> + <maml:paragraph>PS C:\&gt;</maml:paragraph> </maml:introduction> - <dev:code>PS C:\&gt; Get-AzureVMExtension -ResourceGroupName &quot;RG1&quot; -VMName &quot;crpVM&quot; -Name &quot;testext&quot; -Status</dev:code> + <dev:code>PS C:\&gt; # Get all Storage Accounts in the subscription + Get-AzureStorageAccount</dev:code> <dev:remarks> + <maml:para /> + <maml:para /> + <maml:para /> <maml:para></maml:para> </dev:remarks> <command:commandLines> <command:commandLine> - <command:commandText></command:commandText> + <command:commandText> + <maml:para /> + </command:commandText> </command:commandLine> </command:commandLines> </command:example> @@ -1107,47 +1519,46 @@ <maml:relatedLinks> </maml:relatedLinks> </command:command> -<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10"> +<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> <!--Generated by PS Cmdlet Help Editor--> <command:details> - <command:name>New-AzureAvailabilitySet</command:name> + <command:name>Get-AzureStorageAccountKey</command:name> <maml:description> - <maml:para>Create an Availability Set</maml:para> + <maml:para>Get the access keys for an Azure storage account</maml:para> </maml:description> <maml:copyright> <maml:para /> </maml:copyright> - <command:verb>New</command:verb> - <command:noun>AzureAvailabilitySet</command:noun> + <command:verb>Get</command:verb> + <command:noun>AzureStorageAccountKey</command:noun> <dev:version /> </command:details> <maml:description> - <!--This is the Description section--> - <maml:para>This cmdlet allows you to create an Availability Set</maml:para> + <maml:para>This cmdlet allows you to get the access keys for an Azure storage account.</maml:para> </maml:description> <command:syntax> <command:syntaxItem> - <maml:name>New-AzureAvailabilitySet</maml:name> + <maml:name>Get-AzureStorageAccountKey</maml:name> <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="0"> <maml:name>ResourceGroupName</maml:name> <maml:description> - <maml:para>Name of Resource Group</maml:para> + <maml:para>Name of the Resource Group</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="1"> <maml:name>Name</maml:name> <maml:description> - <maml:para>Name of Availability Set</maml:para> + <maml:para>Name of the Storage Account</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="2"> - <maml:name>Location</maml:name> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> <maml:description> - <maml:para>Location of the Availability Set</maml:para> + <maml:para /> </maml:description> - <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> </command:parameter> </command:syntaxItem> </command:syntax> @@ -1155,7 +1566,7 @@ <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="0"> <maml:name>ResourceGroupName</maml:name> <maml:description> - <maml:para>Name of Resource Group</maml:para> + <maml:para>Name of the Resource Group</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -1167,7 +1578,7 @@ <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="1"> <maml:name>Name</maml:name> <maml:description> - <maml:para>Name of Availability Set</maml:para> + <maml:para>Name of the Storage Account</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -1176,14 +1587,14 @@ </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="2"> - <maml:name>Location</maml:name> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> <maml:description> - <maml:para>Location of the Availability Set</maml:para> + <maml:para /> </maml:description> - <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> <dev:type> - <maml:name>String</maml:name> + <maml:name>AzureProfile</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> @@ -1193,47 +1604,55 @@ <command:inputType> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> + <maml:description> + <maml:para> +</maml:para> + </maml:description> </command:inputType> </command:inputTypes> <command:returnValues> <command:returnValue> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> - </command:returnValue> - </command:returnValues> - <command:terminatingErrors></command:terminatingErrors> - <command:nonTerminatingErrors></command:nonTerminatingErrors> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:returnValue> + </command:returnValues> + <command:terminatingErrors></command:terminatingErrors> + <command:nonTerminatingErrors></command:nonTerminatingErrors> <maml:alertSet> <maml:title></maml:title> <maml:alert> - <maml:para></maml:para> + <maml:para /> </maml:alert> </maml:alertSet> <command:examples> <command:example> - <maml:title>-------------------------- Create an Availability Set --------------------------</maml:title> + <maml:title>-------------------------- Get the access keys for a Storage Account --------------------------</maml:title> <maml:introduction> - <maml:para></maml:para> + <maml:paragraph>PS C:\&gt;</maml:paragraph> </maml:introduction> - <dev:code>PS C:\&gt; New-AzureAvailabilitySet -ResourceGroupName &quot;RG1&quot; -Name &quot;myASet&quot; -Location &quot;West US&quot;</dev:code> + <dev:code>#Get keys + Get-AzureStorageAccountKey -ResourceGroupName &quot;RG1&quot; -AccountName &quot;myStorageAccount&quot;</dev:code> <dev:remarks> + <maml:para /> + <maml:para /> + <maml:para /> <maml:para></maml:para> </dev:remarks> <command:commandLines> <command:commandLine> - <command:commandText></command:commandText> + <command:commandText> + <maml:para /> + </command:commandText> </command:commandLine> </command:commandLines> </command:example> @@ -1241,27 +1660,61 @@ <maml:relatedLinks> </maml:relatedLinks> </command:command> -<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10"> +<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> <!--Generated by PS Cmdlet Help Editor--> <command:details> - <command:name>New-AzureStorageAccount</command:name> + <command:name>Get-AzureVM</command:name> <maml:description> - <maml:para>Allows you to create a new Storage Account</maml:para> + <maml:para>Get the properties of a VM or Get all VMs in a subscription</maml:para> </maml:description> <maml:copyright> <maml:para /> </maml:copyright> - <command:verb>New</command:verb> - <command:noun>AzureStorageAccount</command:noun> + <command:verb>Get</command:verb> + <command:noun>AzureVM</command:noun> <dev:version /> </command:details> <maml:description> - <!--This is the Description section--> - <maml:para>This cmdlet allows you to create a new Storage Account. </maml:para> + <maml:para>This cmdlet allows you to get the model or instance view of the VM. By default the returned VM object contains the model view. If you&#39;d like to see the instance view of a VM use the -Status switch.</maml:para> + <maml:para>This cmdlet also allows you to get information about all VMs in your subscription if no parameters are used.</maml:para> </maml:description> <command:syntax> <command:syntaxItem> - <maml:name>New-AzureStorageAccount</maml:name> + <maml:name>Get-AzureVM</maml:name> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="1"> + <maml:name>All</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + </command:parameter> + </command:syntaxItem> + <command:syntaxItem> + <maml:name>Get-AzureVM</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="0"> + <maml:name>ResourceGroupName</maml:name> + <maml:description> + <maml:para>Name of the Resource Group</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + </command:parameter> + </command:syntaxItem> + <command:syntaxItem> + <maml:name>Get-AzureVM</maml:name> <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="0"> <maml:name>ResourceGroupName</maml:name> <maml:description> @@ -1272,32 +1725,68 @@ <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="1"> <maml:name>Name</maml:name> <maml:description> - <maml:para>Name of the Storage Account</maml:para> + <maml:para>Name of the VM</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="2"> - <maml:name>Type</maml:name> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="2"> + <maml:name>Status</maml:name> <maml:description> - <maml:para>Type of Storage Account. Valid values are -• Standard_LRS (Locally-redundant storage) -• Standard_ZRS (Zone-redundant storage) -• Standard_GRS (Geo-redundant storage) -• Standard_RAGRS (Read access geo-redundant storage) -</maml:para> + <maml:para>Allows you to only return the Instance View</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> </command:parameter> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="3"> - <maml:name>Location</maml:name> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> <maml:description> - <maml:para>Location of the Storage Account</maml:para> + <maml:para /> </maml:description> - <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + </command:parameter> + </command:syntaxItem> + <command:syntaxItem> + <maml:name>Get-AzureVM</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="1"> + <maml:name>NextLink</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">Uri</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> </command:parameter> </command:syntaxItem> </command:syntax> <command:parameters> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="1"> + <maml:name>All</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> + <dev:type> + <maml:name>SwitchParameter</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + <dev:type> + <maml:name>AzureProfile</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="0"> <maml:name>ResourceGroupName</maml:name> <maml:description> @@ -1313,7 +1802,7 @@ <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="1"> <maml:name>Name</maml:name> <maml:description> - <maml:para>Name of the Storage Account</maml:para> + <maml:para>Name of the VM</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -1322,31 +1811,26 @@ </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="2"> - <maml:name>Type</maml:name> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="2"> + <maml:name>Status</maml:name> <maml:description> - <maml:para>Type of Storage Account. Valid values are -• Standard_LRS (Locally-redundant storage) -• Standard_ZRS (Zone-redundant storage) -• Standard_GRS (Geo-redundant storage) -• Standard_RAGRS (Read access geo-redundant storage) -</maml:para> + <maml:para>Allows you to only return the Instance View</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> <dev:type> - <maml:name>String</maml:name> + <maml:name>SwitchParameter</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="3"> - <maml:name>Location</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="1"> + <maml:name>NextLink</maml:name> <maml:description> - <maml:para>Location of the Storage Account</maml:para> + <maml:para /> </maml:description> - <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <command:parameterValue required="true" variableLength="false">Uri</command:parameterValue> <dev:type> - <maml:name>String</maml:name> + <maml:name>Uri</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> @@ -1356,47 +1840,118 @@ <command:inputType> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> + <maml:description> + <maml:para> +</maml:para> + </maml:description> </command:inputType> </command:inputTypes> <command:returnValues> <command:returnValue> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> - </command:returnValue> - </command:returnValues> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:returnValue> + </command:returnValues> <command:terminatingErrors></command:terminatingErrors> <command:nonTerminatingErrors></command:nonTerminatingErrors> <maml:alertSet> <maml:title></maml:title> <maml:alert> - <maml:para></maml:para> + <maml:para /> </maml:alert> </maml:alertSet> <command:examples> <command:example> - <maml:title>-------------------------- Example 1 --------------------------</maml:title> + <maml:title>-------------------------- Get the properties of a VM --------------------------</maml:title> + <maml:introduction> + <maml:paragraph>PS C:\&gt;</maml:paragraph> + </maml:introduction> + <dev:code># Get the VM +$vm = Get-AzureVM -ResourceGroupName &quot;myRG&quot; -Name &quot;crpVM&quot;</dev:code> + <dev:remarks> + <maml:para /> + <maml:para /> + <maml:para /> + <maml:para></maml:para> + </dev:remarks> + <command:commandLines> + <command:commandLine> + <command:commandText> + <maml:para /> + </command:commandText> + </command:commandLine> + </command:commandLines> + </command:example> + <command:example> + <maml:title>-------------------------- Get only the status of VM --------------------------</maml:title> + <maml:introduction> + <maml:paragraph>PS C:\&gt;</maml:paragraph> + </maml:introduction> + <dev:code>Get the VM instance view +$vm = Get-AzureVM -ResourceGroupName &quot;myRG&quot; -Name &quot;crpVM&quot; -Status</dev:code> + <dev:remarks> + <maml:para /> + <maml:para /> + <maml:para /> + <maml:para></maml:para> + </dev:remarks> + <command:commandLines> + <command:commandLine> + <command:commandText> + <maml:para /> + </command:commandText> + </command:commandLine> + </command:commandLines> + </command:example> + <command:example> + <maml:title>-------------------------- Get all VMs in a Resource Group --------------------------</maml:title> <maml:introduction> + <maml:paragraph>PS C:\&gt;</maml:paragraph> + </maml:introduction> + <dev:code># Get all VMs in a Resource Group +$vm = Get-AzureVM -ResourceGroupName &quot;myRG&quot;</dev:code> + <dev:remarks> + <maml:para /> + <maml:para /> + <maml:para /> <maml:para></maml:para> + </dev:remarks> + <command:commandLines> + <command:commandLine> + <command:commandText> + <maml:para /> + </command:commandText> + </command:commandLine> + </command:commandLines> + </command:example> + <command:example> + <maml:title>-------------------------- Get all VMs in your subscription --------------------------</maml:title> + <maml:introduction> + <maml:paragraph>PS C:\&gt;</maml:paragraph> </maml:introduction> - <dev:code>PS C:\&gt; New-AzureStorageAccount -ResourceGroupName &quot;myResourceGroup&quot; -AccountName &quot;myStorageAccount&quot; -Location &quot;US West&quot; -AccountType &quot;Standard_GRS&quot;</dev:code> + <dev:code># Get all VMs in your subscription +Get-AzureVM</dev:code> <dev:remarks> + <maml:para /> + <maml:para /> + <maml:para /> <maml:para></maml:para> </dev:remarks> <command:commandLines> <command:commandLine> - <command:commandText></command:commandText> + <command:commandText> + <maml:para /> + </command:commandText> </command:commandLine> </command:commandLines> </command:example> @@ -1404,58 +1959,80 @@ <maml:relatedLinks> </maml:relatedLinks> </command:command> -<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10"> +<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> <!--Generated by PS Cmdlet Help Editor--> <command:details> - <command:name>New-AzureStorageAccountKey</command:name> + <command:name>Get-AzureVMAccessExtension</command:name> <maml:description> - <maml:para>Regenerates a storage key for an Azure storage account.</maml:para> + <maml:para>Get the information about VMAccess extension</maml:para> </maml:description> <maml:copyright> <maml:para /> </maml:copyright> - <command:verb>New</command:verb> - <command:noun>AzureStorageAccountKey</command:noun> + <command:verb>Get</command:verb> + <command:noun>AzureVMAccessExtension</command:noun> <dev:version /> </command:details> <maml:description> - <!--This is the Description section--> - <maml:para>Regenerates a storage key for an Azure storage account.</maml:para> + <maml:para>Get the information about VMAccess extension</maml:para> </maml:description> <command:syntax> <command:syntaxItem> - <maml:name>New-AzureStorageAccountKey</maml:name> + <maml:name>Get-AzureVMAccessExtension</maml:name> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="3"> + <maml:name>Status</maml:name> + <maml:description> + <maml:para>Get the instance view of the extension</maml:para> + </maml:description> + <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> + </command:parameter> <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="0"> <maml:name>ResourceGroupName</maml:name> <maml:description> - <maml:para>Name of the Resource Group the storage account is in</maml:para> + <maml:para>Name of the Resource Group of the VM</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="1"> - <maml:name>Name</maml:name> + <maml:name>VMName</maml:name> <maml:description> - <maml:para>Name of the Storage Account</maml:para> + <maml:para>Name of the VM</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="2"> - <maml:name>KeyName</maml:name> + <maml:name>Name</maml:name> <maml:description> - <maml:para>Specifies which key to regenerate. Supported value set: -- “key1” -- “key2” -</maml:para> + <maml:para>Name of the extension</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + </command:parameter> </command:syntaxItem> </command:syntax> <command:parameters> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="3"> + <maml:name>Status</maml:name> + <maml:description> + <maml:para>Get the instance view of the extension</maml:para> + </maml:description> + <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> + <dev:type> + <maml:name>SwitchParameter</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="0"> <maml:name>ResourceGroupName</maml:name> <maml:description> - <maml:para>Name of the Resource Group the storage account is in</maml:para> + <maml:para>Name of the Resource Group of the VM</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -1465,9 +2042,9 @@ <dev:defaultValue></dev:defaultValue> </command:parameter> <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="1"> - <maml:name>Name</maml:name> + <maml:name>VMName</maml:name> <maml:description> - <maml:para>Name of the Storage Account</maml:para> + <maml:para>Name of the VM</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -1477,12 +2054,9 @@ <dev:defaultValue></dev:defaultValue> </command:parameter> <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="2"> - <maml:name>KeyName</maml:name> + <maml:name>Name</maml:name> <maml:description> - <maml:para>Specifies which key to regenerate. Supported value set: -- “key1” -- “key2” -</maml:para> + <maml:para>Name of the extension</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -1491,54 +2065,94 @@ </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + <dev:type> + <maml:name>AzureProfile</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> </command:parameters> <command:inputTypes> <command:inputType> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> + <maml:description> + <maml:para> +</maml:para> + </maml:description> </command:inputType> </command:inputTypes> <command:returnValues> <command:returnValue> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> - </command:returnValue> - </command:returnValues> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:returnValue> + </command:returnValues> <command:terminatingErrors></command:terminatingErrors> <command:nonTerminatingErrors></command:nonTerminatingErrors> <maml:alertSet> <maml:title></maml:title> <maml:alert> - <maml:para></maml:para> + <maml:para /> </maml:alert> </maml:alertSet> <command:examples> <command:example> <maml:title>-------------------------- Example 1 --------------------------</maml:title> <maml:introduction> - <maml:para></maml:para> + <maml:paragraph>PS C:\&gt;</maml:paragraph> </maml:introduction> - <dev:code>PS C:\&gt; #Regenerate a key -New-AzureStorageKey -ResourceGroupName &quot;myResourceGroup&quot; -AccountName &quot;myStorageAccount&quot; -keyName &quot;key1&quot; + <dev:code># Get VM Extension +$ext = Get-AzureVMAccessExtension -ResourceGroupName $rgname -VMName $vmname -Name $extname; </dev:code> <dev:remarks> + <maml:para /> + <maml:para /> + <maml:para /> <maml:para></maml:para> </dev:remarks> <command:commandLines> <command:commandLine> - <command:commandText></command:commandText> + <command:commandText> + <maml:para /> + </command:commandText> + </command:commandLine> + </command:commandLines> + </command:example> + <command:example> + <maml:title>-------------------------- Example 2 --------------------------</maml:title> + <maml:introduction> + <maml:paragraph>PS C:\&gt;</maml:paragraph> + </maml:introduction> + <dev:code># Get VM Extension Status +$ext = Get-AzureVMAccessExtension -ResourceGroupName $rgname -VMName $vmname -Name $extname -Status;</dev:code> + <dev:remarks> + <maml:para /> + <maml:para /> + <maml:para /> + <maml:para></maml:para> + </dev:remarks> + <command:commandLines> + <command:commandLine> + <command:commandText> + <maml:para /> + </command:commandText> </command:commandLine> </command:commandLines> </command:example> @@ -1546,62 +2160,80 @@ New-AzureStorageKey -ResourceGroupName &quot;myResourceGroup&quot; -AccountName <maml:relatedLinks> </maml:relatedLinks> </command:command> -<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10"> +<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> <!--Generated by PS Cmdlet Help Editor--> <command:details> - <command:name>New-AzureVM</command:name> + <command:name>Get-AzureVMCustomScriptExtension</command:name> <maml:description> - <maml:para>Create a new VM</maml:para> + <maml:para>Get the information about Custom Script extension</maml:para> </maml:description> <maml:copyright> <maml:para /> </maml:copyright> - <command:verb>New</command:verb> - <command:noun>AzureVM</command:noun> + <command:verb>Get</command:verb> + <command:noun>AzureVMCustomScriptExtension</command:noun> <dev:version /> </command:details> <maml:description> - <!--This is the Description section--> - <maml:para>This cmdlet allows you to create a new VM in Azure. This cmdlet takes a VM object as input which can be created using the New-AzureVMConfig cmdlet. The VM object must then be configured correctly using appropriate cmdlets such as Set-AzureVMOperatingSystem, Set-AzureVMSourceImage, Set-AzureVMNetworkInterface etc. before the VM can be created in Azure succesfully.</maml:para> + <maml:para>Get the information about Custom Script extension</maml:para> </maml:description> <command:syntax> <command:syntaxItem> - <maml:name>New-AzureVM</maml:name> + <maml:name>Get-AzureVMCustomScriptExtension</maml:name> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="3"> + <maml:name>Status</maml:name> + <maml:description> + <maml:para>Get the instance view of the extension</maml:para> + </maml:description> + <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> + </command:parameter> <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="0"> <maml:name>ResourceGroupName</maml:name> <maml:description> - <maml:para>Name of the Resource Group</maml:para> + <maml:para>Name of the Resource Group of the VM</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="1"> - <maml:name>Location</maml:name> + <maml:name>VMName</maml:name> <maml:description> - <maml:para>Location of the VM</maml:para> + <maml:para>Name of the VM</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="2"> - <maml:name>VM</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="2"> + <maml:name>Name</maml:name> <maml:description> - <maml:para>VM object that is configured and represents the state of the VM to be created. The VM object can be created using the New-AzureVMConfig cmdlet. The VM object must then be configured correctly using appropriate cmdlets such as Set-AzureVMOperatingSystem, Set-AzureVMSourceImage, Set-AzureVMNetworkInterface etc. before the VM can be created in Azure succesfully.</maml:para> + <maml:para>Name of the extension</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="false">PSVirtualMachine</command:parameterValue> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="3"> - <maml:name>Name</maml:name> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> <maml:description> - <maml:para></maml:para> + <maml:para /> </maml:description> - <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> </command:parameter> </command:syntaxItem> </command:syntax> <command:parameters> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="3"> + <maml:name>Status</maml:name> + <maml:description> + <maml:para>Get the instance view of the extension</maml:para> + </maml:description> + <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> + <dev:type> + <maml:name>SwitchParameter</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="0"> <maml:name>ResourceGroupName</maml:name> <maml:description> - <maml:para>Name of the Resource Group</maml:para> + <maml:para>Name of the Resource Group of the VM</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -1611,9 +2243,9 @@ New-AzureStorageKey -ResourceGroupName &quot;myResourceGroup&quot; -AccountName <dev:defaultValue></dev:defaultValue> </command:parameter> <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="1"> - <maml:name>Location</maml:name> + <maml:name>VMName</maml:name> <maml:description> - <maml:para>Location of the VM</maml:para> + <maml:para>Name of the VM</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -1622,26 +2254,26 @@ New-AzureStorageKey -ResourceGroupName &quot;myResourceGroup&quot; -AccountName </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="2"> - <maml:name>VM</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="2"> + <maml:name>Name</maml:name> <maml:description> - <maml:para>VM object that is configured and represents the state of the VM to be created. The VM object can be created using the New-AzureVMConfig cmdlet. The VM object must then be configured correctly using appropriate cmdlets such as Set-AzureVMOperatingSystem, Set-AzureVMSourceImage, Set-AzureVMNetworkInterface etc. before the VM can be created in Azure succesfully.</maml:para> + <maml:para>Name of the extension</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="false">PSVirtualMachine</command:parameterValue> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> - <maml:name>PSVirtualMachine</maml:name> + <maml:name>String</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="3"> - <maml:name>Name</maml:name> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> <maml:description> - <maml:para></maml:para> + <maml:para /> </maml:description> - <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> <dev:type> - <maml:name>String</maml:name> + <maml:name>AzureProfile</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> @@ -1651,105 +2283,76 @@ New-AzureStorageKey -ResourceGroupName &quot;myResourceGroup&quot; -AccountName <command:inputType> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> + <maml:description> + <maml:para> +</maml:para> + </maml:description> </command:inputType> </command:inputTypes> <command:returnValues> <command:returnValue> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> - </command:returnValue> - </command:returnValues> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:returnValue> + </command:returnValues> <command:terminatingErrors></command:terminatingErrors> <command:nonTerminatingErrors></command:nonTerminatingErrors> <maml:alertSet> <maml:title></maml:title> <maml:alert> - <maml:para></maml:para> + <maml:para /> </maml:alert> </maml:alertSet> <command:examples> <command:example> - <maml:title>-------------------------- Create a VM with two Data Disks --------------------------</maml:title> + <maml:title>-------------------------- Example 1 --------------------------</maml:title> <maml:introduction> + <maml:paragraph>PS C:\&gt;</maml:paragraph> + </maml:introduction> + <dev:code># Get VM Extension +$ext = Get-AzureVMCustomScriptExtension -ResourceGroupName $rgname -VMName $vmname -Name $extname;</dev:code> + <dev:remarks> + <maml:para /> + <maml:para /> + <maml:para /> <maml:para></maml:para> + </dev:remarks> + <command:commandLines> + <command:commandLine> + <command:commandText> + <maml:para /> + </command:commandText> + </command:commandLine> + </command:commandLines> + </command:example> + <command:example> + <maml:title>-------------------------- Example 2 --------------------------</maml:title> + <maml:introduction> + <maml:paragraph>PS C:\&gt;</maml:paragraph> </maml:introduction> - <dev:code>PS C:\&gt; # Common - $rgname = &quot;myrg&quot; - $loc = &apos;West US&apos;; - $vmsize = &apos;Standard_A2&apos;; - $vmname = &apos;vm&apos; + $rgname; - - # Create Resource Group - New-AzureResourceGroup -Name $rgname -Location $loc; - - # Create VM Object - $vm = New-AzureVMConfig -VMName $vmname -VMSize $vmsize; - - # Setup Networking - $subnet = New-AzureVirtualNetworkSubnetConfig -Name (&apos;subnet&apos; + $rgname) -AddressPrefix &quot;10.0.0.0/24&quot; -DnsServer &quot;10.1.1.1&quot;; - $vnet = New-AzureVirtualNetwork -Force -Name (&apos;vnet&apos; + $rgname) -ResourceGroupName $rgname -Location $loc -AddressPrefix &quot;10.0.0.0/16&quot; -DnsServer &quot;10.1.1.1&quot; -Subnet $subnet; - $vnet = Get-AzureVirtualNetwork -Name (&apos;vnet&apos; + $rgname) -ResourceGroupName $rgname; - $subnetId = $vnet.Properties.Subnets[0].Id; - $pubip = New-AzurePublicIpAddress -Force -Name (&apos;pubip&apos; + $rgname) -ResourceGroupName $rgname -Location $loc -AllocationMethod Dynamic -DomainNameLabel (&apos;pubip&apos; + $rgname); - $pubip = Get-AzurePublicIpAddress -Name (&apos;pubip&apos; + $rgname) -ResourceGroupName $rgname; - $pubipId = $pubip.Id; - $nic = New-AzureNetworkInterface -Force -Name (&apos;nic&apos; + $rgname) -ResourceGroupName $rgname -Location $loc -AllocationMethod Dynamic -SubnetId $subnetId -PublicIpAddressId $pubip.Id; - $nic = Get-AzureNetworkInterface -Name (&apos;nic&apos; + $rgname) -ResourceGroupName $rgname; - $nicId = $nic.Id; - - # Add NIC to VM - $vm = Add-AzureVMNetworkInterface -VM $vm -Id $nicId; - - # Setup Storage - $stoname = &apos;sto&apos; + $rgname; - $stotype = &apos;Standard_GRS&apos;; - - New-AzureStorageAccount -ResourceGroupName $rgname -Name $stoname -Location $loc -Type $stotype; - $stoaccount = Get-AzureStorageAccount -ResourceGroupName $rgname -Name $stoname; - - $osDiskName = &apos;osDisk&apos;; - $osDiskCaching = &apos;ReadWrite&apos;; - $osDiskVhdUri = &quot;https://$stoname.blob.core.windows.net/test/os.vhd&quot;; - $dataDiskVhdUri1 = &quot;https://$stoname.blob.core.windows.net/test/data1.vhd&quot;; - $dataDiskVhdUri2 = &quot;https://$stoname.blob.core.windows.net/test/data2.vhd&quot;; - - # Add Data Disks - $vm = Add-AzureVMDataDisk -VM $vm -Name &apos;testDataDisk1&apos; -Caching &apos;ReadOnly&apos; -DiskSizeInGB 10 -Lun 0 -VhdUri $dataDiskVhdUri1; - $vm = Add-AzureVMDataDisk -VM $vm -Name &apos;testDataDisk2&apos; -Caching &apos;ReadOnly&apos; -DiskSizeInGB 11 -Lun 1 -VhdUri $dataDiskVhdUri2; - - # Setup OS &amp; Image - $user = &quot;Foo12&quot;; - $password = &apos;BaR@123&apos; + $rgname; - $securePassword = ConvertTo-SecureString $password -AsPlainText -Force; - $cred = New-Object System.Management.Automation.PSCredential ($user, $securePassword); - - $computerName = &apos;test&apos;; - $vhdContainer = &quot;https://$stoname.blob.core.windows.net/test&quot;; - $img = &apos;a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-Datacenter-201410.01-en.us-127GB.vhd&apos;; - - $vm = Set-AzureVMOperatingSystem -VM $vm -Windows -ComputerName $computerName -Credential $cred; - $vm = Set-AzureVMSourceImage -VM $vm -Name $img -DestinationVhdsContainer $vhdContainer; - - # Create Virtual Machine - New-AzureVM -ResourceGroupName $rgname -Location $loc -Name $vmname -VM $vm;</dev:code> + <dev:code># Get VM Extension Status +$ext = Get-AzureVMCustomScriptExtension -ResourceGroupName $rgname -VMName $vmname -Name $extname -Status;</dev:code> <dev:remarks> + <maml:para /> + <maml:para /> + <maml:para /> <maml:para></maml:para> </dev:remarks> <command:commandLines> <command:commandLine> - <command:commandText></command:commandText> + <command:commandText> + <maml:para /> + </command:commandText> </command:commandLine> </command:commandLines> </command:example> @@ -1757,55 +2360,68 @@ New-AzureStorageKey -ResourceGroupName &quot;myResourceGroup&quot; -AccountName <maml:relatedLinks> </maml:relatedLinks> </command:command> -<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10"> +<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> <!--Generated by PS Cmdlet Help Editor--> <command:details> - <command:name>New-AzureVMConfig</command:name> + <command:name>Get-AzureVMExtension</command:name> <maml:description> - <maml:para>Create the configurable local VM Object</maml:para> + <maml:para>Get the extensions installed on the VM</maml:para> </maml:description> <maml:copyright> <maml:para /> </maml:copyright> - <command:verb>New</command:verb> - <command:noun>AzureVMConfig</command:noun> + <command:verb>Get</command:verb> + <command:noun>AzureVMExtension</command:noun> <dev:version /> </command:details> <maml:description> - <!--This is the Description section--> - <maml:para>This cmdlet allows you to create the configurable local VM Object. The VM object must then be configured correctly using appropriate cmdlets such as Set-AzureVMOperatingSystem, Set-AzureVMSourceImage, Set-AzureVMNetworkInterface etc. before the VM can be created in Azure succesfully.</maml:para> + <maml:para>Get properties about the extensions installed on a VM. To get only the instance view of the extensions use the -Status switch.</maml:para> </maml:description> <command:syntax> <command:syntaxItem> - <maml:name>New-AzureVMConfig</maml:name> + <maml:name>Get-AzureVMExtension</maml:name> <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="0"> - <maml:name>VMName</maml:name> + <maml:name>ResourceGroupName</maml:name> <maml:description> - <maml:para>Name of the VM</maml:para> + <maml:para>Name of the Resource Group</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="1"> - <maml:name>VMSize</maml:name> + <maml:name>VMName</maml:name> <maml:description> - <maml:para>Size of the VM</maml:para> + <maml:para>Name of the VM</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="2"> - <maml:name>AvailabilitySetId</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="2"> + <maml:name>Name</maml:name> <maml:description> - <maml:para>Id of the Availability Set. This can be gotten through Get-AzureAvailabilitySet cmdlet.</maml:para> + <maml:para>Name of the Extension</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="3"> + <maml:name>Status</maml:name> + <maml:description> + <maml:para>Return only the status view of the Extension</maml:para> + </maml:description> + <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + </command:parameter> </command:syntaxItem> </command:syntax> <command:parameters> <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="0"> - <maml:name>VMName</maml:name> + <maml:name>ResourceGroupName</maml:name> <maml:description> - <maml:para>Name of the VM</maml:para> + <maml:para>Name of the Resource Group</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -1815,9 +2431,9 @@ New-AzureStorageKey -ResourceGroupName &quot;myResourceGroup&quot; -AccountName <dev:defaultValue></dev:defaultValue> </command:parameter> <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="1"> - <maml:name>VMSize</maml:name> + <maml:name>VMName</maml:name> <maml:description> - <maml:para>Size of the VM</maml:para> + <maml:para>Name of the VM</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -1826,10 +2442,10 @@ New-AzureStorageKey -ResourceGroupName &quot;myResourceGroup&quot; -AccountName </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="2"> - <maml:name>AvailabilitySetId</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="2"> + <maml:name>Name</maml:name> <maml:description> - <maml:para>Id of the Availability Set. This can be gotten through Get-AzureAvailabilitySet cmdlet.</maml:para> + <maml:para>Name of the Extension</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -1838,56 +2454,103 @@ New-AzureStorageKey -ResourceGroupName &quot;myResourceGroup&quot; -AccountName </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="3"> + <maml:name>Status</maml:name> + <maml:description> + <maml:para>Return only the status view of the Extension</maml:para> + </maml:description> + <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> + <dev:type> + <maml:name>SwitchParameter</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + <dev:type> + <maml:name>AzureProfile</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> </command:parameters> <command:inputTypes> <command:inputType> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> + <maml:description> + <maml:para> +</maml:para> + </maml:description> </command:inputType> </command:inputTypes> <command:returnValues> <command:returnValue> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> - </command:returnValue> - </command:returnValues> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:returnValue> + </command:returnValues> <command:terminatingErrors></command:terminatingErrors> <command:nonTerminatingErrors></command:nonTerminatingErrors> <maml:alertSet> <maml:title></maml:title> <maml:alert> - <maml:para></maml:para> + <maml:para /> </maml:alert> </maml:alertSet> <command:examples> <command:example> - <maml:title>-------------------------- Create a new VM Object --------------------------</maml:title> + <maml:title>-------------------------- Get the properties of an extension --------------------------</maml:title> <maml:introduction> - <maml:para></maml:para> + <maml:paragraph>PS C:\&gt;</maml:paragraph> </maml:introduction> - <dev:code>PS C:\&gt; # Get the Availability Set - $as = Get-AzureAvailabilitySet –ResourceGroupName “RG1” –Name “MyASet” - - # Create the VM object - $vm = New-AzureVMConfig –VMName “myVM” –VMSize “Standard_A1&quot; -AvailabilitySetID $as.Id</dev:code> + <dev:code>Get-AzureVMExtension -ResourceGroupName &quot;RG1&quot; -VMName &quot;crpVM&quot; -Name &quot;testext&quot;</dev:code> + <dev:remarks> + <maml:para /> + <maml:para /> + <maml:para /> + <maml:para></maml:para> + </dev:remarks> + <command:commandLines> + <command:commandLine> + <command:commandText> + <maml:para /> + </command:commandText> + </command:commandLine> + </command:commandLines> + </command:example> + <command:example> + <maml:title>-------------------------- Get the status view of an extension --------------------------</maml:title> + <maml:introduction> + <maml:paragraph>PS C:\&gt;</maml:paragraph> + </maml:introduction> + <dev:code>Get-AzureVMExtension -ResourceGroupName &quot;RG1&quot; -VMName &quot;crpVM&quot; -Name &quot;testext&quot; -Status</dev:code> <dev:remarks> + <maml:para /> + <maml:para /> + <maml:para /> <maml:para></maml:para> </dev:remarks> <command:commandLines> <command:commandLine> - <command:commandText></command:commandText> + <command:commandText> + <maml:para /> + </command:commandText> </command:commandLine> </command:commandLines> </command:example> @@ -1895,48 +2558,68 @@ New-AzureStorageKey -ResourceGroupName &quot;myResourceGroup&quot; -AccountName <maml:relatedLinks> </maml:relatedLinks> </command:command> -<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10"> +<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> <!--Generated by PS Cmdlet Help Editor--> <command:details> - <command:name>Remove-AzureAvailabilitySet</command:name> + <command:name>Get-AzureVMExtensionImage</command:name> <maml:description> - <maml:para>Remove an Availability Set from Azure</maml:para> + <maml:para>Get all versions for a particular extension</maml:para> </maml:description> <maml:copyright> <maml:para /> </maml:copyright> - <command:verb>Remove</command:verb> - <command:noun>AzureAvailabilitySet</command:noun> + <command:verb>Get</command:verb> + <command:noun>AzureVMExtensionImage</command:noun> <dev:version /> </command:details> <maml:description> - <!--This is the Description section--> - <maml:para>Remove an Availability Set from Azure</maml:para> + <maml:para>Get all versions for a particular extension</maml:para> </maml:description> <command:syntax> <command:syntaxItem> - <maml:name>Remove-AzureAvailabilitySet</maml:name> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="0"> - <maml:name>ResourceGroupName</maml:name> + <maml:name>Get-AzureVMExtensionImage</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>Location</maml:name> <maml:description> - <maml:para>Name of the Resource Group</maml:para> + <maml:para>Location of the extension</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="1"> - <maml:name>Name</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>PublisherName</maml:name> <maml:description> - <maml:para>Name of the Availability Set</maml:para> + <maml:para>Name of extension publisher</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>Type</maml:name> + <maml:description> + <maml:para>Type of the extension</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>FilterExpression</maml:name> + <maml:description> + <maml:para /> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + </command:parameter> </command:syntaxItem> </command:syntax> <command:parameters> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="0"> - <maml:name>ResourceGroupName</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>Location</maml:name> <maml:description> - <maml:para>Name of the Resource Group</maml:para> + <maml:para>Location of the extension</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -1945,10 +2628,34 @@ New-AzureStorageKey -ResourceGroupName &quot;myResourceGroup&quot; -AccountName </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="1"> - <maml:name>Name</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>PublisherName</maml:name> <maml:description> - <maml:para>Name of the Availability Set</maml:para> + <maml:para>Name of extension publisher</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>Type</maml:name> + <maml:description> + <maml:para>Type of the extension</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>FilterExpression</maml:name> + <maml:description> + <maml:para /> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -1957,52 +2664,83 @@ New-AzureStorageKey -ResourceGroupName &quot;myResourceGroup&quot; -AccountName </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + <dev:type> + <maml:name>AzureProfile</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="named"> + <maml:name>Version</maml:name> + <maml:description> + <maml:para>Version of the extension</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">string</command:parameterValue> + <dev:type> + <maml:name>string</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> </command:parameters> <command:inputTypes> <command:inputType> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> + <maml:description> + <maml:para> +</maml:para> + </maml:description> </command:inputType> </command:inputTypes> <command:returnValues> <command:returnValue> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> - </command:returnValue> - </command:returnValues> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:returnValue> + </command:returnValues> <command:terminatingErrors></command:terminatingErrors> <command:nonTerminatingErrors></command:nonTerminatingErrors> <maml:alertSet> <maml:title></maml:title> <maml:alert> - <maml:para></maml:para> + <maml:para /> </maml:alert> </maml:alertSet> <command:examples> <command:example> - <maml:title>-------------------------- Remove Availability Set --------------------------</maml:title> + <maml:title>-------------------------- Example 1 --------------------------</maml:title> <maml:introduction> - <maml:para></maml:para> + <maml:paragraph>PS C:\&gt;</maml:paragraph> </maml:introduction> - <dev:code>PS C:\&gt; Remove-AzureAvailabilitySet –Name “MyASet” –ResouceGroupName “RG1”</dev:code> + <dev:code>Get-AzureVMExtensionImage -Location eastus -PublisherName Symantec -Type SymantecEndpointProtection</dev:code> <dev:remarks> + <maml:para /> + <maml:para /> + <maml:para /> <maml:para></maml:para> </dev:remarks> <command:commandLines> <command:commandLine> - <command:commandText></command:commandText> + <command:commandText> + <maml:para /> + </command:commandText> </command:commandLine> </command:commandLines> </command:example> @@ -2010,48 +2748,75 @@ New-AzureStorageKey -ResourceGroupName &quot;myResourceGroup&quot; -AccountName <maml:relatedLinks> </maml:relatedLinks> </command:command> -<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10"> +<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> <!--Generated by PS Cmdlet Help Editor--> <command:details> - <command:name>Remove-AzureStorageAccount</command:name> + <command:name>Get-AzureVMExtensionImageDetail</command:name> <maml:description> - <maml:para>Remove Storage Account from Azure</maml:para> + <maml:para>Get the details on a specific extension</maml:para> </maml:description> <maml:copyright> <maml:para /> </maml:copyright> - <command:verb>Remove</command:verb> - <command:noun>AzureStorageAccount</command:noun> + <command:verb>Get</command:verb> + <command:noun>AzureVMExtensionImageDetail</command:noun> <dev:version /> </command:details> <maml:description> - <!--This is the Description section--> - <maml:para>Remove Storage Account from Azure</maml:para> + <maml:para>Get the details on a specific extension</maml:para> </maml:description> <command:syntax> <command:syntaxItem> - <maml:name>Remove-AzureStorageAccount</maml:name> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="0"> - <maml:name>ResourceGroupName</maml:name> + <maml:name>Get-AzureVMExtensionImageDetail</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>Location</maml:name> <maml:description> - <maml:para>Name of the Resource Group</maml:para> + <maml:para>Location of the extension</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="1"> - <maml:name>Name</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>PublisherName</maml:name> <maml:description> - <maml:para>Name of the VM</maml:para> + <maml:para>Name of the extension publisher</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>Type</maml:name> + <maml:description> + <maml:para>Type of the extension</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>Version</maml:name> + <maml:description> + <maml:para>Version of the extension</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>FilterExpression</maml:name> + <maml:description> + <maml:para /> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + </command:parameter> </command:syntaxItem> </command:syntax> <command:parameters> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="0"> - <maml:name>ResourceGroupName</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>Location</maml:name> <maml:description> - <maml:para>Name of the Resource Group</maml:para> + <maml:para>Location of the extension</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -2060,10 +2825,46 @@ New-AzureStorageKey -ResourceGroupName &quot;myResourceGroup&quot; -AccountName </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="1"> - <maml:name>Name</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>PublisherName</maml:name> <maml:description> - <maml:para>Name of the VM</maml:para> + <maml:para>Name of the extension publisher</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>Type</maml:name> + <maml:description> + <maml:para>Type of the extension</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>Version</maml:name> + <maml:description> + <maml:para>Version of the extension</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>FilterExpression</maml:name> + <maml:description> + <maml:para /> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -2072,52 +2873,71 @@ New-AzureStorageKey -ResourceGroupName &quot;myResourceGroup&quot; -AccountName </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + <dev:type> + <maml:name>AzureProfile</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> </command:parameters> <command:inputTypes> <command:inputType> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> + <maml:description> + <maml:para> +</maml:para> + </maml:description> </command:inputType> </command:inputTypes> <command:returnValues> <command:returnValue> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> - </command:returnValue> - </command:returnValues> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:returnValue> + </command:returnValues> <command:terminatingErrors></command:terminatingErrors> <command:nonTerminatingErrors></command:nonTerminatingErrors> <maml:alertSet> <maml:title></maml:title> <maml:alert> - <maml:para></maml:para> + <maml:para /> </maml:alert> </maml:alertSet> <command:examples> <command:example> - <maml:title>-------------------------- Remove Storage Account --------------------------</maml:title> + <maml:title>-------------------------- Example 1 --------------------------</maml:title> <maml:introduction> - <maml:para></maml:para> + <maml:paragraph>PS C:\&gt;</maml:paragraph> </maml:introduction> - <dev:code>PS C:\&gt; Remove-AzureStorageAccount -ResourceGroupName &quot;RG1&quot; -AccountName &quot;myStorageAccount&quot;</dev:code> + <dev:code>Get-AzureVMExtensionImageDetail -Location eastus -PublisherName Symantec -Type SymantecEndpointProtection -Version 12.1.4100.2</dev:code> <dev:remarks> + <maml:para /> + <maml:para /> + <maml:para /> <maml:para></maml:para> </dev:remarks> <command:commandLines> <command:commandLine> - <command:commandText></command:commandText> + <command:commandText> + <maml:para /> + </command:commandText> </command:commandLine> </command:commandLines> </command:example> @@ -2125,55 +2945,54 @@ New-AzureStorageKey -ResourceGroupName &quot;myResourceGroup&quot; -AccountName <maml:relatedLinks> </maml:relatedLinks> </command:command> -<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10"> +<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> <!--Generated by PS Cmdlet Help Editor--> <command:details> - <command:name>Remove-AzureVM</command:name> + <command:name>Get-AzureVMExtensionImageType</command:name> <maml:description> - <maml:para>Remove VM from Azure</maml:para> + <maml:para>Get the type of the Azure extension</maml:para> </maml:description> <maml:copyright> <maml:para /> </maml:copyright> - <command:verb>Remove</command:verb> - <command:noun>AzureVM</command:noun> + <command:verb>Get</command:verb> + <command:noun>AzureVMExtensionImageType</command:noun> <dev:version /> </command:details> <maml:description> - <!--This is the Description section--> - <maml:para>Remove VM from Azure</maml:para> + <maml:para>Get the type of the Azure extension</maml:para> </maml:description> <command:syntax> <command:syntaxItem> - <maml:name>Remove-AzureVM</maml:name> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="0"> - <maml:name>ResourceGroupName</maml:name> + <maml:name>Get-AzureVMExtensionImageType</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>Location</maml:name> <maml:description> - <maml:para>Name of the Resource Group</maml:para> + <maml:para>Location of the Extension</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="1"> - <maml:name>Name</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>PublisherName</maml:name> <maml:description> - <maml:para>Name of the VM</maml:para> + <maml:para>Name of the extension publisher</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="2"> - <maml:name>Force</maml:name> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> <maml:description> - <maml:para></maml:para> + <maml:para /> </maml:description> - <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> </command:parameter> </command:syntaxItem> </command:syntax> <command:parameters> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="0"> - <maml:name>ResourceGroupName</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>Location</maml:name> <maml:description> - <maml:para>Name of the Resource Group</maml:para> + <maml:para>Location of the Extension</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -2182,10 +3001,10 @@ New-AzureStorageKey -ResourceGroupName &quot;myResourceGroup&quot; -AccountName </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="1"> - <maml:name>Name</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>PublisherName</maml:name> <maml:description> - <maml:para>Name of the VM</maml:para> + <maml:para>Name of the extension publisher</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -2194,14 +3013,14 @@ New-AzureStorageKey -ResourceGroupName &quot;myResourceGroup&quot; -AccountName </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="2"> - <maml:name>Force</maml:name> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> <maml:description> - <maml:para></maml:para> + <maml:para /> </maml:description> - <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> <dev:type> - <maml:name>SwitchParameter</maml:name> + <maml:name>AzureProfile</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> @@ -2211,47 +3030,54 @@ New-AzureStorageKey -ResourceGroupName &quot;myResourceGroup&quot; -AccountName <command:inputType> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> + <maml:description> + <maml:para> +</maml:para> + </maml:description> </command:inputType> </command:inputTypes> <command:returnValues> <command:returnValue> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> - </command:returnValue> - </command:returnValues> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:returnValue> + </command:returnValues> <command:terminatingErrors></command:terminatingErrors> <command:nonTerminatingErrors></command:nonTerminatingErrors> <maml:alertSet> <maml:title></maml:title> <maml:alert> - <maml:para></maml:para> + <maml:para /> </maml:alert> </maml:alertSet> <command:examples> <command:example> - <maml:title>-------------------------- Remove a VM --------------------------</maml:title> + <maml:title>-------------------------- Example 1 --------------------------</maml:title> <maml:introduction> - <maml:para></maml:para> + <maml:paragraph>PS C:\&gt;</maml:paragraph> </maml:introduction> - <dev:code>PS C:\&gt; Remove-AzureVM -ResourceGroupName &quot;myRG&quot; -Name &quot;crpVM&quot;</dev:code> + <dev:code>Get-AzureVMExtensionImageType -Location eastus -PublisherName Symantec</dev:code> <dev:remarks> + <maml:para /> + <maml:para /> + <maml:para /> <maml:para></maml:para> </dev:remarks> <command:commandLines> <command:commandLine> - <command:commandText></command:commandText> + <command:commandText> + <maml:para /> + </command:commandText> </command:commandLine> </command:commandLines> </command:example> @@ -2259,60 +3085,123 @@ New-AzureStorageKey -ResourceGroupName &quot;myResourceGroup&quot; -AccountName <maml:relatedLinks> </maml:relatedLinks> </command:command> -<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10"> +<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> <!--Generated by PS Cmdlet Help Editor--> <command:details> - <command:name>Remove-AzureVMDataDisk</command:name> + <command:name>Get-AzureVMImage</command:name> <maml:description> - <maml:para>Remove a Data Disk from the VM</maml:para> + <maml:para>Get all the versions of a VMImage</maml:para> </maml:description> <maml:copyright> <maml:para /> </maml:copyright> - <command:verb>Remove</command:verb> - <command:noun>AzureVMDataDisk</command:noun> + <command:verb>Get</command:verb> + <command:noun>AzureVMImage</command:noun> <dev:version /> </command:details> <maml:description> - <!--This is the Description section--> - <maml:para>This cmdlet allows you to remove a Data Disk from the VM</maml:para> + <maml:para>Get all the versions of a VMImage</maml:para> </maml:description> <command:syntax> <command:syntaxItem> - <maml:name>Remove-AzureVMDataDisk</maml:name> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0"> - <maml:name>VM</maml:name> + <maml:name>Get-AzureVMImage</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>Location</maml:name> <maml:description> - <maml:para>Local VM object to remove the Data Disk from. This object can be gotten from the Get-AzureVM cmdlet.</maml:para> + <maml:para>Location of the VMImage</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="false">PSVirtualMachine</command:parameterValue> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="1"> - <maml:name>Name</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>PublisherName</maml:name> <maml:description> - <maml:para>Name of the Data Disk to be removed</maml:para> + <maml:para>Publisher of the VMImage</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>Offer</maml:name> + <maml:description> + <maml:para>Type of VMImage offer</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>Skus</maml:name> + <maml:description> + <maml:para>VMImage SKU</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>FilterExpression</maml:name> + <maml:description> + <maml:para /> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + </command:parameter> </command:syntaxItem> </command:syntax> <command:parameters> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0"> - <maml:name>VM</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>Location</maml:name> <maml:description> - <maml:para>Local VM object to remove the Data Disk from. This object can be gotten from the Get-AzureVM cmdlet.</maml:para> + <maml:para>Location of the VMImage</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="false">PSVirtualMachine</command:parameterValue> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> - <maml:name>PSVirtualMachine</maml:name> + <maml:name>String</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="1"> - <maml:name>Name</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>PublisherName</maml:name> <maml:description> - <maml:para>Name of the Data Disk to be removed</maml:para> + <maml:para>Publisher of the VMImage</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>Offer</maml:name> + <maml:description> + <maml:para>Type of VMImage offer</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>Skus</maml:name> + <maml:description> + <maml:para>VMImage SKU</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>FilterExpression</maml:name> + <maml:description> + <maml:para /> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -2321,59 +3210,83 @@ New-AzureStorageKey -ResourceGroupName &quot;myResourceGroup&quot; -AccountName </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + <dev:type> + <maml:name>AzureProfile</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="named"> + <maml:name>Version</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">string</command:parameterValue> + <dev:type> + <maml:name>string</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> </command:parameters> <command:inputTypes> <command:inputType> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> + <maml:description> + <maml:para> +</maml:para> + </maml:description> </command:inputType> </command:inputTypes> <command:returnValues> <command:returnValue> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> - </command:returnValue> - </command:returnValues> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:returnValue> + </command:returnValues> <command:terminatingErrors></command:terminatingErrors> <command:nonTerminatingErrors></command:nonTerminatingErrors> <maml:alertSet> <maml:title></maml:title> <maml:alert> - <maml:para></maml:para> + <maml:para /> </maml:alert> </maml:alertSet> <command:examples> <command:example> - <maml:title>-------------------------- Remove a Data Disk --------------------------</maml:title> + <maml:title>-------------------------- Example 1 --------------------------</maml:title> <maml:introduction> - <maml:para></maml:para> + <maml:paragraph>PS C:\&gt;</maml:paragraph> </maml:introduction> - <dev:code>PS C:\&gt; # Get the VM - $vm = Get-AzureVM -ResourceGroupName &quot;myRG&quot; -Name &quot;crpVM&quot; - - # Remove &quot;disk3&quot; Data Disk from the local object - Remove-AzureVMDataDisk -VM $vm -Name &apos;disk3&apos; - - # Update the state of the Azure VM - Update-AzureVM -ResourceGroupName &quot;myRG&quot; -Name &quot;crpVM&quot; –VM $vm</dev:code> + <dev:code>Get-AzureVMImageDetail -Location eastus -PublisherName Canonical -Offer UbuntuServer -Skus 15.04-DAILY -Version 15.04.20150422</dev:code> <dev:remarks> + <maml:para /> + <maml:para /> + <maml:para /> <maml:para></maml:para> </dev:remarks> <command:commandLines> <command:commandLine> - <command:commandText></command:commandText> + <command:commandText> + <maml:para /> + </command:commandText> </command:commandLine> </command:commandLines> </command:example> @@ -2381,74 +3294,87 @@ New-AzureStorageKey -ResourceGroupName &quot;myResourceGroup&quot; -AccountName <maml:relatedLinks> </maml:relatedLinks> </command:command> -<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10"> +<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> <!--Generated by PS Cmdlet Help Editor--> <command:details> - <command:name>Remove-AzureVMExtension</command:name> + <command:name>Get-AzureVMImageDetail</command:name> <maml:description> - <maml:para>Remove an Extension from a VM</maml:para> + <maml:para>Returns information about a VMImage</maml:para> </maml:description> <maml:copyright> <maml:para /> </maml:copyright> - <command:verb>Remove</command:verb> - <command:noun>AzureVMExtension</command:noun> + <command:verb>Get</command:verb> + <command:noun>AzureVMImageDetail</command:noun> <dev:version /> </command:details> <maml:description> - <!--This is the Description section--> - <maml:para>Remove an extension from a VM</maml:para> + <maml:para>Returns information about a VMImage</maml:para> </maml:description> <command:syntax> <command:syntaxItem> - <maml:name>Remove-AzureVMExtension</maml:name> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>Force</maml:name> + <maml:name>Get-AzureVMImageDetail</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>Location</maml:name> <maml:description> - <maml:para></maml:para> + <maml:para>Location of the VMImage</maml:para> </maml:description> - <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="0"> - <maml:name>ResourceGroupName</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>PublisherName</maml:name> <maml:description> - <maml:para>Name of Resource Group</maml:para> + <maml:para>Name of the VMImage publisher</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="1"> - <maml:name>VMName</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>Offer</maml:name> <maml:description> - <maml:para>Name of the VM</maml:para> + <maml:para>Type of VMImage offer</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="2"> - <maml:name>Name</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>Skus</maml:name> <maml:description> - <maml:para>Name of the Extension</maml:para> + <maml:para>Type of VMImage SKU</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>Version</maml:name> + <maml:description> + <maml:para>Version of VMImage</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + </command:parameter> </command:syntaxItem> </command:syntax> <command:parameters> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>Force</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>Location</maml:name> <maml:description> - <maml:para></maml:para> + <maml:para>Location of the VMImage</maml:para> </maml:description> - <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> - <maml:name>SwitchParameter</maml:name> + <maml:name>String</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="0"> - <maml:name>ResourceGroupName</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>PublisherName</maml:name> <maml:description> - <maml:para>Name of Resource Group</maml:para> + <maml:para>Name of the VMImage publisher</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -2457,10 +3383,10 @@ New-AzureStorageKey -ResourceGroupName &quot;myResourceGroup&quot; -AccountName </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="1"> - <maml:name>VMName</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>Offer</maml:name> <maml:description> - <maml:para>Name of the VM</maml:para> + <maml:para>Type of VMImage offer</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -2469,10 +3395,22 @@ New-AzureStorageKey -ResourceGroupName &quot;myResourceGroup&quot; -AccountName </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="2"> - <maml:name>Name</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>Skus</maml:name> <maml:description> - <maml:para>Name of the Extension</maml:para> + <maml:para>Type of VMImage SKU</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>Version</maml:name> + <maml:description> + <maml:para>Version of VMImage</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -2481,52 +3419,71 @@ New-AzureStorageKey -ResourceGroupName &quot;myResourceGroup&quot; -AccountName </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + <dev:type> + <maml:name>AzureProfile</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> </command:parameters> <command:inputTypes> <command:inputType> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> + <maml:description> + <maml:para> +</maml:para> + </maml:description> </command:inputType> </command:inputTypes> <command:returnValues> <command:returnValue> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> - </command:returnValue> - </command:returnValues> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:returnValue> + </command:returnValues> <command:terminatingErrors></command:terminatingErrors> <command:nonTerminatingErrors></command:nonTerminatingErrors> <maml:alertSet> <maml:title></maml:title> <maml:alert> - <maml:para></maml:para> + <maml:para /> </maml:alert> </maml:alertSet> <command:examples> <command:example> - <maml:title>-------------------------- Remove an Extension --------------------------</maml:title> + <maml:title>-------------------------- Example 1 --------------------------</maml:title> <maml:introduction> - <maml:para></maml:para> + <maml:paragraph>PS C:\&gt;</maml:paragraph> </maml:introduction> - <dev:code>PS C:\&gt; Remove-AzureVMExtension –ResouceGroupName &quot;RG&quot; –Name &quot;myext&quot; -VMName &quot;vm1&quot;</dev:code> + <dev:code>Get-AzureVMImageDetail -Location eastus -PublisherName Canonical -Offer UbuntuServer -Skus 15.04-DAILY -Version 15.04.20150422</dev:code> <dev:remarks> + <maml:para /> + <maml:para /> + <maml:para /> <maml:para></maml:para> </dev:remarks> <command:commandLines> <command:commandLine> - <command:commandText></command:commandText> + <command:commandText> + <maml:para /> + </command:commandText> </command:commandLine> </command:commandLines> </command:example> @@ -2534,48 +3491,54 @@ New-AzureStorageKey -ResourceGroupName &quot;myResourceGroup&quot; -AccountName <maml:relatedLinks> </maml:relatedLinks> </command:command> -<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10"> +<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> <!--Generated by PS Cmdlet Help Editor--> <command:details> - <command:name>Restart-AzureVM</command:name> + <command:name>Get-AzureVMImageOffer</command:name> <maml:description> - <maml:para>Restart a VM</maml:para> + <maml:para>Returns the VMImage Offer types</maml:para> </maml:description> <maml:copyright> <maml:para /> </maml:copyright> - <command:verb>Restart</command:verb> - <command:noun>AzureVM</command:noun> + <command:verb>Get</command:verb> + <command:noun>AzureVMImageOffer</command:noun> <dev:version /> </command:details> <maml:description> - <!--This is the Description section--> - <maml:para>Restart a VM</maml:para> + <maml:para>Returns the VMImage Offer types</maml:para> </maml:description> <command:syntax> <command:syntaxItem> - <maml:name>Restart-AzureVM</maml:name> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="0"> - <maml:name>ResourceGroupName</maml:name> + <maml:name>Get-AzureVMImageOffer</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>Location</maml:name> <maml:description> - <maml:para>Name of Resource Group</maml:para> + <maml:para>Location for the images</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="1"> - <maml:name>Name</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>PublisherName</maml:name> <maml:description> - <maml:para>Name of the VM</maml:para> + <maml:para>Name of the Publisher</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + </command:parameter> </command:syntaxItem> </command:syntax> <command:parameters> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="0"> - <maml:name>ResourceGroupName</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>Location</maml:name> <maml:description> - <maml:para>Name of Resource Group</maml:para> + <maml:para>Location for the images</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -2584,10 +3547,10 @@ New-AzureStorageKey -ResourceGroupName &quot;myResourceGroup&quot; -AccountName </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="1"> - <maml:name>Name</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>PublisherName</maml:name> <maml:description> - <maml:para>Name of the VM</maml:para> + <maml:para>Name of the Publisher</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -2596,52 +3559,3911 @@ New-AzureStorageKey -ResourceGroupName &quot;myResourceGroup&quot; -AccountName </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + <dev:type> + <maml:name>AzureProfile</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> </command:parameters> <command:inputTypes> <command:inputType> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> + <maml:description> + <maml:para> +</maml:para> + </maml:description> </command:inputType> </command:inputTypes> <command:returnValues> <command:returnValue> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> - </command:returnValue> - </command:returnValues> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:returnValue> + </command:returnValues> <command:terminatingErrors></command:terminatingErrors> <command:nonTerminatingErrors></command:nonTerminatingErrors> <maml:alertSet> <maml:title></maml:title> <maml:alert> - <maml:para></maml:para> + <maml:para /> </maml:alert> </maml:alertSet> <command:examples> <command:example> <maml:title>-------------------------- Example 1 --------------------------</maml:title> <maml:introduction> - <maml:para></maml:para> + <maml:paragraph>PS C:\&gt;</maml:paragraph> </maml:introduction> - <dev:code>PS C:\&gt; Restart-AzureVM -ResourceGroupName &quot;myRG&quot; -Name &quot;crpVM&quot;</dev:code> + <dev:code>Get-AzureVMImageOffer -Location eastus -PublisherName Canonical</dev:code> <dev:remarks> + <maml:para /> + <maml:para /> + <maml:para /> + <maml:para></maml:para> + </dev:remarks> + <command:commandLines> + <command:commandLine> + <command:commandText> + <maml:para /> + </command:commandText> + </command:commandLine> + </command:commandLines> + </command:example> + </command:examples> + <maml:relatedLinks> + </maml:relatedLinks> +</command:command> +<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> +<!--Generated by PS Cmdlet Help Editor--> + <command:details> + <command:name>Get-AzureVMImagePublisher</command:name> + <maml:description> + <maml:para>Return the VMImage publishers</maml:para> + </maml:description> + <maml:copyright> + <maml:para /> + </maml:copyright> + <command:verb>Get</command:verb> + <command:noun>AzureVMImagePublisher</command:noun> + <dev:version /> + </command:details> + <maml:description> + <maml:para>Return the VMImage publishers</maml:para> + </maml:description> + <command:syntax> + <command:syntaxItem> + <maml:name>Get-AzureVMImagePublisher</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>Location</maml:name> + <maml:description> + <maml:para>Location of the VMImage</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + </command:parameter> + </command:syntaxItem> + </command:syntax> + <command:parameters> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>Location</maml:name> + <maml:description> + <maml:para>Location of the VMImage</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + <dev:type> + <maml:name>AzureProfile</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + </command:parameters> + <command:inputTypes> + <command:inputType> + <dev:type> + <maml:name></maml:name> + <maml:uri></maml:uri> + <maml:description/> + </dev:type> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:inputType> + </command:inputTypes> + <command:returnValues> + <command:returnValue> + <dev:type> + <maml:name></maml:name> + <maml:uri></maml:uri> + <maml:description/> + </dev:type> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:returnValue> + </command:returnValues> + <command:terminatingErrors></command:terminatingErrors> + <command:nonTerminatingErrors></command:nonTerminatingErrors> + <maml:alertSet> + <maml:title></maml:title> + <maml:alert> + <maml:para /> + </maml:alert> + </maml:alertSet> + <command:examples> + <command:example> + <maml:title>-------------------------- Example 1 --------------------------</maml:title> + <maml:introduction> + <maml:paragraph>PS C:\&gt;</maml:paragraph> + </maml:introduction> + <dev:code>Get-AzureVMImagePublisher -Location eastus</dev:code> + <dev:remarks> + <maml:para /> + <maml:para /> + <maml:para /> + <maml:para></maml:para> + </dev:remarks> + <command:commandLines> + <command:commandLine> + <command:commandText> + <maml:para /> + </command:commandText> + </command:commandLine> + </command:commandLines> + </command:example> + </command:examples> + <maml:relatedLinks> + </maml:relatedLinks> +</command:command> +<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> +<!--Generated by PS Cmdlet Help Editor--> + <command:details> + <command:name>Get-AzureVMImageSku</command:name> + <maml:description> + <maml:para>Returns VMImage SKUs</maml:para> + </maml:description> + <maml:copyright> + <maml:para /> + </maml:copyright> + <command:verb>Get</command:verb> + <command:noun>AzureVMImageSku</command:noun> + <dev:version /> + </command:details> + <maml:description> + <maml:para>Returns VMImage SKUs</maml:para> + </maml:description> + <command:syntax> + <command:syntaxItem> + <maml:name>Get-AzureVMImageSku</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>Location</maml:name> + <maml:description> + <maml:para>Location of the VMImage</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>PublisherName</maml:name> + <maml:description> + <maml:para>Name of the Publisher</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>Offer</maml:name> + <maml:description> + <maml:para>Type of VMImage offer</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + </command:parameter> + </command:syntaxItem> + </command:syntax> + <command:parameters> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>Location</maml:name> + <maml:description> + <maml:para>Location of the VMImage</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>PublisherName</maml:name> + <maml:description> + <maml:para>Name of the Publisher</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>Offer</maml:name> + <maml:description> + <maml:para>Type of VMImage offer</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + <dev:type> + <maml:name>AzureProfile</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + </command:parameters> + <command:inputTypes> + <command:inputType> + <dev:type> + <maml:name></maml:name> + <maml:uri></maml:uri> + <maml:description/> + </dev:type> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:inputType> + </command:inputTypes> + <command:returnValues> + <command:returnValue> + <dev:type> + <maml:name></maml:name> + <maml:uri></maml:uri> + <maml:description/> + </dev:type> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:returnValue> + </command:returnValues> + <command:terminatingErrors></command:terminatingErrors> + <command:nonTerminatingErrors></command:nonTerminatingErrors> + <maml:alertSet> + <maml:title></maml:title> + <maml:alert> + <maml:para /> + </maml:alert> + </maml:alertSet> + <command:examples> + <command:example> + <maml:title>-------------------------- Example 1 --------------------------</maml:title> + <maml:introduction> + <maml:paragraph>PS C:\&gt;</maml:paragraph> + </maml:introduction> + <dev:code>Get-AzureVMImageSku -Location eastus -PublisherName Canonical -Offer UbuntuServer</dev:code> + <dev:remarks> + <maml:para /> + <maml:para /> + <maml:para /> + <maml:para></maml:para> + </dev:remarks> + <command:commandLines> + <command:commandLine> + <command:commandText> + <maml:para /> + </command:commandText> + </command:commandLine> + </command:commandLines> + </command:example> + </command:examples> + <maml:relatedLinks> + </maml:relatedLinks> +</command:command> +<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> +<!--Generated by PS Cmdlet Help Editor--> + <command:details> + <command:name>Get-AzureVMSize</command:name> + <maml:description> + <maml:para>Get the available VM sizes by location, Availability Set or resize an existing VM to</maml:para> + </maml:description> + <maml:copyright> + <maml:para /> + </maml:copyright> + <command:verb>Get</command:verb> + <command:noun>AzureVMSize</command:noun> + <dev:version /> + </command:details> + <maml:description> + <maml:para>Get the available VM sizes by location, Availability Set or resize an existing VM to</maml:para> + </maml:description> + <command:syntax> + <command:syntaxItem> + <maml:name>Get-AzureVMSize</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="0"> + <maml:name>Location</maml:name> + <maml:description> + <maml:para>Location of the VM</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + </command:parameter> + </command:syntaxItem> + <command:syntaxItem> + <maml:name>Get-AzureVMSize</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="0"> + <maml:name>ResourceGroupName</maml:name> + <maml:description> + <maml:para>Resource Group of the VM</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="1"> + <maml:name>AvailabilitySetName</maml:name> + <maml:description> + <maml:para>Name of the Availability Set</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + </command:parameter> + </command:syntaxItem> + <command:syntaxItem> + <maml:name>Get-AzureVMSize</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="0"> + <maml:name>ResourceGroupName</maml:name> + <maml:description> + <maml:para>Resource Group of the VM</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="1"> + <maml:name>VMName</maml:name> + <maml:description> + <maml:para>Name of the VM</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + </command:parameter> + </command:syntaxItem> + </command:syntax> + <command:parameters> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="0"> + <maml:name>Location</maml:name> + <maml:description> + <maml:para>Location of the VM</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + <dev:type> + <maml:name>AzureProfile</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="0"> + <maml:name>ResourceGroupName</maml:name> + <maml:description> + <maml:para>Resource Group of the VM</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="1"> + <maml:name>AvailabilitySetName</maml:name> + <maml:description> + <maml:para>Name of the Availability Set</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="1"> + <maml:name>VMName</maml:name> + <maml:description> + <maml:para>Name of the VM</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + </command:parameters> + <command:inputTypes> + <command:inputType> + <dev:type> + <maml:name></maml:name> + <maml:uri></maml:uri> + <maml:description/> + </dev:type> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:inputType> + </command:inputTypes> + <command:returnValues> + <command:returnValue> + <dev:type> + <maml:name></maml:name> + <maml:uri></maml:uri> + <maml:description/> + </dev:type> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:returnValue> + </command:returnValues> + <command:terminatingErrors></command:terminatingErrors> + <command:nonTerminatingErrors></command:nonTerminatingErrors> + <maml:alertSet> + <maml:title></maml:title> + <maml:alert> + <maml:para /> + </maml:alert> + </maml:alertSet> + <command:examples> + <command:example> + <maml:title>-------------------------- Example 1 --------------------------</maml:title> + <maml:introduction> + <maml:paragraph>PS C:\&gt;</maml:paragraph> + </maml:introduction> + <dev:code>Get-AzureVMSize -Location westeurope</dev:code> + <dev:remarks> + <maml:para>Get the available VM sizes in a location</maml:para> + <maml:para /> + <maml:para /> + <maml:para></maml:para> + </dev:remarks> + <command:commandLines> + <command:commandLine> + <command:commandText> + <maml:para /> + </command:commandText> + </command:commandLine> + </command:commandLines> + </command:example> + <command:example> + <maml:title>-------------------------- Example 2 --------------------------</maml:title> + <maml:introduction> + <maml:paragraph>PS C:\&gt;</maml:paragraph> + </maml:introduction> + <dev:code>Get-AzureVMSize -ResourceGroupName rg3-AvailabilitySetName av3</dev:code> + <dev:remarks> + <maml:para>Get available VM sizes you can deploy in an existing availability set</maml:para> + <maml:para /> + <maml:para /> + <maml:para></maml:para> + </dev:remarks> + <command:commandLines> + <command:commandLine> + <command:commandText> + <maml:para /> + </command:commandText> + </command:commandLine> + </command:commandLines> + </command:example> + <command:example> + <maml:title>-------------------------- Example 3 --------------------------</maml:title> + <maml:introduction> + <maml:paragraph>PS C:\&gt;</maml:paragraph> + </maml:introduction> + <dev:code>Get-AzureVMSize -ResourceGroupName rg3 -VMName vm3</dev:code> + <dev:remarks> + <maml:para>Available VM sizes that an existing VM can be resized to</maml:para> + <maml:para /> + <maml:para /> + <maml:para></maml:para> + </dev:remarks> + <command:commandLines> + <command:commandLine> + <command:commandText> + <maml:para /> + </command:commandText> + </command:commandLine> + </command:commandLines> + </command:example> + </command:examples> + <maml:relatedLinks> + </maml:relatedLinks> +</command:command> +<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> +<!--Generated by PS Cmdlet Help Editor--> + <command:details> + <command:name>Get-AzureVMUsage</command:name> + <maml:description> + <maml:para>Get the VM core count usage in a location</maml:para> + </maml:description> + <maml:copyright> + <maml:para /> + </maml:copyright> + <command:verb>Get</command:verb> + <command:noun>AzureVMUsage</command:noun> + <dev:version /> + </command:details> + <maml:description> + <maml:para>Get the VM core count usage in a location</maml:para> + </maml:description> + <command:syntax> + <command:syntaxItem> + <maml:name>Get-AzureVMUsage</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="0"> + <maml:name>Location</maml:name> + <maml:description> + <maml:para>Location to get VM core count usage in</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + </command:parameter> + </command:syntaxItem> + </command:syntax> + <command:parameters> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="0"> + <maml:name>Location</maml:name> + <maml:description> + <maml:para>Location to get VM core count usage in</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + <dev:type> + <maml:name>AzureProfile</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + </command:parameters> + <command:inputTypes> + <command:inputType> + <dev:type> + <maml:name></maml:name> + <maml:uri></maml:uri> + <maml:description/> + </dev:type> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:inputType> + </command:inputTypes> + <command:returnValues> + <command:returnValue> + <dev:type> + <maml:name></maml:name> + <maml:uri></maml:uri> + <maml:description/> + </dev:type> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:returnValue> + </command:returnValues> + <command:terminatingErrors></command:terminatingErrors> + <command:nonTerminatingErrors></command:nonTerminatingErrors> + <maml:alertSet> + <maml:title></maml:title> + <maml:alert> + <maml:para /> + </maml:alert> + </maml:alertSet> + <command:examples> + <command:example> + <maml:title>-------------------------- Example 1 --------------------------</maml:title> + <maml:introduction> + <maml:paragraph>PS C:\&gt;</maml:paragraph> + </maml:introduction> + <dev:code>Get-AzureVMUsage -Location eastus</dev:code> + <dev:remarks> + <maml:para /> + <maml:para /> + <maml:para /> + <maml:para></maml:para> + </dev:remarks> + <command:commandLines> + <command:commandLine> + <command:commandText> + <maml:para /> + </command:commandText> + </command:commandLine> + </command:commandLines> + </command:example> + </command:examples> + <maml:relatedLinks> + </maml:relatedLinks> +</command:command> +<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> +<!--Generated by PS Cmdlet Help Editor--> + <command:details> + <command:name>New-AzureAvailabilitySet</command:name> + <maml:description> + <maml:para>Create an Availability Set</maml:para> + </maml:description> + <maml:copyright> + <maml:para /> + </maml:copyright> + <command:verb>New</command:verb> + <command:noun>AzureAvailabilitySet</command:noun> + <dev:version /> + </command:details> + <maml:description> + <maml:para>This cmdlet allows you to create an Availability Set</maml:para> + </maml:description> + <command:syntax> + <command:syntaxItem> + <maml:name>New-AzureAvailabilitySet</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="0"> + <maml:name>ResourceGroupName</maml:name> + <maml:description> + <maml:para>Name of Resource Group</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="1"> + <maml:name>Name</maml:name> + <maml:description> + <maml:para>Name of Availability Set</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="2"> + <maml:name>Location</maml:name> + <maml:description> + <maml:para>Location of the Availability Set</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="3"> + <maml:name>PlatformUpdateDomainCount</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="true">Nullable`1[Int32]</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="4"> + <maml:name>PlatformFaultDomainCount</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="true">Nullable`1[Int32]</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + </command:parameter> + </command:syntaxItem> + </command:syntax> + <command:parameters> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="0"> + <maml:name>ResourceGroupName</maml:name> + <maml:description> + <maml:para>Name of Resource Group</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="1"> + <maml:name>Name</maml:name> + <maml:description> + <maml:para>Name of Availability Set</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="2"> + <maml:name>Location</maml:name> + <maml:description> + <maml:para>Location of the Availability Set</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="3"> + <maml:name>PlatformUpdateDomainCount</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="true">Nullable`1[Int32]</command:parameterValue> + <dev:type> + <maml:name>Nullable`1[Int32]</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="4"> + <maml:name>PlatformFaultDomainCount</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="true">Nullable`1[Int32]</command:parameterValue> + <dev:type> + <maml:name>Nullable`1[Int32]</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + <dev:type> + <maml:name>AzureProfile</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + </command:parameters> + <command:inputTypes> + <command:inputType> + <dev:type> + <maml:name></maml:name> + <maml:uri></maml:uri> + <maml:description/> + </dev:type> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:inputType> + </command:inputTypes> + <command:returnValues> + <command:returnValue> + <dev:type> + <maml:name></maml:name> + <maml:uri></maml:uri> + <maml:description/> + </dev:type> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:returnValue> + </command:returnValues> + <command:terminatingErrors></command:terminatingErrors> + <command:nonTerminatingErrors></command:nonTerminatingErrors> + <maml:alertSet> + <maml:title></maml:title> + <maml:alert> + <maml:para /> + </maml:alert> + </maml:alertSet> + <command:examples> + <command:example> + <maml:title>-------------------------- Create an Availability Set --------------------------</maml:title> + <maml:introduction> + <maml:paragraph>PS C:\&gt;</maml:paragraph> + </maml:introduction> + <dev:code>New-AzureAvailabilitySet -ResourceGroupName &quot;RG1&quot; -Name &quot;myASet&quot; -Location &quot;West US&quot;</dev:code> + <dev:remarks> + <maml:para /> + <maml:para /> + <maml:para /> + <maml:para></maml:para> + </dev:remarks> + <command:commandLines> + <command:commandLine> + <command:commandText> + <maml:para /> + </command:commandText> + </command:commandLine> + </command:commandLines> + </command:example> + </command:examples> + <maml:relatedLinks> + </maml:relatedLinks> +</command:command> +<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> +<!--Generated by PS Cmdlet Help Editor--> + <command:details> + <command:name>New-AzureStorageAccount</command:name> + <maml:description> + <maml:para>Allows you to create a new Storage Account</maml:para> + </maml:description> + <maml:copyright> + <maml:para /> + </maml:copyright> + <command:verb>New</command:verb> + <command:noun>AzureStorageAccount</command:noun> + <dev:version /> + </command:details> + <maml:description> + <maml:para>This cmdlet allows you to create a new Storage Account.</maml:para> + </maml:description> + <command:syntax> + <command:syntaxItem> + <maml:name>New-AzureStorageAccount</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="0"> + <maml:name>ResourceGroupName</maml:name> + <maml:description> + <maml:para>Name of the Resource Group</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="1"> + <maml:name>Name</maml:name> + <maml:description> + <maml:para>Name of the Storage Account</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="2"> + <maml:name>Type</maml:name> + <maml:description> + <maml:para>Type of Storage Account. Valid values are +• Standard_LRS (Locally-redundant storage) +• Standard_ZRS (Zone-redundant storage) +• Standard_GRS (Geo-redundant storage) +• Standard_RAGRS (Read access geo-redundant storage)</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="3"> + <maml:name>Location</maml:name> + <maml:description> + <maml:para>Location of the Storage Account</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + </command:parameter> + </command:syntaxItem> + </command:syntax> + <command:parameters> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="0"> + <maml:name>ResourceGroupName</maml:name> + <maml:description> + <maml:para>Name of the Resource Group</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="1"> + <maml:name>Name</maml:name> + <maml:description> + <maml:para>Name of the Storage Account</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="2"> + <maml:name>Type</maml:name> + <maml:description> + <maml:para>Type of Storage Account. Valid values are +• Standard_LRS (Locally-redundant storage) +• Standard_ZRS (Zone-redundant storage) +• Standard_GRS (Geo-redundant storage) +• Standard_RAGRS (Read access geo-redundant storage)</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="3"> + <maml:name>Location</maml:name> + <maml:description> + <maml:para>Location of the Storage Account</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + <dev:type> + <maml:name>AzureProfile</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + </command:parameters> + <command:inputTypes> + <command:inputType> + <dev:type> + <maml:name></maml:name> + <maml:uri></maml:uri> + <maml:description/> + </dev:type> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:inputType> + </command:inputTypes> + <command:returnValues> + <command:returnValue> + <dev:type> + <maml:name></maml:name> + <maml:uri></maml:uri> + <maml:description/> + </dev:type> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:returnValue> + </command:returnValues> + <command:terminatingErrors></command:terminatingErrors> + <command:nonTerminatingErrors></command:nonTerminatingErrors> + <maml:alertSet> + <maml:title></maml:title> + <maml:alert> + <maml:para /> + </maml:alert> + </maml:alertSet> + <command:examples> + <command:example> + <maml:title>-------------------------- Example 1 --------------------------</maml:title> + <maml:introduction> + <maml:paragraph>PS C:\&gt;</maml:paragraph> + </maml:introduction> + <dev:code>New-AzureStorageAccount -ResourceGroupName &quot;myResourceGroup&quot; -AccountName &quot;myStorageAccount&quot; -Location &quot;US West&quot; -AccountType &quot;Standard_GRS&quot;</dev:code> + <dev:remarks> + <maml:para /> + <maml:para /> + <maml:para /> + <maml:para></maml:para> + </dev:remarks> + <command:commandLines> + <command:commandLine> + <command:commandText> + <maml:para /> + </command:commandText> + </command:commandLine> + </command:commandLines> + </command:example> + </command:examples> + <maml:relatedLinks> + </maml:relatedLinks> +</command:command> +<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> +<!--Generated by PS Cmdlet Help Editor--> + <command:details> + <command:name>New-AzureStorageAccountKey</command:name> + <maml:description> + <maml:para>Regenerates a storage key for an Azure storage account.</maml:para> + </maml:description> + <maml:copyright> + <maml:para /> + </maml:copyright> + <command:verb>New</command:verb> + <command:noun>AzureStorageAccountKey</command:noun> + <dev:version /> + </command:details> + <maml:description> + <maml:para>Regenerates a storage key for an Azure storage account.</maml:para> + </maml:description> + <command:syntax> + <command:syntaxItem> + <maml:name>New-AzureStorageAccountKey</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="0"> + <maml:name>ResourceGroupName</maml:name> + <maml:description> + <maml:para>Name of the Resource Group the storage account is in</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="1"> + <maml:name>Name</maml:name> + <maml:description> + <maml:para>Name of the Storage Account</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="2"> + <maml:name>KeyName</maml:name> + <maml:description> + <maml:para>Specifies which key to regenerate. Supported value set: +- “key1” +- “key2”</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + </command:parameter> + </command:syntaxItem> + </command:syntax> + <command:parameters> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="0"> + <maml:name>ResourceGroupName</maml:name> + <maml:description> + <maml:para>Name of the Resource Group the storage account is in</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="1"> + <maml:name>Name</maml:name> + <maml:description> + <maml:para>Name of the Storage Account</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="2"> + <maml:name>KeyName</maml:name> + <maml:description> + <maml:para>Specifies which key to regenerate. Supported value set: +- “key1” +- “key2”</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + <dev:type> + <maml:name>AzureProfile</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + </command:parameters> + <command:inputTypes> + <command:inputType> + <dev:type> + <maml:name></maml:name> + <maml:uri></maml:uri> + <maml:description/> + </dev:type> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:inputType> + </command:inputTypes> + <command:returnValues> + <command:returnValue> + <dev:type> + <maml:name></maml:name> + <maml:uri></maml:uri> + <maml:description/> + </dev:type> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:returnValue> + </command:returnValues> + <command:terminatingErrors></command:terminatingErrors> + <command:nonTerminatingErrors></command:nonTerminatingErrors> + <maml:alertSet> + <maml:title></maml:title> + <maml:alert> + <maml:para /> + </maml:alert> + </maml:alertSet> + <command:examples> + <command:example> + <maml:title>-------------------------- Example 1 --------------------------</maml:title> + <maml:introduction> + <maml:paragraph>PS C:\&gt;</maml:paragraph> + </maml:introduction> + <dev:code>#Regenerate a key +New-AzureStorageKey -ResourceGroupName &quot;myResourceGroup&quot; -AccountName &quot;myStorageAccount&quot; -keyName &quot;key1&quot;</dev:code> + <dev:remarks> + <maml:para /> + <maml:para /> + <maml:para /> + <maml:para></maml:para> + </dev:remarks> + <command:commandLines> + <command:commandLine> + <command:commandText> + <maml:para /> + </command:commandText> + </command:commandLine> + </command:commandLines> + </command:example> + </command:examples> + <maml:relatedLinks> + </maml:relatedLinks> +</command:command> +<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> +<!--Generated by PS Cmdlet Help Editor--> + <command:details> + <command:name>New-AzureVM</command:name> + <maml:description> + <maml:para>Create a new VM</maml:para> + </maml:description> + <maml:copyright> + <maml:para /> + </maml:copyright> + <command:verb>New</command:verb> + <command:noun>AzureVM</command:noun> + <dev:version /> + </command:details> + <maml:description> + <maml:para>This cmdlet allows you to create a new VM in Azure. This cmdlet takes a VM object as input which can be created using the New-AzureVMConfig cmdlet. The VM object must then be configured correctly using appropriate cmdlets such as Set-AzureVMOperatingSystem, Set-AzureVMSourceImage, Set-AzureVMNetworkInterface etc. before the VM can be created in Azure succesfully.</maml:para> + </maml:description> + <command:syntax> + <command:syntaxItem> + <maml:name>New-AzureVM</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="0"> + <maml:name>ResourceGroupName</maml:name> + <maml:description> + <maml:para>Name of the Resource Group</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="1"> + <maml:name>Location</maml:name> + <maml:description> + <maml:para>Location of the VM</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="2"> + <maml:name>VM</maml:name> + <maml:description> + <maml:para>VM object that is configured and represents the state of the VM to be created. The VM object can be created using the New-AzureVMConfig cmdlet. The VM object must then be configured correctly using appropriate cmdlets such as Set-AzureVMOperatingSystem, Set-AzureVMSourceImage, Set-AzureVMNetworkInterface etc. before the VM can be created in Azure succesfully.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">PSVirtualMachine</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="3"> + <maml:name>Name</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + </command:parameter> + </command:syntaxItem> + </command:syntax> + <command:parameters> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="0"> + <maml:name>ResourceGroupName</maml:name> + <maml:description> + <maml:para>Name of the Resource Group</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="1"> + <maml:name>Location</maml:name> + <maml:description> + <maml:para>Location of the VM</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="2"> + <maml:name>VM</maml:name> + <maml:description> + <maml:para>VM object that is configured and represents the state of the VM to be created. The VM object can be created using the New-AzureVMConfig cmdlet. The VM object must then be configured correctly using appropriate cmdlets such as Set-AzureVMOperatingSystem, Set-AzureVMSourceImage, Set-AzureVMNetworkInterface etc. before the VM can be created in Azure succesfully.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">PSVirtualMachine</command:parameterValue> + <dev:type> + <maml:name>PSVirtualMachine</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="3"> + <maml:name>Name</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + <dev:type> + <maml:name>AzureProfile</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + </command:parameters> + <command:inputTypes> + <command:inputType> + <dev:type> + <maml:name></maml:name> + <maml:uri></maml:uri> + <maml:description/> + </dev:type> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:inputType> + </command:inputTypes> + <command:returnValues> + <command:returnValue> + <dev:type> + <maml:name></maml:name> + <maml:uri></maml:uri> + <maml:description/> + </dev:type> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:returnValue> + </command:returnValues> + <command:terminatingErrors></command:terminatingErrors> + <command:nonTerminatingErrors></command:nonTerminatingErrors> + <maml:alertSet> + <maml:title></maml:title> + <maml:alert> + <maml:para /> + </maml:alert> + </maml:alertSet> + <command:examples> + <command:example> + <maml:title>-------------------------- Create a VM with two Data Disks --------------------------</maml:title> + <maml:introduction> + <maml:paragraph>PS C:\&gt;</maml:paragraph> + </maml:introduction> + <dev:code>PS C:\&gt; # Common + $rgname = &quot;myrg&quot; + $loc = &apos;West US&apos;; + $vmsize = &apos;Standard_A2&apos;; + $vmname = &apos;vm&apos; + $rgname; + + # Create Resource Group + New-AzureResourceGroup -Name $rgname -Location $loc; + + # Create VM Object + $vm = New-AzureVMConfig -VMName $vmname -VMSize $vmsize; + + # Setup Networking + $subnet = New-AzureVirtualNetworkSubnetConfig -Name (&apos;subnet&apos; + $rgname) -AddressPrefix &quot;10.0.0.0/24&quot; -DnsServer &quot;10.1.1.1&quot;; + $vnet = New-AzureVirtualNetwork -Force -Name (&apos;vnet&apos; + $rgname) -ResourceGroupName $rgname -Location $loc -AddressPrefix &quot;10.0.0.0/16&quot; -DnsServer &quot;10.1.1.1&quot; -Subnet $subnet; + $vnet = Get-AzureVirtualNetwork -Name (&apos;vnet&apos; + $rgname) -ResourceGroupName $rgname; + $subnetId = $vnet.Properties.Subnets[0].Id; + $pubip = New-AzurePublicIpAddress -Force -Name (&apos;pubip&apos; + $rgname) -ResourceGroupName $rgname -Location $loc -AllocationMethod Dynamic -DomainNameLabel (&apos;pubip&apos; + $rgname); + $pubip = Get-AzurePublicIpAddress -Name (&apos;pubip&apos; + $rgname) -ResourceGroupName $rgname; + $pubipId = $pubip.Id; + $nic = New-AzureNetworkInterface -Force -Name (&apos;nic&apos; + $rgname) -ResourceGroupName $rgname -Location $loc -AllocationMethod Dynamic -SubnetId $subnetId -PublicIpAddressId $pubip.Id; + $nic = Get-AzureNetworkInterface -Name (&apos;nic&apos; + $rgname) -ResourceGroupName $rgname; + $nicId = $nic.Id; + + # Add NIC to VM + $vm = Add-AzureVMNetworkInterface -VM $vm -Id $nicId; + + # Setup Storage + $stoname = &apos;sto&apos; + $rgname; + $stotype = &apos;Standard_GRS&apos;; + + New-AzureStorageAccount -ResourceGroupName $rgname -Name $stoname -Location $loc -Type $stotype; + $stoaccount = Get-AzureStorageAccount -ResourceGroupName $rgname -Name $stoname; + + $osDiskName = &apos;osDisk&apos;; + $osDiskCaching = &apos;ReadWrite&apos;; + $osDiskVhdUri = &quot;https://$stoname.blob.core.windows.net/test/os.vhd&quot;; + $dataDiskVhdUri1 = &quot;https://$stoname.blob.core.windows.net/test/data1.vhd&quot;; + $dataDiskVhdUri2 = &quot;https://$stoname.blob.core.windows.net/test/data2.vhd&quot;; + + # Add Data Disks + $vm = Add-AzureVMDataDisk -VM $vm -Name &apos;testDataDisk1&apos; -Caching &apos;ReadOnly&apos; -DiskSizeInGB 10 -Lun 0 -VhdUri $dataDiskVhdUri1; + $vm = Add-AzureVMDataDisk -VM $vm -Name &apos;testDataDisk2&apos; -Caching &apos;ReadOnly&apos; -DiskSizeInGB 11 -Lun 1 -VhdUri $dataDiskVhdUri2; + + # Setup OS &amp; Image + $user = &quot;Foo12&quot;; + $password = &apos;BaR@123&apos; + $rgname; + $securePassword = ConvertTo-SecureString $password -AsPlainText -Force; + $cred = New-Object System.Management.Automation.PSCredential ($user, $securePassword); + + $computerName = &apos;test&apos;; + $vhdContainer = &quot;https://$stoname.blob.core.windows.net/test&quot;; + $img = &apos;a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-Datacenter-201410.01-en.us-127GB.vhd&apos;; + + $vm = Set-AzureVMOperatingSystem -VM $vm -Windows -ComputerName $computerName -Credential $cred; + $vm = Set-AzureVMSourceImage -VM $vm -Name $img -DestinationVhdsContainer $vhdContainer; + + # Create Virtual Machine + New-AzureVM -ResourceGroupName $rgname -Location $loc -Name $vmname -VM $vm;</dev:code> + <dev:remarks> + <maml:para /> + <maml:para /> + <maml:para /> + <maml:para></maml:para> + </dev:remarks> + <command:commandLines> + <command:commandLine> + <command:commandText> + <maml:para /> + </command:commandText> + </command:commandLine> + </command:commandLines> + </command:example> + </command:examples> + <maml:relatedLinks> + </maml:relatedLinks> +</command:command> +<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> +<!--Generated by PS Cmdlet Help Editor--> + <command:details> + <command:name>New-AzureVMConfig</command:name> + <maml:description> + <maml:para>Create the configurable local VM Object</maml:para> + </maml:description> + <maml:copyright> + <maml:para /> + </maml:copyright> + <command:verb>New</command:verb> + <command:noun>AzureVMConfig</command:noun> + <dev:version /> + </command:details> + <maml:description> + <maml:para>This cmdlet allows you to create the configurable local VM Object. The VM object must then be configured correctly using appropriate cmdlets such as Set-AzureVMOperatingSystem, Set-AzureVMSourceImage, Set-AzureVMNetworkInterface etc. before the VM can be created in Azure succesfully.</maml:para> + </maml:description> + <command:syntax> + <command:syntaxItem> + <maml:name>New-AzureVMConfig</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="0"> + <maml:name>VMName</maml:name> + <maml:description> + <maml:para>Name of the VM</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="1"> + <maml:name>VMSize</maml:name> + <maml:description> + <maml:para>Size of the VM</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="2"> + <maml:name>AvailabilitySetId</maml:name> + <maml:description> + <maml:para>Id of the Availability Set. This can be gotten through Get-AzureAvailabilitySet cmdlet.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + </command:parameter> + </command:syntaxItem> + </command:syntax> + <command:parameters> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="0"> + <maml:name>VMName</maml:name> + <maml:description> + <maml:para>Name of the VM</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="1"> + <maml:name>VMSize</maml:name> + <maml:description> + <maml:para>Size of the VM</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="2"> + <maml:name>AvailabilitySetId</maml:name> + <maml:description> + <maml:para>Id of the Availability Set. This can be gotten through Get-AzureAvailabilitySet cmdlet.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + <dev:type> + <maml:name>AzureProfile</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + </command:parameters> + <command:inputTypes> + <command:inputType> + <dev:type> + <maml:name></maml:name> + <maml:uri></maml:uri> + <maml:description/> + </dev:type> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:inputType> + </command:inputTypes> + <command:returnValues> + <command:returnValue> + <dev:type> + <maml:name></maml:name> + <maml:uri></maml:uri> + <maml:description/> + </dev:type> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:returnValue> + </command:returnValues> + <command:terminatingErrors></command:terminatingErrors> + <command:nonTerminatingErrors></command:nonTerminatingErrors> + <maml:alertSet> + <maml:title></maml:title> + <maml:alert> + <maml:para /> + </maml:alert> + </maml:alertSet> + <command:examples> + <command:example> + <maml:title>-------------------------- Create a new VM Object --------------------------</maml:title> + <maml:introduction> + <maml:paragraph>PS C:\&gt;</maml:paragraph> + </maml:introduction> + <dev:code>PS C:\&gt; # Get the Availability Set + $as = Get-AzureAvailabilitySet –ResourceGroupName “RG1” –Name “MyASet” + + # Create the VM object + $vm = New-AzureVMConfig –VMName “myVM” –VMSize “Standard_A1&quot; -AvailabilitySetID $as.Id</dev:code> + <dev:remarks> + <maml:para /> + <maml:para /> + <maml:para /> + <maml:para></maml:para> + </dev:remarks> + <command:commandLines> + <command:commandLine> + <command:commandText> + <maml:para /> + </command:commandText> + </command:commandLine> + </command:commandLines> + </command:example> + </command:examples> + <maml:relatedLinks> + </maml:relatedLinks> +</command:command> +<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> +<!--Generated by PS Cmdlet Help Editor--> + <command:details> + <command:name>Remove-AzureAvailabilitySet</command:name> + <maml:description> + <maml:para>Remove an Availability Set from Azure</maml:para> + </maml:description> + <maml:copyright> + <maml:para /> + </maml:copyright> + <command:verb>Remove</command:verb> + <command:noun>AzureAvailabilitySet</command:noun> + <dev:version /> + </command:details> + <maml:description> + <maml:para>Remove an Availability Set from Azure</maml:para> + </maml:description> + <command:syntax> + <command:syntaxItem> + <maml:name>Remove-AzureAvailabilitySet</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="0"> + <maml:name>ResourceGroupName</maml:name> + <maml:description> + <maml:para>Name of the Resource Group</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="1"> + <maml:name>Name</maml:name> + <maml:description> + <maml:para>Name of the Availability Set</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + </command:parameter> + </command:syntaxItem> + </command:syntax> + <command:parameters> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="0"> + <maml:name>ResourceGroupName</maml:name> + <maml:description> + <maml:para>Name of the Resource Group</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="1"> + <maml:name>Name</maml:name> + <maml:description> + <maml:para>Name of the Availability Set</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + <dev:type> + <maml:name>AzureProfile</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + </command:parameters> + <command:inputTypes> + <command:inputType> + <dev:type> + <maml:name></maml:name> + <maml:uri></maml:uri> + <maml:description/> + </dev:type> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:inputType> + </command:inputTypes> + <command:returnValues> + <command:returnValue> + <dev:type> + <maml:name></maml:name> + <maml:uri></maml:uri> + <maml:description/> + </dev:type> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:returnValue> + </command:returnValues> + <command:terminatingErrors></command:terminatingErrors> + <command:nonTerminatingErrors></command:nonTerminatingErrors> + <maml:alertSet> + <maml:title></maml:title> + <maml:alert> + <maml:para /> + </maml:alert> + </maml:alertSet> + <command:examples> + <command:example> + <maml:title>-------------------------- Remove Availability Set --------------------------</maml:title> + <maml:introduction> + <maml:paragraph>PS C:\&gt;</maml:paragraph> + </maml:introduction> + <dev:code>PS C:\&gt; Remove-AzureAvailabilitySet –Name “MyASet” –ResouceGroupName “RG1”</dev:code> + <dev:remarks> + <maml:para /> + <maml:para /> + <maml:para /> + <maml:para></maml:para> + </dev:remarks> + <command:commandLines> + <command:commandLine> + <command:commandText> + <maml:para /> + </command:commandText> + </command:commandLine> + </command:commandLines> + </command:example> + </command:examples> + <maml:relatedLinks> + </maml:relatedLinks> +</command:command> +<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> +<!--Generated by PS Cmdlet Help Editor--> + <command:details> + <command:name>Remove-AzureStorageAccount</command:name> + <maml:description> + <maml:para>Remove Storage Account from Azure</maml:para> + </maml:description> + <maml:copyright> + <maml:para /> + </maml:copyright> + <command:verb>Remove</command:verb> + <command:noun>AzureStorageAccount</command:noun> + <dev:version /> + </command:details> + <maml:description> + <maml:para>Remove Storage Account from Azure</maml:para> + </maml:description> + <command:syntax> + <command:syntaxItem> + <maml:name>Remove-AzureStorageAccount</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="0"> + <maml:name>ResourceGroupName</maml:name> + <maml:description> + <maml:para>Name of the Resource Group</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="1"> + <maml:name>Name</maml:name> + <maml:description> + <maml:para>Name of the VM</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + </command:parameter> + </command:syntaxItem> + </command:syntax> + <command:parameters> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="0"> + <maml:name>ResourceGroupName</maml:name> + <maml:description> + <maml:para>Name of the Resource Group</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="1"> + <maml:name>Name</maml:name> + <maml:description> + <maml:para>Name of the VM</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + <dev:type> + <maml:name>AzureProfile</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + </command:parameters> + <command:inputTypes> + <command:inputType> + <dev:type> + <maml:name></maml:name> + <maml:uri></maml:uri> + <maml:description/> + </dev:type> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:inputType> + </command:inputTypes> + <command:returnValues> + <command:returnValue> + <dev:type> + <maml:name></maml:name> + <maml:uri></maml:uri> + <maml:description/> + </dev:type> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:returnValue> + </command:returnValues> + <command:terminatingErrors></command:terminatingErrors> + <command:nonTerminatingErrors></command:nonTerminatingErrors> + <maml:alertSet> + <maml:title></maml:title> + <maml:alert> + <maml:para /> + </maml:alert> + </maml:alertSet> + <command:examples> + <command:example> + <maml:title>-------------------------- Remove Storage Account --------------------------</maml:title> + <maml:introduction> + <maml:paragraph>PS C:\&gt;</maml:paragraph> + </maml:introduction> + <dev:code>PS C:\&gt; Remove-AzureStorageAccount -ResourceGroupName &quot;RG1&quot; -AccountName &quot;myStorageAccount&quot;</dev:code> + <dev:remarks> + <maml:para /> + <maml:para /> + <maml:para /> + <maml:para></maml:para> + </dev:remarks> + <command:commandLines> + <command:commandLine> + <command:commandText> + <maml:para /> + </command:commandText> + </command:commandLine> + </command:commandLines> + </command:example> + </command:examples> + <maml:relatedLinks> + </maml:relatedLinks> +</command:command> +<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> +<!--Generated by PS Cmdlet Help Editor--> + <command:details> + <command:name>Remove-AzureVM</command:name> + <maml:description> + <maml:para>Remove VM from Azure</maml:para> + </maml:description> + <maml:copyright> + <maml:para /> + </maml:copyright> + <command:verb>Remove</command:verb> + <command:noun>AzureVM</command:noun> + <dev:version /> + </command:details> + <maml:description> + <maml:para>Remove VM from Azure</maml:para> + </maml:description> + <command:syntax> + <command:syntaxItem> + <maml:name>Remove-AzureVM</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="0"> + <maml:name>ResourceGroupName</maml:name> + <maml:description> + <maml:para>Name of the Resource Group</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="1"> + <maml:name>Name</maml:name> + <maml:description> + <maml:para>Name of the VM</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="2"> + <maml:name>Force</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + </command:parameter> + </command:syntaxItem> + </command:syntax> + <command:parameters> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="0"> + <maml:name>ResourceGroupName</maml:name> + <maml:description> + <maml:para>Name of the Resource Group</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="1"> + <maml:name>Name</maml:name> + <maml:description> + <maml:para>Name of the VM</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="2"> + <maml:name>Force</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> + <dev:type> + <maml:name>SwitchParameter</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + <dev:type> + <maml:name>AzureProfile</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + </command:parameters> + <command:inputTypes> + <command:inputType> + <dev:type> + <maml:name></maml:name> + <maml:uri></maml:uri> + <maml:description/> + </dev:type> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:inputType> + </command:inputTypes> + <command:returnValues> + <command:returnValue> + <dev:type> + <maml:name></maml:name> + <maml:uri></maml:uri> + <maml:description/> + </dev:type> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:returnValue> + </command:returnValues> + <command:terminatingErrors></command:terminatingErrors> + <command:nonTerminatingErrors></command:nonTerminatingErrors> + <maml:alertSet> + <maml:title></maml:title> + <maml:alert> + <maml:para /> + </maml:alert> + </maml:alertSet> + <command:examples> + <command:example> + <maml:title>-------------------------- Remove a VM --------------------------</maml:title> + <maml:introduction> + <maml:paragraph>PS C:\&gt;</maml:paragraph> + </maml:introduction> + <dev:code>PS C:\&gt; Remove-AzureVM -ResourceGroupName &quot;myRG&quot; -Name &quot;crpVM&quot;</dev:code> + <dev:remarks> + <maml:para /> + <maml:para /> + <maml:para /> + <maml:para></maml:para> + </dev:remarks> + <command:commandLines> + <command:commandLine> + <command:commandText> + <maml:para /> + </command:commandText> + </command:commandLine> + </command:commandLines> + </command:example> + </command:examples> + <maml:relatedLinks> + </maml:relatedLinks> +</command:command> +<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> +<!--Generated by PS Cmdlet Help Editor--> + <command:details> + <command:name>Remove-AzureVMAccessExtension</command:name> + <maml:description> + <maml:para>Remove the VMAccess extension from the VM</maml:para> + </maml:description> + <maml:copyright> + <maml:para /> + </maml:copyright> + <command:verb>Remove</command:verb> + <command:noun>AzureVMAccessExtension</command:noun> + <dev:version /> + </command:details> + <maml:description> + <maml:para>Remove the VMAccess extension from the VM</maml:para> + </maml:description> + <command:syntax> + <command:syntaxItem> + <maml:name>Remove-AzureVMAccessExtension</maml:name> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Force</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="0"> + <maml:name>ResourceGroupName</maml:name> + <maml:description> + <maml:para>Resource Group of the VM</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="1"> + <maml:name>VMName</maml:name> + <maml:description> + <maml:para>Name of the VM</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="2"> + <maml:name>Name</maml:name> + <maml:description> + <maml:para>Name of extension</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + </command:parameter> + </command:syntaxItem> + </command:syntax> + <command:parameters> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Force</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> + <dev:type> + <maml:name>SwitchParameter</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="0"> + <maml:name>ResourceGroupName</maml:name> + <maml:description> + <maml:para>Resource Group of the VM</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="1"> + <maml:name>VMName</maml:name> + <maml:description> + <maml:para>Name of the VM</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="2"> + <maml:name>Name</maml:name> + <maml:description> + <maml:para>Name of extension</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + <dev:type> + <maml:name>AzureProfile</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + </command:parameters> + <command:inputTypes> + <command:inputType> + <dev:type> + <maml:name></maml:name> + <maml:uri></maml:uri> + <maml:description/> + </dev:type> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:inputType> + </command:inputTypes> + <command:returnValues> + <command:returnValue> + <dev:type> + <maml:name></maml:name> + <maml:uri></maml:uri> + <maml:description/> + </dev:type> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:returnValue> + </command:returnValues> + <command:terminatingErrors></command:terminatingErrors> + <command:nonTerminatingErrors></command:nonTerminatingErrors> + <maml:alertSet> + <maml:title></maml:title> + <maml:alert> + <maml:para /> + </maml:alert> + </maml:alertSet> + <command:examples> + </command:examples> + <maml:relatedLinks> + </maml:relatedLinks> +</command:command> +<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> +<!--Generated by PS Cmdlet Help Editor--> + <command:details> + <command:name>Remove-AzureVMCustomScriptExtension</command:name> + <maml:description> + <maml:para>Remove the Custom Script extension from the VM</maml:para> + </maml:description> + <maml:copyright> + <maml:para /> + </maml:copyright> + <command:verb>Remove</command:verb> + <command:noun>AzureVMCustomScriptExtension</command:noun> + <dev:version /> + </command:details> + <maml:description> + <maml:para>Remove the Custom Script extension from the VM</maml:para> + </maml:description> + <command:syntax> + <command:syntaxItem> + <maml:name>Remove-AzureVMCustomScriptExtension</maml:name> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Force</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="0"> + <maml:name>ResourceGroupName</maml:name> + <maml:description> + <maml:para>Resource Group of the VM</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="1"> + <maml:name>VMName</maml:name> + <maml:description> + <maml:para>Name of the VM</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="2"> + <maml:name>Name</maml:name> + <maml:description> + <maml:para>Name of the extension to remove</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + </command:parameter> + </command:syntaxItem> + </command:syntax> + <command:parameters> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Force</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> + <dev:type> + <maml:name>SwitchParameter</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="0"> + <maml:name>ResourceGroupName</maml:name> + <maml:description> + <maml:para>Resource Group of the VM</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="1"> + <maml:name>VMName</maml:name> + <maml:description> + <maml:para>Name of the VM</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="2"> + <maml:name>Name</maml:name> + <maml:description> + <maml:para>Name of the extension to remove</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + <dev:type> + <maml:name>AzureProfile</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + </command:parameters> + <command:inputTypes> + <command:inputType> + <dev:type> + <maml:name></maml:name> + <maml:uri></maml:uri> + <maml:description/> + </dev:type> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:inputType> + </command:inputTypes> + <command:returnValues> + <command:returnValue> + <dev:type> + <maml:name></maml:name> + <maml:uri></maml:uri> + <maml:description/> + </dev:type> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:returnValue> + </command:returnValues> + <command:terminatingErrors></command:terminatingErrors> + <command:nonTerminatingErrors></command:nonTerminatingErrors> + <maml:alertSet> + <maml:title></maml:title> + <maml:alert> + <maml:para /> + </maml:alert> + </maml:alertSet> + <command:examples> + </command:examples> + <maml:relatedLinks> + </maml:relatedLinks> +</command:command> +<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> +<!--Generated by PS Cmdlet Help Editor--> + <command:details> + <command:name>Remove-AzureVMDataDisk</command:name> + <maml:description> + <maml:para>Remove a Data Disk from the VM</maml:para> + </maml:description> + <maml:copyright> + <maml:para /> + </maml:copyright> + <command:verb>Remove</command:verb> + <command:noun>AzureVMDataDisk</command:noun> + <dev:version /> + </command:details> + <maml:description> + <maml:para>This cmdlet allows you to remove a Data Disk from the VM</maml:para> + </maml:description> + <command:syntax> + <command:syntaxItem> + <maml:name>Remove-AzureVMDataDisk</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0"> + <maml:name>VM</maml:name> + <maml:description> + <maml:para>Local VM object to remove the Data Disk from. This object can be gotten from the Get-AzureVM cmdlet.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">PSVirtualMachine</command:parameterValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="1"> + <maml:name>Name</maml:name> + <maml:description> + <maml:para>Name of the Data Disk to be removed</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + </command:parameter> + </command:syntaxItem> + </command:syntax> + <command:parameters> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0"> + <maml:name>VM</maml:name> + <maml:description> + <maml:para>Local VM object to remove the Data Disk from. This object can be gotten from the Get-AzureVM cmdlet.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">PSVirtualMachine</command:parameterValue> + <dev:type> + <maml:name>PSVirtualMachine</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="1"> + <maml:name>Name</maml:name> + <maml:description> + <maml:para>Name of the Data Disk to be removed</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + <dev:type> + <maml:name>AzureProfile</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + </command:parameters> + <command:inputTypes> + <command:inputType> + <dev:type> + <maml:name></maml:name> + <maml:uri></maml:uri> + <maml:description/> + </dev:type> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:inputType> + </command:inputTypes> + <command:returnValues> + <command:returnValue> + <dev:type> + <maml:name></maml:name> + <maml:uri></maml:uri> + <maml:description/> + </dev:type> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:returnValue> + </command:returnValues> + <command:terminatingErrors></command:terminatingErrors> + <command:nonTerminatingErrors></command:nonTerminatingErrors> + <maml:alertSet> + <maml:title></maml:title> + <maml:alert> + <maml:para /> + </maml:alert> + </maml:alertSet> + <command:examples> + <command:example> + <maml:title>-------------------------- Remove a Data Disk --------------------------</maml:title> + <maml:introduction> + <maml:paragraph>PS C:\&gt;</maml:paragraph> + </maml:introduction> + <dev:code>PS C:\&gt; # Get the VM + $vm = Get-AzureVM -ResourceGroupName &quot;myRG&quot; -Name &quot;crpVM&quot; + + # Remove &quot;disk3&quot; Data Disk from the local object + Remove-AzureVMDataDisk -VM $vm -Name &apos;disk3&apos; + + # Update the state of the Azure VM + Update-AzureVM -ResourceGroupName &quot;myRG&quot; -Name &quot;crpVM&quot; –VM $vm</dev:code> + <dev:remarks> + <maml:para /> + <maml:para /> + <maml:para /> + <maml:para></maml:para> + </dev:remarks> + <command:commandLines> + <command:commandLine> + <command:commandText> + <maml:para /> + </command:commandText> + </command:commandLine> + </command:commandLines> + </command:example> + </command:examples> + <maml:relatedLinks> + </maml:relatedLinks> +</command:command> +<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> +<!--Generated by PS Cmdlet Help Editor--> + <command:details> + <command:name>Remove-AzureVMExtension</command:name> + <maml:description> + <maml:para>Remove an Extension from a VM</maml:para> + </maml:description> + <maml:copyright> + <maml:para /> + </maml:copyright> + <command:verb>Remove</command:verb> + <command:noun>AzureVMExtension</command:noun> + <dev:version /> + </command:details> + <maml:description> + <maml:para>Remove an extension from a VM</maml:para> + </maml:description> + <command:syntax> + <command:syntaxItem> + <maml:name>Remove-AzureVMExtension</maml:name> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Force</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="0"> + <maml:name>ResourceGroupName</maml:name> + <maml:description> + <maml:para>Name of Resource Group</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="1"> + <maml:name>VMName</maml:name> + <maml:description> + <maml:para>Name of the VM</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="2"> + <maml:name>Name</maml:name> + <maml:description> + <maml:para>Name of the Extension</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + </command:parameter> + </command:syntaxItem> + </command:syntax> + <command:parameters> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Force</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> + <dev:type> + <maml:name>SwitchParameter</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="0"> + <maml:name>ResourceGroupName</maml:name> + <maml:description> + <maml:para>Name of Resource Group</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="1"> + <maml:name>VMName</maml:name> + <maml:description> + <maml:para>Name of the VM</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="2"> + <maml:name>Name</maml:name> + <maml:description> + <maml:para>Name of the Extension</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + <dev:type> + <maml:name>AzureProfile</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + </command:parameters> + <command:inputTypes> + <command:inputType> + <dev:type> + <maml:name></maml:name> + <maml:uri></maml:uri> + <maml:description/> + </dev:type> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:inputType> + </command:inputTypes> + <command:returnValues> + <command:returnValue> + <dev:type> + <maml:name></maml:name> + <maml:uri></maml:uri> + <maml:description/> + </dev:type> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:returnValue> + </command:returnValues> + <command:terminatingErrors></command:terminatingErrors> + <command:nonTerminatingErrors></command:nonTerminatingErrors> + <maml:alertSet> + <maml:title></maml:title> + <maml:alert> + <maml:para /> + </maml:alert> + </maml:alertSet> + <command:examples> + <command:example> + <maml:title>-------------------------- Remove an Extension --------------------------</maml:title> + <maml:introduction> + <maml:paragraph>PS C:\&gt;</maml:paragraph> + </maml:introduction> + <dev:code>PS C:\&gt; Remove-AzureVMExtension –ResouceGroupName &quot;RG&quot; –Name &quot;myext&quot; -VMName &quot;vm1&quot;</dev:code> + <dev:remarks> + <maml:para /> + <maml:para /> + <maml:para /> + <maml:para></maml:para> + </dev:remarks> + <command:commandLines> + <command:commandLine> + <command:commandText> + <maml:para /> + </command:commandText> + </command:commandLine> + </command:commandLines> + </command:example> + </command:examples> + <maml:relatedLinks> + </maml:relatedLinks> +</command:command> +<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> +<!--Generated by PS Cmdlet Help Editor--> + <command:details> + <command:name>Remove-AzureVMNetworkInterface</command:name> + <maml:description> + <maml:para>Remove the network interface from the VM</maml:para> + </maml:description> + <maml:copyright> + <maml:para /> + </maml:copyright> + <command:verb>Remove</command:verb> + <command:noun>AzureVMNetworkInterface</command:noun> + <dev:version /> + </command:details> + <maml:description> + <maml:para>Remove the network interface from the VM</maml:para> + </maml:description> + <command:syntax> + <command:syntaxItem> + <maml:name>Remove-AzureVMNetworkInterface</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0"> + <maml:name>VM</maml:name> + <maml:description> + <maml:para>The VM object</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">PSVirtualMachine</command:parameterValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="1"> + <maml:name>Id</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + </command:parameter> + </command:syntaxItem> + </command:syntax> + <command:parameters> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0"> + <maml:name>VM</maml:name> + <maml:description> + <maml:para>The VM object</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">PSVirtualMachine</command:parameterValue> + <dev:type> + <maml:name>PSVirtualMachine</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="1"> + <maml:name>Id</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + <dev:type> + <maml:name>AzureProfile</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + </command:parameters> + <command:inputTypes> + <command:inputType> + <dev:type> + <maml:name></maml:name> + <maml:uri></maml:uri> + <maml:description/> + </dev:type> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:inputType> + </command:inputTypes> + <command:returnValues> + <command:returnValue> + <dev:type> + <maml:name></maml:name> + <maml:uri></maml:uri> + <maml:description/> + </dev:type> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:returnValue> + </command:returnValues> + <command:terminatingErrors></command:terminatingErrors> + <command:nonTerminatingErrors></command:nonTerminatingErrors> + <maml:alertSet> + <maml:title></maml:title> + <maml:alert> + <maml:para /> + </maml:alert> + </maml:alertSet> + <command:examples> + </command:examples> + <maml:relatedLinks> + </maml:relatedLinks> +</command:command> +<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> +<!--Generated by PS Cmdlet Help Editor--> + <command:details> + <command:name>Restart-AzureVM</command:name> + <maml:description> + <maml:para>Restart a VM</maml:para> + </maml:description> + <maml:copyright> + <maml:para /> + </maml:copyright> + <command:verb>Restart</command:verb> + <command:noun>AzureVM</command:noun> + <dev:version /> + </command:details> + <maml:description> + <maml:para>Restart a VM</maml:para> + </maml:description> + <command:syntax> + <command:syntaxItem> + <maml:name>Restart-AzureVM</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="0"> + <maml:name>ResourceGroupName</maml:name> + <maml:description> + <maml:para>Name of Resource Group</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="1"> + <maml:name>Name</maml:name> + <maml:description> + <maml:para>Name of the VM</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + </command:parameter> + </command:syntaxItem> + </command:syntax> + <command:parameters> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="0"> + <maml:name>ResourceGroupName</maml:name> + <maml:description> + <maml:para>Name of Resource Group</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="1"> + <maml:name>Name</maml:name> + <maml:description> + <maml:para>Name of the VM</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + <dev:type> + <maml:name>AzureProfile</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + </command:parameters> + <command:inputTypes> + <command:inputType> + <dev:type> + <maml:name></maml:name> + <maml:uri></maml:uri> + <maml:description/> + </dev:type> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:inputType> + </command:inputTypes> + <command:returnValues> + <command:returnValue> + <dev:type> + <maml:name></maml:name> + <maml:uri></maml:uri> + <maml:description/> + </dev:type> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:returnValue> + </command:returnValues> + <command:terminatingErrors></command:terminatingErrors> + <command:nonTerminatingErrors></command:nonTerminatingErrors> + <maml:alertSet> + <maml:title></maml:title> + <maml:alert> + <maml:para /> + </maml:alert> + </maml:alertSet> + <command:examples> + <command:example> + <maml:title>-------------------------- Example 1 --------------------------</maml:title> + <maml:introduction> + <maml:paragraph>PS C:\&gt;</maml:paragraph> + </maml:introduction> + <dev:code>PS C:\&gt; Restart-AzureVM -ResourceGroupName &quot;myRG&quot; -Name &quot;crpVM&quot;</dev:code> + <dev:remarks> + <maml:para /> + <maml:para /> + <maml:para /> + <maml:para></maml:para> + </dev:remarks> + <command:commandLines> + <command:commandLine> + <command:commandText> + <maml:para /> + </command:commandText> + </command:commandLine> + </command:commandLines> + </command:example> + </command:examples> + <maml:relatedLinks> + </maml:relatedLinks> +</command:command> +<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> +<!--Generated by PS Cmdlet Help Editor--> + <command:details> + <command:name>Save-AzureVMImage</command:name> + <maml:description> + <maml:para>Allows you to capture your VM as a VMImage</maml:para> + </maml:description> + <maml:copyright> + <maml:para /> + </maml:copyright> + <command:verb>Save</command:verb> + <command:noun>AzureVMImage</command:noun> + <dev:version /> + </command:details> + <maml:description> + <maml:para>Allows you to capture your VM as a VMImage. Required step before this is to sysprep the VM and mark it generalized using the Set-AzureVM -Generalize cmdlet.</maml:para> + <maml:para>The output is a JSON template that can be used to deploy from your captured image.</maml:para> + </maml:description> + <command:syntax> + <command:syntaxItem> + <maml:name>Save-AzureVMImage</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="0"> + <maml:name>ResourceGroupName</maml:name> + <maml:description> + <maml:para>Resource Group of the VM</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="1"> + <maml:name>VMName</maml:name> + <maml:description> + <maml:para>Name of the VM</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="2"> + <maml:name>DestinationContainerName</maml:name> + <maml:description> + <maml:para>This is the name of the container inside which the vhds constituting the VMImage will reside. If they are spread across multiple storage accounts, one container with this name will be created in each storage account.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="3"> + <maml:name>VHDNamePrefix</maml:name> + <maml:description> + <maml:para>This is the prefix in the name of the blobs that will constitute the storage profile of the VMImage. For e.g. the OSDisk can be named vhdPrefix-osdisk</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="4"> + <maml:name>Overwrite</maml:name> + <maml:description> + <maml:para>Indicates if any vhds with same Prefix inside the destination Container are encountered, should they be overwritten or not. </maml:para> + </maml:description> + <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + </command:parameter> + </command:syntaxItem> + </command:syntax> + <command:parameters> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="0"> + <maml:name>ResourceGroupName</maml:name> + <maml:description> + <maml:para>Resource Group of the VM</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="1"> + <maml:name>VMName</maml:name> + <maml:description> + <maml:para>Name of the VM</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="2"> + <maml:name>DestinationContainerName</maml:name> + <maml:description> + <maml:para>This is the name of the container inside which the vhds constituting the VMImage will reside. If they are spread across multiple storage accounts, one container with this name will be created in each storage account.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="3"> + <maml:name>VHDNamePrefix</maml:name> + <maml:description> + <maml:para>This is the prefix in the name of the blobs that will constitute the storage profile of the VMImage. For e.g. the OSDisk can be named vhdPrefix-osdisk</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="4"> + <maml:name>Overwrite</maml:name> + <maml:description> + <maml:para>Indicates if any vhds with same Prefix inside the destination Container are encountered, should they be overwritten or not. </maml:para> + </maml:description> + <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> + <dev:type> + <maml:name>SwitchParameter</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + <dev:type> + <maml:name>AzureProfile</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + </command:parameters> + <command:inputTypes> + <command:inputType> + <dev:type> + <maml:name></maml:name> + <maml:uri></maml:uri> + <maml:description/> + </dev:type> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:inputType> + </command:inputTypes> + <command:returnValues> + <command:returnValue> + <dev:type> + <maml:name></maml:name> + <maml:uri></maml:uri> + <maml:description/> + </dev:type> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:returnValue> + </command:returnValues> + <command:terminatingErrors></command:terminatingErrors> + <command:nonTerminatingErrors></command:nonTerminatingErrors> + <maml:alertSet> + <maml:title></maml:title> + <maml:alert> + <maml:para /> + </maml:alert> + </maml:alertSet> + <command:examples> + <command:example> + <maml:title>-------------------------- Example 1 --------------------------</maml:title> + <maml:introduction> + <maml:paragraph>PS C:\&gt;</maml:paragraph> + </maml:introduction> + <dev:code>Save-AzureVMImage -ResourceGroupName &quot;RG1&quot; -VMName &quot;VM1&quot; -DestinationContainerName &quot;VM1&quot; -VHDNamePrefix &quot;VM1&quot;</dev:code> + <dev:remarks> + <maml:para>Captures the VMImage. The Output property returns a JSON template that can be used to deploy from the captured VMImage.</maml:para> + <maml:para /> + <maml:para /> + <maml:para></maml:para> + </dev:remarks> + <command:commandLines> + <command:commandLine> + <command:commandText> + <maml:para /> + </command:commandText> + </command:commandLine> + </command:commandLines> + </command:example> + </command:examples> + <maml:relatedLinks> + </maml:relatedLinks> +</command:command> +<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> +<!--Generated by PS Cmdlet Help Editor--> + <command:details> + <command:name>Set-AzureStorageAccount</command:name> + <maml:description> + <maml:para>Update the Storage Account properties</maml:para> + </maml:description> + <maml:copyright> + <maml:para /> + </maml:copyright> + <command:verb>Set</command:verb> + <command:noun>AzureStorageAccount</command:noun> + <dev:version /> + </command:details> + <maml:description> + <maml:para>This cmdlet allows you to update the Storage Account properties.</maml:para> + </maml:description> + <command:syntax> + <command:syntaxItem> + <maml:name>Set-AzureStorageAccount</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="0"> + <maml:name>ResourceGroupName</maml:name> + <maml:description> + <maml:para>Name of the Resource Group</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="1"> + <maml:name>Name</maml:name> + <maml:description> + <maml:para>Name of the Storage Account</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="2"> + <maml:name>Type</maml:name> + <maml:description> + <maml:para>Specifies the account type of the storage account. One of four options: + • Standard_LRS (Locally-redundant storage) + • Standard_GRS (Geo-redundant storage) + • Standard_RAGRS (Read access geo-redundant storage) + • Standard_ZRS + + Note that Standard_ZRS accounts cannot be changed to other account types, and other account types cannot be changed to Standard_ZRS.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + </command:parameter> + </command:syntaxItem> + <command:syntaxItem> + <maml:name>Set-AzureStorageAccount</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="0"> + <maml:name>ResourceGroupName</maml:name> + <maml:description> + <maml:para>Name of the Resource Group</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="1"> + <maml:name>Name</maml:name> + <maml:description> + <maml:para>Name of the Storage Account</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="2"> + <maml:name>CustomDomainName</maml:name> + <maml:description> + <maml:para>The name of the custom domain.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="3"> + <maml:name>UseSubDomain</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="true">Nullable`1[Boolean]</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + </command:parameter> + </command:syntaxItem> + <command:syntaxItem> + <maml:name>Set-AzureStorageAccount</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="0"> + <maml:name>ResourceGroupName</maml:name> + <maml:description> + <maml:para>Name of the Resource Group</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="1"> + <maml:name>Name</maml:name> + <maml:description> + <maml:para>Name of the Storage Account</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="2"> + <maml:name>Tags</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="true">Hashtable[]</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + </command:parameter> + </command:syntaxItem> + </command:syntax> + <command:parameters> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="0"> + <maml:name>ResourceGroupName</maml:name> + <maml:description> + <maml:para>Name of the Resource Group</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="1"> + <maml:name>Name</maml:name> + <maml:description> + <maml:para>Name of the Storage Account</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="2"> + <maml:name>Type</maml:name> + <maml:description> + <maml:para>Specifies the account type of the storage account. One of four options: + • Standard_LRS (Locally-redundant storage) + • Standard_GRS (Geo-redundant storage) + • Standard_RAGRS (Read access geo-redundant storage) + • Standard_ZRS + + Note that Standard_ZRS accounts cannot be changed to other account types, and other account types cannot be changed to Standard_ZRS.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + <dev:type> + <maml:name>AzureProfile</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="2"> + <maml:name>CustomDomainName</maml:name> + <maml:description> + <maml:para>The name of the custom domain.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="3"> + <maml:name>UseSubDomain</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="true">Nullable`1[Boolean]</command:parameterValue> + <dev:type> + <maml:name>Nullable`1[Boolean]</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="2"> + <maml:name>Tags</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="true">Hashtable[]</command:parameterValue> + <dev:type> + <maml:name>Hashtable[]</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="3"> + <maml:name>UseSubDomainName</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">nullable`1[boolean]</command:parameterValue> + <dev:type> + <maml:name>nullable`1[boolean]</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + </command:parameters> + <command:inputTypes> + <command:inputType> + <dev:type> + <maml:name></maml:name> + <maml:uri></maml:uri> + <maml:description/> + </dev:type> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:inputType> + </command:inputTypes> + <command:returnValues> + <command:returnValue> + <dev:type> + <maml:name></maml:name> + <maml:uri></maml:uri> + <maml:description/> + </dev:type> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:returnValue> + </command:returnValues> + <command:terminatingErrors></command:terminatingErrors> + <command:nonTerminatingErrors></command:nonTerminatingErrors> + <maml:alertSet> + <maml:title></maml:title> + <maml:alert> + <maml:para /> + </maml:alert> + </maml:alertSet> + <command:examples> + <command:example> + <maml:title>-------------------------- Set Storage Account type --------------------------</maml:title> + <maml:introduction> + <maml:paragraph>PS C:\&gt;</maml:paragraph> + </maml:introduction> + <dev:code>PS C:\&gt; # Set account type + Set-AzureStorageAccount -ResourceGroupName &quot;myResourceGroup&quot; -AccountName &quot;myStorageAccount&quot; -AccountType &quot;Standard_RAGRS&quot;</dev:code> + <dev:remarks> + <maml:para /> + <maml:para /> + <maml:para /> + <maml:para></maml:para> + </dev:remarks> + <command:commandLines> + <command:commandLine> + <command:commandText> + <maml:para /> + </command:commandText> + </command:commandLine> + </command:commandLines> + </command:example> + <command:example> + <maml:title>-------------------------- Set Custom Domain --------------------------</maml:title> + <maml:introduction> + <maml:paragraph>PS C:\&gt;</maml:paragraph> + </maml:introduction> + <dev:code>PS C:\&gt; #Set custom domain + Set-AzureStorageAccount -ResourceGroupName &quot;myResourceGroup&quot; -AccountName &quot;myStorageAccount&quot; -CustomDomainName &quot;domain name&quot; –UseSubDomain “true”</dev:code> + <dev:remarks> + <maml:para /> + <maml:para /> + <maml:para /> + <maml:para></maml:para> + </dev:remarks> + <command:commandLines> + <command:commandLine> + <command:commandText> + <maml:para /> + </command:commandText> + </command:commandLine> + </command:commandLines> + </command:example> + </command:examples> + <maml:relatedLinks> + </maml:relatedLinks> +</command:command> +<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> +<!--Generated by PS Cmdlet Help Editor--> + <command:details> + <command:name>Set-AzureVM</command:name> + <maml:description> + <maml:para>This cmdlet is used for marking the VM as generalized</maml:para> + </maml:description> + <maml:copyright> + <maml:para /> + </maml:copyright> + <command:verb>Set</command:verb> + <command:noun>AzureVM</command:noun> + <dev:version /> + </command:details> + <maml:description> + <maml:para>This cmdlet is used for marking the VM as generalized</maml:para> + </maml:description> + <command:syntax> + <command:syntaxItem> + <maml:name>Set-AzureVM</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="0"> + <maml:name>ResourceGroupName</maml:name> + <maml:description> + <maml:para>Resource Group of the VM</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="1"> + <maml:name>Name</maml:name> + <maml:description> + <maml:para>Name of the VM</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="2"> + <maml:name>Generalized</maml:name> + <maml:description> + <maml:para>Used to mark the VM as Generalized</maml:para> + </maml:description> + <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + </command:parameter> + </command:syntaxItem> + </command:syntax> + <command:parameters> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="0"> + <maml:name>ResourceGroupName</maml:name> + <maml:description> + <maml:para>Resource Group of the VM</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="1"> + <maml:name>Name</maml:name> + <maml:description> + <maml:para>Name of the VM</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="2"> + <maml:name>Generalized</maml:name> + <maml:description> + <maml:para>Used to mark the VM as Generalized</maml:para> + </maml:description> + <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> + <dev:type> + <maml:name>SwitchParameter</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + <dev:type> + <maml:name>AzureProfile</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + </command:parameters> + <command:inputTypes> + <command:inputType> + <dev:type> + <maml:name></maml:name> + <maml:uri></maml:uri> + <maml:description/> + </dev:type> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:inputType> + </command:inputTypes> + <command:returnValues> + <command:returnValue> + <dev:type> + <maml:name></maml:name> + <maml:uri></maml:uri> + <maml:description/> + </dev:type> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:returnValue> + </command:returnValues> + <command:terminatingErrors></command:terminatingErrors> + <command:nonTerminatingErrors></command:nonTerminatingErrors> + <maml:alertSet> + <maml:title></maml:title> + <maml:alert> + <maml:para /> + </maml:alert> + </maml:alertSet> + <command:examples> + <command:example> + <maml:title>-------------------------- Example 1 --------------------------</maml:title> + <maml:introduction> + <maml:paragraph>PS C:\&gt;</maml:paragraph> + </maml:introduction> + <dev:code>Set-AzureVM -ResourceGroupName &quot;RG1&quot; -Name &quot;VM1&quot; -Generalized</dev:code> + <dev:remarks> + <maml:para /> + <maml:para /> + <maml:para /> + <maml:para></maml:para> + </dev:remarks> + <command:commandLines> + <command:commandLine> + <command:commandText> + <maml:para /> + </command:commandText> + </command:commandLine> + </command:commandLines> + </command:example> + </command:examples> + <maml:relatedLinks> + </maml:relatedLinks> +</command:command> +<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> +<!--Generated by PS Cmdlet Help Editor--> + <command:details> + <command:name>Set-AzureVMAccessExtension</command:name> + <maml:description> + <maml:para>Add VMAccess extension to the VM which allows you to reset the VM username and password</maml:para> + </maml:description> + <maml:copyright> + <maml:para /> + </maml:copyright> + <command:verb>Set</command:verb> + <command:noun>AzureVMAccessExtension</command:noun> + <dev:version /> + </command:details> + <maml:description> + <maml:para>Add VMAccess extension to the VM which allows you to reset the VM username and password</maml:para> + </maml:description> + <command:syntax> + <command:syntaxItem> + <maml:name>Set-AzureVMAccessExtension</maml:name> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="3"> + <maml:name>TypeHandlerVersion</maml:name> + <maml:description> + <maml:para>Version of the extension</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="4"> + <maml:name>UserName</maml:name> + <maml:description> + <maml:para>New username of the VM</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="5"> + <maml:name>Password</maml:name> + <maml:description> + <maml:para>New password of the VM</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="6"> + <maml:name>Location</maml:name> + <maml:description> + <maml:para>Location of the VM</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="0"> + <maml:name>ResourceGroupName</maml:name> + <maml:description> + <maml:para>Resource Group of the VM</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="1"> + <maml:name>VMName</maml:name> + <maml:description> + <maml:para>Name of the VM</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="2"> + <maml:name>Name</maml:name> + <maml:description> + <maml:para>Name of the extension</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + </command:parameter> + </command:syntaxItem> + </command:syntax> + <command:parameters> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="3"> + <maml:name>TypeHandlerVersion</maml:name> + <maml:description> + <maml:para>Version of the extension</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="4"> + <maml:name>UserName</maml:name> + <maml:description> + <maml:para>New username of the VM</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="5"> + <maml:name>Password</maml:name> + <maml:description> + <maml:para>New password of the VM</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="6"> + <maml:name>Location</maml:name> + <maml:description> + <maml:para>Location of the VM</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="0"> + <maml:name>ResourceGroupName</maml:name> + <maml:description> + <maml:para>Resource Group of the VM</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="1"> + <maml:name>VMName</maml:name> + <maml:description> + <maml:para>Name of the VM</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="2"> + <maml:name>Name</maml:name> + <maml:description> + <maml:para>Name of the extension</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + <dev:type> + <maml:name>AzureProfile</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + </command:parameters> + <command:inputTypes> + <command:inputType> + <dev:type> + <maml:name></maml:name> + <maml:uri></maml:uri> + <maml:description/> + </dev:type> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:inputType> + </command:inputTypes> + <command:returnValues> + <command:returnValue> + <dev:type> + <maml:name></maml:name> + <maml:uri></maml:uri> + <maml:description/> + </dev:type> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:returnValue> + </command:returnValues> + <command:terminatingErrors></command:terminatingErrors> + <command:nonTerminatingErrors></command:nonTerminatingErrors> + <maml:alertSet> + <maml:title></maml:title> + <maml:alert> + <maml:para /> + </maml:alert> + </maml:alertSet> + <command:examples> + <command:example> + <maml:title>-------------------------- Example 1 --------------------------</maml:title> + <maml:introduction> + <maml:paragraph>PS C:\&gt;</maml:paragraph> + </maml:introduction> + <dev:code>$extname = &apos;csetest&apos;; +$extver = &apos;2.0&apos;; +$user2 = &quot;Bar12&quot;; +$password2 = &apos;FoO@123&apos; + $rgname; + +# Set VMAccess extension +Set-AzureVMAccessExtension -ResourceGroupName $rgname -Location $loc -VMName $vmname -Name $extname -TypeHandlerVersion $extver -UserName $user2 -Password $password2;</dev:code> + <dev:remarks> + <maml:para /> + <maml:para /> + <maml:para /> <maml:para></maml:para> </dev:remarks> <command:commandLines> <command:commandLine> - <command:commandText></command:commandText> + <command:commandText> + <maml:para /> + </command:commandText> </command:commandLine> </command:commandLines> </command:example> @@ -2649,116 +7471,190 @@ New-AzureStorageKey -ResourceGroupName &quot;myResourceGroup&quot; -AccountName <maml:relatedLinks> </maml:relatedLinks> </command:command> -<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10"> +<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> <!--Generated by PS Cmdlet Help Editor--> <command:details> - <command:name>Set-AzureStorageAccount</command:name> + <command:name>Set-AzureVMCustomScriptExtension</command:name> <maml:description> - <maml:para>Update the Storage Account properties</maml:para> + <maml:para>Add a custom script extension to the VM which allows you to execute your own scripts on the VM</maml:para> </maml:description> <maml:copyright> <maml:para /> </maml:copyright> <command:verb>Set</command:verb> - <command:noun>AzureStorageAccount</command:noun> + <command:noun>AzureVMCustomScriptExtension</command:noun> <dev:version /> </command:details> <maml:description> - <!--This is the Description section--> - <maml:para>This cmdlet allows you to update the Storage Account properties.</maml:para> + <maml:para>Add a custom script extension to the VM which allows you to execute your own scripts on the VM</maml:para> </maml:description> <command:syntax> <command:syntaxItem> - <maml:name>Set-AzureStorageAccount</maml:name> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="0"> - <maml:name>ResourceGroupName</maml:name> + <maml:name>Set-AzureVMCustomScriptExtension</maml:name> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="3"> + <maml:name>TypeHandlerVersion</maml:name> <maml:description> - <maml:para>Name of the Resource Group</maml:para> + <maml:para>Version of the extension</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="1"> - <maml:name>Name</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="4"> + <maml:name>ContainerName</maml:name> <maml:description> - <maml:para>Name of the Storage Account</maml:para> + <maml:para>Azure Storage container name where the script is placed</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="2"> - <maml:name>Type</maml:name> + <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="5"> + <maml:name>FileName</maml:name> <maml:description> - <maml:para>Specifies the account type of the storage account. One of four options: - • Standard_LRS (Locally-redundant storage) - • Standard_GRS (Geo-redundant storage) - • Standard_RAGRS (Read access geo-redundant storage) - • Standard_ZRS - - Note that Standard_ZRS accounts cannot be changed to other account types, and other account types cannot be changed to Standard_ZRS.</maml:para> + <maml:para>Name of the script file</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="true">String[]</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="6"> + <maml:name>StorageAccountName</maml:name> + <maml:description> + <maml:para>Azure Storage account name where the script is placed</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="7"> + <maml:name>StorageEndpointSuffix</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="8"> + <maml:name>StorageAccountKey</maml:name> + <maml:description> + <maml:para>Azure storage account key</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="9"> + <maml:name>Run</maml:name> + <maml:description> + <maml:para>The command to execute to run your script</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="10"> + <maml:name>Argument</maml:name> + <maml:description> + <maml:para>Arguments that need to be passed in to the script</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="11"> + <maml:name>Location</maml:name> + <maml:description> + <maml:para>Location of the VM</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> - </command:syntaxItem> - <command:syntaxItem> - <maml:name>Set-AzureStorageAccount</maml:name> <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="0"> <maml:name>ResourceGroupName</maml:name> <maml:description> - <maml:para>Name of the Resource Group</maml:para> + <maml:para>Resource Group of the VM</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="1"> - <maml:name>Name</maml:name> + <maml:name>VMName</maml:name> <maml:description> - <maml:para>Name of the Storage Account</maml:para> + <maml:para>Name of the VM</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="2"> - <maml:name>CustomDomainName</maml:name> + <maml:name>Name</maml:name> <maml:description> - <maml:para>The name of the custom domain.</maml:para> + <maml:para>Name of the extension</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> - <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="3"> - <maml:name>UseSubDomainName</maml:name> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> <maml:description> - <maml:para></maml:para> + <maml:para /> </maml:description> - <command:parameterValue required="true" variableLength="true">Nullable`1[Boolean]</command:parameterValue> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> </command:parameter> </command:syntaxItem> <command:syntaxItem> - <maml:name>Set-AzureStorageAccount</maml:name> + <maml:name>Set-AzureVMCustomScriptExtension</maml:name> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="3"> + <maml:name>TypeHandlerVersion</maml:name> + <maml:description> + <maml:para>Version of the extension</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="4"> + <maml:name>FileUri</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="true">String[]</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="9"> + <maml:name>Run</maml:name> + <maml:description> + <maml:para>The command to execute to run your script</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="10"> + <maml:name>Argument</maml:name> + <maml:description> + <maml:para>Arguments that need to be passed in to the script</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="11"> + <maml:name>Location</maml:name> + <maml:description> + <maml:para>Location of the VM</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="0"> <maml:name>ResourceGroupName</maml:name> <maml:description> - <maml:para>Name of the Resource Group</maml:para> + <maml:para>Resource Group of the VM</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="1"> + <maml:name>VMName</maml:name> + <maml:description> + <maml:para>Name of the VM</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="2"> <maml:name>Name</maml:name> <maml:description> - <maml:para>Name of the Storage Account</maml:para> + <maml:para>Name of the extension</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> - <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="2"> - <maml:name>Tags</maml:name> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> <maml:description> - <maml:para></maml:para> + <maml:para /> </maml:description> - <command:parameterValue required="true" variableLength="true">Hashtable[]</command:parameterValue> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> </command:parameter> </command:syntaxItem> </command:syntax> <command:parameters> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="0"> - <maml:name>ResourceGroupName</maml:name> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="3"> + <maml:name>TypeHandlerVersion</maml:name> <maml:description> - <maml:para>Name of the Resource Group</maml:para> + <maml:para>Version of the extension</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -2767,10 +7663,10 @@ New-AzureStorageKey -ResourceGroupName &quot;myResourceGroup&quot; -AccountName </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="1"> - <maml:name>Name</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="4"> + <maml:name>ContainerName</maml:name> <maml:description> - <maml:para>Name of the Storage Account</maml:para> + <maml:para>Azure Storage container name where the script is placed</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -2779,16 +7675,106 @@ New-AzureStorageKey -ResourceGroupName &quot;myResourceGroup&quot; -AccountName </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="2"> - <maml:name>Type</maml:name> + <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="5"> + <maml:name>FileName</maml:name> <maml:description> - <maml:para>Specifies the account type of the storage account. One of four options: - • Standard_LRS (Locally-redundant storage) - • Standard_GRS (Geo-redundant storage) - • Standard_RAGRS (Read access geo-redundant storage) - • Standard_ZRS - - Note that Standard_ZRS accounts cannot be changed to other account types, and other account types cannot be changed to Standard_ZRS.</maml:para> + <maml:para>Name of the script file</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="true">String[]</command:parameterValue> + <dev:type> + <maml:name>String[]</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="6"> + <maml:name>StorageAccountName</maml:name> + <maml:description> + <maml:para>Azure Storage account name where the script is placed</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="7"> + <maml:name>StorageEndpointSuffix</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="8"> + <maml:name>StorageAccountKey</maml:name> + <maml:description> + <maml:para>Azure storage account key</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="9"> + <maml:name>Run</maml:name> + <maml:description> + <maml:para>The command to execute to run your script</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="10"> + <maml:name>Argument</maml:name> + <maml:description> + <maml:para>Arguments that need to be passed in to the script</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="11"> + <maml:name>Location</maml:name> + <maml:description> + <maml:para>Location of the VM</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="0"> + <maml:name>ResourceGroupName</maml:name> + <maml:description> + <maml:para>Resource Group of the VM</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="1"> + <maml:name>VMName</maml:name> + <maml:description> + <maml:para>Name of the VM</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -2798,9 +7784,9 @@ New-AzureStorageKey -ResourceGroupName &quot;myResourceGroup&quot; -AccountName <dev:defaultValue></dev:defaultValue> </command:parameter> <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="2"> - <maml:name>CustomDomainName</maml:name> + <maml:name>Name</maml:name> <maml:description> - <maml:para>The name of the custom domain.</maml:para> + <maml:para>Name of the extension</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -2809,26 +7795,26 @@ New-AzureStorageKey -ResourceGroupName &quot;myResourceGroup&quot; -AccountName </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="3"> - <maml:name>UseSubDomainName</maml:name> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> <maml:description> - <maml:para></maml:para> + <maml:para /> </maml:description> - <command:parameterValue required="true" variableLength="true">Nullable`1[Boolean]</command:parameterValue> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> <dev:type> - <maml:name>Nullable`1[Boolean]</maml:name> + <maml:name>AzureProfile</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="2"> - <maml:name>Tags</maml:name> + <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="4"> + <maml:name>FileUri</maml:name> <maml:description> - <maml:para></maml:para> + <maml:para /> </maml:description> - <command:parameterValue required="true" variableLength="true">Hashtable[]</command:parameterValue> + <command:parameterValue required="true" variableLength="true">String[]</command:parameterValue> <dev:type> - <maml:name>Hashtable[]</maml:name> + <maml:name>String[]</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> @@ -2838,64 +7824,62 @@ New-AzureStorageKey -ResourceGroupName &quot;myResourceGroup&quot; -AccountName <command:inputType> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> + <maml:description> + <maml:para> +</maml:para> + </maml:description> </command:inputType> </command:inputTypes> <command:returnValues> <command:returnValue> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> - </command:returnValue> - </command:returnValues> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:returnValue> + </command:returnValues> <command:terminatingErrors></command:terminatingErrors> <command:nonTerminatingErrors></command:nonTerminatingErrors> <maml:alertSet> <maml:title></maml:title> <maml:alert> - <maml:para></maml:para> + <maml:para /> </maml:alert> </maml:alertSet> <command:examples> <command:example> - <maml:title>-------------------------- Set Storage Account type --------------------------</maml:title> - <maml:introduction> - <maml:para></maml:para> - </maml:introduction> - <dev:code>PS C:\&gt; # Set account type - Set-AzureStorageAccount -ResourceGroupName &quot;myResourceGroup&quot; -AccountName &quot;myStorageAccount&quot; -AccountType &quot;Standard_RAGRS&quot;</dev:code> - <dev:remarks> - <maml:para></maml:para> - </dev:remarks> - <command:commandLines> - <command:commandLine> - <command:commandText></command:commandText> - </command:commandLine> - </command:commandLines> - </command:example> - <command:example> - <maml:title>-------------------------- Set Custom Domain --------------------------</maml:title> + <maml:title>-------------------------- Example 1 --------------------------</maml:title> <maml:introduction> - <maml:para></maml:para> + <maml:paragraph>PS C:\&gt;</maml:paragraph> </maml:introduction> - <dev:code>PS C:\&gt; #Set custom domain - Set-AzureStorageAccount -ResourceGroupName &quot;myResourceGroup&quot; -AccountName &quot;myStorageAccount&quot; -CustomDomainName &quot;domain name&quot; –UseSubDomain “true”</dev:code> + <dev:code>$extname = &apos;csetest&apos;; +$extver = &apos;1.1&apos;; +$publisher = &apos;Microsoft.Compute&apos;; +$exttype = &apos;CustomScriptExtension&apos;; +$fileToExecute = &apos;a.exe&apos;; +$containderName = &apos;script&apos;; + +# Set custom script extension +Set-AzureVMCustomScriptExtension -ResourceGroupName $rgname -Location $loc -VMName $vmname -Name $extname -TypeHandlerVersion $extver -StorageAccountName $stoname -StorageAccountKey $stokey -FileName $fileToExecute -ContainerName $containderName;</dev:code> <dev:remarks> + <maml:para /> + <maml:para /> + <maml:para /> <maml:para></maml:para> </dev:remarks> <command:commandLines> <command:commandLine> - <command:commandText></command:commandText> + <command:commandText> + <maml:para /> + </command:commandText> </command:commandLine> </command:commandLines> </command:example> @@ -2903,7 +7887,7 @@ New-AzureStorageKey -ResourceGroupName &quot;myResourceGroup&quot; -AccountName <maml:relatedLinks> </maml:relatedLinks> </command:command> -<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10"> +<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> <!--Generated by PS Cmdlet Help Editor--> <command:details> <command:name>Set-AzureVMExtension</command:name> @@ -2918,7 +7902,6 @@ New-AzureStorageKey -ResourceGroupName &quot;myResourceGroup&quot; -AccountName <dev:version /> </command:details> <maml:description> - <!--This is the Description section--> <maml:para>This cmdlet allows you to add an Extensions to a VM or update an existing Extensions properties</maml:para> </maml:description> <command:syntax> @@ -2953,9 +7936,9 @@ New-AzureStorageKey -ResourceGroupName &quot;myResourceGroup&quot; -AccountName <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="4"> - <maml:name>Type</maml:name> + <maml:name>ExtensionType</maml:name> <maml:description> - <maml:para>Type of Extension</maml:para> + <maml:para /> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> @@ -2983,10 +7966,17 @@ New-AzureStorageKey -ResourceGroupName &quot;myResourceGroup&quot; -AccountName <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="8"> <maml:name>Location</maml:name> <maml:description> - <maml:para></maml:para> + <maml:para /> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + </command:parameter> </command:syntaxItem> <command:syntaxItem> <maml:name>Set-AzureVMExtension</maml:name> @@ -3019,9 +8009,9 @@ New-AzureStorageKey -ResourceGroupName &quot;myResourceGroup&quot; -AccountName <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="4"> - <maml:name>Type</maml:name> + <maml:name>ExtensionType</maml:name> <maml:description> - <maml:para>Type of Extension</maml:para> + <maml:para /> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> @@ -3049,10 +8039,17 @@ New-AzureStorageKey -ResourceGroupName &quot;myResourceGroup&quot; -AccountName <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="8"> <maml:name>Location</maml:name> <maml:description> - <maml:para></maml:para> + <maml:para /> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + </command:parameter> </command:syntaxItem> </command:syntax> <command:parameters> @@ -3105,9 +8102,9 @@ New-AzureStorageKey -ResourceGroupName &quot;myResourceGroup&quot; -AccountName <dev:defaultValue></dev:defaultValue> </command:parameter> <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="4"> - <maml:name>Type</maml:name> + <maml:name>ExtensionType</maml:name> <maml:description> - <maml:para>Type of Extension</maml:para> + <maml:para /> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -3155,7 +8152,7 @@ New-AzureStorageKey -ResourceGroupName &quot;myResourceGroup&quot; -AccountName <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="8"> <maml:name>Location</maml:name> <maml:description> - <maml:para></maml:para> + <maml:para /> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -3164,6 +8161,18 @@ New-AzureStorageKey -ResourceGroupName &quot;myResourceGroup&quot; -AccountName </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + <dev:type> + <maml:name>AzureProfile</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="6"> <maml:name>SettingString</maml:name> <maml:description> @@ -3188,44 +8197,58 @@ New-AzureStorageKey -ResourceGroupName &quot;myResourceGroup&quot; -AccountName </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="4"> + <maml:name>Type</maml:name> + <maml:description> + <maml:para>Type of Extension</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">string</command:parameterValue> + <dev:type> + <maml:name>string</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> </command:parameters> <command:inputTypes> <command:inputType> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> + <maml:description> + <maml:para> +</maml:para> + </maml:description> </command:inputType> </command:inputTypes> <command:returnValues> <command:returnValue> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> - </command:returnValue> - </command:returnValues> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:returnValue> + </command:returnValues> <command:terminatingErrors></command:terminatingErrors> <command:nonTerminatingErrors></command:nonTerminatingErrors> <maml:alertSet> <maml:title></maml:title> <maml:alert> - <maml:para></maml:para> + <maml:para /> </maml:alert> </maml:alertSet> <command:examples> <command:example> <maml:title>-------------------------- Set Extension by Hash Table input --------------------------</maml:title> <maml:introduction> - <maml:para></maml:para> + <maml:paragraph>PS C:\&gt;</maml:paragraph> </maml:introduction> <dev:code>PS C:\&gt; $rgname = &quot;RG1&quot; $loc = &quot;West US&quot; @@ -3242,18 +8265,23 @@ New-AzureStorageKey -ResourceGroupName &quot;myResourceGroup&quot; -AccountName $protectedsettings = @{&quot;storageAccountName&quot; = $stoname; &quot;storageAccountKey&quot; = $stokey}; Set-AzureVMExtension -ResourceGroupName $rgname -Location $loc -VMName $vmname -Name $extname -Publisher $publisher -Type $exttype -TypeHandlerVersion $extver -Settings $settings -ProtectedSettings $protectedsettings;</dev:code> <dev:remarks> + <maml:para /> + <maml:para /> + <maml:para /> <maml:para></maml:para> </dev:remarks> <command:commandLines> <command:commandLine> - <command:commandText></command:commandText> + <command:commandText> + <maml:para /> + </command:commandText> </command:commandLine> </command:commandLines> </command:example> <command:example> <maml:title>-------------------------- Set Extension by String input --------------------------</maml:title> <maml:introduction> - <maml:para></maml:para> + <maml:paragraph>PS C:\&gt;</maml:paragraph> </maml:introduction> <dev:code>PS C:\&gt; $rgname = &quot;RG1&quot; $loc = &quot;West US&quot; @@ -3270,11 +8298,16 @@ New-AzureStorageKey -ResourceGroupName &quot;myResourceGroup&quot; -AccountName $protectedsettingstr = &apos;{&quot;storageAccountName&quot;:&quot;&apos; + $stoname + &apos;&quot;,&quot;storageAccountKey&quot;:&quot;&apos; + $stokey + &apos;&quot;}&apos;; Set-AzureVMExtension -ResourceGroupName $rgname -Location $loc -VMName $vmname -Name $extname -Publisher $publisher -Type $exttype -TypeHandlerVersion $extver -SettingString $settingstr -ProtectedSettingString $protectedsettingstr;</dev:code> <dev:remarks> + <maml:para /> + <maml:para /> + <maml:para /> <maml:para></maml:para> </dev:remarks> <command:commandLines> <command:commandLine> - <command:commandText></command:commandText> + <command:commandText> + <maml:para /> + </command:commandText> </command:commandLine> </command:commandLines> </command:example> @@ -3282,7 +8315,7 @@ New-AzureStorageKey -ResourceGroupName &quot;myResourceGroup&quot; -AccountName <maml:relatedLinks> </maml:relatedLinks> </command:command> -<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10"> +<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> <!--Generated by PS Cmdlet Help Editor--> <command:details> <command:name>Set-AzureVMOperatingSystem</command:name> @@ -3297,7 +8330,6 @@ New-AzureStorageKey -ResourceGroupName &quot;myResourceGroup&quot; -AccountName <dev:version /> </command:details> <maml:description> - <!--This is the Description section--> <maml:para>This cmdlet allows you to set the OS properties such as login credentials, computer name etc.</maml:para> </maml:description> <command:syntax> @@ -3332,12 +8364,64 @@ New-AzureStorageKey -ResourceGroupName &quot;myResourceGroup&quot; -AccountName <command:parameterValue required="true" variableLength="false">PSCredential</command:parameterValue> </command:parameter> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="4"> + <maml:name>CustomData</maml:name> + <maml:description> + <maml:para>Specifies a base-64 encoded string of custom data. The base-64 encoded string is decoded to a binary array that is saved as a file on the Virtual Machine. The maximum length of the binary array is 65535 bytes.</maml:para> + <maml:para>Linux - The file is copied to /var/lib/waagent/ovf-env.xml by the Azure Linux Agent. The agent will also place the base-64 encoded data in /var/lib/waagent/CustomData during provisioning.</maml:para> + <maml:para>Windows – The file is saved to %SYSTEMDRIVE%\AzureData\CustomData.bin. If the file exists, it is overwritten. The security on directory is set to System:Full Control and Administrators:Full Control. +</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="5"> <maml:name>ProvisionVMAgent</maml:name> <maml:description> <maml:para>Indicates that the VM agent should be installed on the VM</maml:para> </maml:description> <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="6"> + <maml:name>EnableAutoUpdate</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="7"> + <maml:name>TimeZone</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="8"> + <maml:name>WinRMHttp</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="9"> + <maml:name>WinRMHttps</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="10"> + <maml:name>WinRMCertificateUrl</maml:name> + <maml:description> + <maml:para>URL of certificate in KeyVault to be used for WinRM HTTPS</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">Uri</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + </command:parameter> </command:syntaxItem> <command:syntaxItem> <maml:name>Set-AzureVMOperatingSystem</maml:name> @@ -3370,18 +8454,28 @@ New-AzureStorageKey -ResourceGroupName &quot;myResourceGroup&quot; -AccountName <command:parameterValue required="true" variableLength="false">PSCredential</command:parameterValue> </command:parameter> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="4"> - <maml:name>ProvisionVMAgent</maml:name> + <maml:name>CustomData</maml:name> <maml:description> - <maml:para>Indicates that the VM agent should be installed on the VM</maml:para> + <maml:para>Specifies a base-64 encoded string of custom data. The base-64 encoded string is decoded to a binary array that is saved as a file on the Virtual Machine. The maximum length of the binary array is 65535 bytes.</maml:para> + <maml:para>Linux - The file is copied to /var/lib/waagent/ovf-env.xml by the Azure Linux Agent. The agent will also place the base-64 encoded data in /var/lib/waagent/CustomData during provisioning.</maml:para> + <maml:para>Windows – The file is saved to %SYSTEMDRIVE%\AzureData\CustomData.bin. If the file exists, it is overwritten. The security on directory is set to System:Full Control and Administrators:Full Control. +</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="5"> + <maml:name>DisablePasswordAuthentication</maml:name> + <maml:description> + <maml:para /> </maml:description> <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> </command:parameter> - <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="5"> - <maml:name>SSHPublicKey</maml:name> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> <maml:description> - <maml:para>SSH public key for the VM</maml:para> + <maml:para /> </maml:description> - <command:parameterValue required="true" variableLength="true">String[]</command:parameterValue> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> </command:parameter> </command:syntaxItem> </command:syntax> @@ -3435,6 +8529,21 @@ New-AzureStorageKey -ResourceGroupName &quot;myResourceGroup&quot; -AccountName <dev:defaultValue></dev:defaultValue> </command:parameter> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="4"> + <maml:name>CustomData</maml:name> + <maml:description> + <maml:para>Specifies a base-64 encoded string of custom data. The base-64 encoded string is decoded to a binary array that is saved as a file on the Virtual Machine. The maximum length of the binary array is 65535 bytes.</maml:para> + <maml:para>Linux - The file is copied to /var/lib/waagent/ovf-env.xml by the Azure Linux Agent. The agent will also place the base-64 encoded data in /var/lib/waagent/CustomData during provisioning.</maml:para> + <maml:para>Windows – The file is saved to %SYSTEMDRIVE%\AzureData\CustomData.bin. If the file exists, it is overwritten. The security on directory is set to System:Full Control and Administrators:Full Control. +</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="5"> <maml:name>ProvisionVMAgent</maml:name> <maml:description> <maml:para>Indicates that the VM agent should be installed on the VM</maml:para> @@ -3446,6 +8555,78 @@ New-AzureStorageKey -ResourceGroupName &quot;myResourceGroup&quot; -AccountName </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="6"> + <maml:name>EnableAutoUpdate</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> + <dev:type> + <maml:name>SwitchParameter</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="7"> + <maml:name>TimeZone</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="8"> + <maml:name>WinRMHttp</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> + <dev:type> + <maml:name>SwitchParameter</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="9"> + <maml:name>WinRMHttps</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> + <dev:type> + <maml:name>SwitchParameter</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="10"> + <maml:name>WinRMCertificateUrl</maml:name> + <maml:description> + <maml:para>URL of certificate in KeyVault to be used for WinRM HTTPS</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">Uri</command:parameterValue> + <dev:type> + <maml:name>Uri</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + <dev:type> + <maml:name>AzureProfile</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="1"> <maml:name>Linux</maml:name> <maml:description> @@ -3458,14 +8639,50 @@ New-AzureStorageKey -ResourceGroupName &quot;myResourceGroup&quot; -AccountName </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="5"> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="5"> + <maml:name>DisablePasswordAuthentication</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> + <dev:type> + <maml:name>SwitchParameter</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="5"> + <maml:name>Secrets</maml:name> + <maml:description> + <maml:para>Secrets config that specifies the source KeyVault and Certificate url. Use the Add-AzureVMSecret cmdlet to create this config.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">list`1[psvaultsecretgroup]</command:parameterValue> + <dev:type> + <maml:name>list`1[psvaultsecretgroup]</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="12"> + <maml:name>AdditionalUnattendContents</maml:name> + <maml:description> + <maml:para>AdditionalUnattendContent config. Use the Add-AzureVMAdditionalUnattendContent cmdlet to create this.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">list`1[psadditionalunattendcontent]</command:parameterValue> + <dev:type> + <maml:name>list`1[psadditionalunattendcontent]</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="5"> <maml:name>SSHPublicKey</maml:name> <maml:description> <maml:para>SSH public key for the VM</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="true">String[]</command:parameterValue> + <command:parameterValue required="true" variableLength="false">string[]</command:parameterValue> <dev:type> - <maml:name>String[]</maml:name> + <maml:name>string[]</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> @@ -3475,57 +8692,68 @@ New-AzureStorageKey -ResourceGroupName &quot;myResourceGroup&quot; -AccountName <command:inputType> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> + <maml:description> + <maml:para> +</maml:para> + </maml:description> </command:inputType> </command:inputTypes> <command:returnValues> <command:returnValue> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> - </command:returnValue> - </command:returnValues> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:returnValue> + </command:returnValues> <command:terminatingErrors></command:terminatingErrors> <command:nonTerminatingErrors></command:nonTerminatingErrors> <maml:alertSet> <maml:title></maml:title> <maml:alert> - <maml:para></maml:para> + <maml:para /> </maml:alert> </maml:alertSet> <command:examples> <command:example> <maml:title>-------------------------- Example 1 --------------------------</maml:title> <maml:introduction> - <maml:para></maml:para> + <maml:paragraph>PS C:\&gt;</maml:paragraph> </maml:introduction> - <dev:code>PS C:\&gt; $user = &quot;Foo12&quot;; - $password = &apos;BaR@123&apos;; - $securePassword = ConvertTo-SecureString $password -AsPlainText -Force; - $cred = New-Object System.Management.Automation.PSCredential ($user, $securePassword); - $computerName = &apos;test2&apos;; + <dev:code>$user = &quot;Foo12&quot;; +$password = &apos;BaR@123&apos;; +$securePassword = ConvertTo-SecureString $password -AsPlainText -Force; +$cred = New-Object System.Management.Automation.PSCredential ($user, $securePassword); +$computerName = &apos;test2&apos;; +$winRMCertUrl = &quot;http://keyVaultName.vault.azure.net/secrets/secretName/secretVersion&quot;; +$timeZone = &quot;Pacific Standard Time&quot;; +$custom = &quot;echo &apos;Hello World&apos;&quot;; +$encodedCustom = &quot;ZWNobyAnSGVsbG8gV29ybGQn&quot;; - # Create the VM Profile - $vm = New-AzureVMConfig –VMName “myVM” -AvailabilitySetID $as1.Id –VMSize “Standard_A1&quot; +# Create the VM Profile +$vm = New-AzureVMConfig –VMName “myVM” -AvailabilitySetID $as1.Id –VMSize “Standard_A1&quot; - # Set OS properties - $vm = Set-AzureVMOperatingSystem -VM $vm -Windows -ComputerName $computerName -Credential $cred;</dev:code> +# Set OS properties +$vm = Set-AzureVMOperatingSystem -VM $vm -Windows -ComputerName $computerName -Credential $cred -CustomData $custom -WinRMHttp -WinRMHttps -WinRMCertificateUrl $winRMCertUrl -ProvisionVMAgent -EnableAutoUpdate -TimeZone $timeZone;</dev:code> <dev:remarks> + <maml:para /> + <maml:para /> + <maml:para /> <maml:para></maml:para> </dev:remarks> <command:commandLines> <command:commandLine> - <command:commandText></command:commandText> + <command:commandText> + <maml:para /> + </command:commandText> </command:commandLine> </command:commandLines> </command:example> @@ -3533,7 +8761,7 @@ New-AzureStorageKey -ResourceGroupName &quot;myResourceGroup&quot; -AccountName <maml:relatedLinks> </maml:relatedLinks> </command:command> -<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10"> +<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> <!--Generated by PS Cmdlet Help Editor--> <command:details> <command:name>Set-AzureVMOSDisk</command:name> @@ -3548,7 +8776,6 @@ New-AzureStorageKey -ResourceGroupName &quot;myResourceGroup&quot; -AccountName <dev:version /> </command:details> <maml:description> - <!--This is the Description section--> <maml:para>Set the OS Disk properties on the VM</maml:para> </maml:description> <command:syntax> @@ -3591,12 +8818,34 @@ New-AzureStorageKey -ResourceGroupName &quot;myResourceGroup&quot; -AccountName <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="4"> + <maml:name>SourceImageUri</maml:name> + <maml:description> + <maml:para>Uri of the existing VHD in case attaching the disk to the VM</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="5"> + <maml:name>CreateOption</maml:name> + <maml:description> + <maml:para>Specifies whether to create a disk in the VM from a platform or user image, to create a new empty disk or to attach an existing disk. Valid values are </maml:para> + <maml:para>&quot;FromImage”, “Attach” or “Empty”</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="6"> <maml:name>Windows</maml:name> <maml:description> <maml:para>Used in case of a user image based VM deployment to specify that the OS on the user image is Windows.</maml:para> </maml:description> <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + </command:parameter> </command:syntaxItem> <command:syntaxItem> <maml:name>Set-AzureVMOSDisk</maml:name> @@ -3637,12 +8886,34 @@ New-AzureStorageKey -ResourceGroupName &quot;myResourceGroup&quot; -AccountName <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="4"> + <maml:name>SourceImageUri</maml:name> + <maml:description> + <maml:para>Uri of the existing VHD in case attaching the disk to the VM</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="5"> + <maml:name>CreateOption</maml:name> + <maml:description> + <maml:para>Specifies whether to create a disk in the VM from a platform or user image, to create a new empty disk or to attach an existing disk. Valid values are </maml:para> + <maml:para>&quot;FromImage”, “Attach” or “Empty”</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="6"> <maml:name>Linux</maml:name> <maml:description> <maml:para>Used in case of a user image based VM deployment to specify that the OS on the user image is Linux.</maml:para> </maml:description> <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + </command:parameter> </command:syntaxItem> </command:syntax> <command:parameters> @@ -3703,6 +8974,31 @@ New-AzureStorageKey -ResourceGroupName &quot;myResourceGroup&quot; -AccountName <dev:defaultValue></dev:defaultValue> </command:parameter> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="4"> + <maml:name>SourceImageUri</maml:name> + <maml:description> + <maml:para>Uri of the existing VHD in case attaching the disk to the VM</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="5"> + <maml:name>CreateOption</maml:name> + <maml:description> + <maml:para>Specifies whether to create a disk in the VM from a platform or user image, to create a new empty disk or to attach an existing disk. Valid values are </maml:para> + <maml:para>&quot;FromImage”, “Attach” or “Empty”</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="6"> <maml:name>Windows</maml:name> <maml:description> <maml:para>Used in case of a user image based VM deployment to specify that the OS on the user image is Windows.</maml:para> @@ -3714,7 +9010,19 @@ New-AzureStorageKey -ResourceGroupName &quot;myResourceGroup&quot; -AccountName </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="4"> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + <dev:type> + <maml:name>AzureProfile</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="6"> <maml:name>Linux</maml:name> <maml:description> <maml:para>Used in case of a user image based VM deployment to specify that the OS on the user image is Linux.</maml:para> @@ -3731,51 +9039,61 @@ New-AzureStorageKey -ResourceGroupName &quot;myResourceGroup&quot; -AccountName <command:inputType> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> + <maml:description> + <maml:para> +</maml:para> + </maml:description> </command:inputType> </command:inputTypes> <command:returnValues> <command:returnValue> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> - </command:returnValue> - </command:returnValues> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:returnValue> + </command:returnValues> <command:terminatingErrors></command:terminatingErrors> <command:nonTerminatingErrors></command:nonTerminatingErrors> <maml:alertSet> <maml:title></maml:title> <maml:alert> - <maml:para></maml:para> + <maml:para /> </maml:alert> </maml:alertSet> <command:examples> <command:example> <maml:title>-------------------------- Example 1 --------------------------</maml:title> <maml:introduction> - <maml:para></maml:para> + <maml:paragraph>PS C:\&gt;</maml:paragraph> </maml:introduction> - <dev:code>PS C:\&gt; $osDiskName = &apos;osDisk2&apos;; - $osDiskCaching = &apos;ReadWrite&apos;; - $osDiskVhdUri = &quot;https://$stoname.blob.core.windows.net/test/os.vhd&quot;; + <dev:code>$stoname = &apos;teststo&apos;; +$stotype = &apos;Standard_GRS&apos;; - Set-AzureVMOSDisk -VM $vm -Name $osDiskName -VhdUri $osDiskVhdUri -Caching $osDiskCaching;</dev:code> +$osDiskName = &apos;osDisk&apos;; +$osDiskCaching = &apos;ReadWrite&apos;; +$osDiskVhdUri = &quot;https://$stoname.blob.core.windows.net/test/os.vhd&quot;; + +$vm = Set-AzureVMOSDisk -VM $vm -Name $osDiskName -VhdUri $osDiskVhdUri -Caching $osDiskCaching -CreateOption Empty;</dev:code> <dev:remarks> + <maml:para /> + <maml:para /> + <maml:para /> <maml:para></maml:para> </dev:remarks> <command:commandLines> <command:commandLine> - <command:commandText></command:commandText> + <command:commandText> + <maml:para /> + </command:commandText> </command:commandLine> </command:commandLines> </command:example> @@ -3783,7 +9101,7 @@ New-AzureStorageKey -ResourceGroupName &quot;myResourceGroup&quot; -AccountName <maml:relatedLinks> </maml:relatedLinks> </command:command> -<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10"> +<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> <!--Generated by PS Cmdlet Help Editor--> <command:details> <command:name>Set-AzureVMSourceImage</command:name> @@ -3798,10 +9116,33 @@ New-AzureStorageKey -ResourceGroupName &quot;myResourceGroup&quot; -AccountName <dev:version /> </command:details> <maml:description> - <!--This is the Description section--> <maml:para>Specify the Platform Image to be used for the VM</maml:para> </maml:description> <command:syntax> + <command:syntaxItem> + <maml:name>Set-AzureVMSourceImage</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0"> + <maml:name>VM</maml:name> + <maml:description> + <maml:para>The local VM object to be configured</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">PSVirtualMachine</command:parameterValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="1"> + <maml:name>ImageReference</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">PSVirtualMachineImage</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + </command:parameter> + </command:syntaxItem> <command:syntaxItem> <maml:name>Set-AzureVMSourceImage</maml:name> <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0"> @@ -3818,12 +9159,12 @@ New-AzureStorageKey -ResourceGroupName &quot;myResourceGroup&quot; -AccountName </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="2"> - <maml:name>DestinationVhdsContainer</maml:name> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> <maml:description> - <maml:para>Container to be used for storing VHDs while creating a VM from platform image. Container will be created by CRP if it doesn’t exist already.</maml:para> + <maml:para /> </maml:description> - <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> </command:parameter> </command:syntaxItem> </command:syntax> @@ -3840,6 +9181,30 @@ New-AzureStorageKey -ResourceGroupName &quot;myResourceGroup&quot; -AccountName </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="1"> + <maml:name>ImageReference</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">PSVirtualMachineImage</command:parameterValue> + <dev:type> + <maml:name>PSVirtualMachineImage</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + <dev:type> + <maml:name>AzureProfile</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="1"> <maml:name>Name</maml:name> <maml:description> @@ -3852,14 +9217,14 @@ New-AzureStorageKey -ResourceGroupName &quot;myResourceGroup&quot; -AccountName </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="2"> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="2"> <maml:name>DestinationVhdsContainer</maml:name> <maml:description> <maml:para>Container to be used for storing VHDs while creating a VM from platform image. Container will be created by CRP if it doesn’t exist already.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <command:parameterValue required="true" variableLength="false">string</command:parameterValue> <dev:type> - <maml:name>String</maml:name> + <maml:name>string</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> @@ -3869,50 +9234,87 @@ New-AzureStorageKey -ResourceGroupName &quot;myResourceGroup&quot; -AccountName <command:inputType> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> + <maml:description> + <maml:para> +</maml:para> + </maml:description> </command:inputType> </command:inputTypes> <command:returnValues> <command:returnValue> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> - </command:returnValue> - </command:returnValues> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:returnValue> + </command:returnValues> <command:terminatingErrors></command:terminatingErrors> <command:nonTerminatingErrors></command:nonTerminatingErrors> <maml:alertSet> <maml:title></maml:title> <maml:alert> - <maml:para></maml:para> + <maml:para /> </maml:alert> </maml:alertSet> <command:examples> <command:example> <maml:title>-------------------------- Example 1 --------------------------</maml:title> <maml:introduction> + <maml:paragraph>PS C:\&gt;</maml:paragraph> + </maml:introduction> + <dev:code>$vhdContainer = &quot;https://$stoname.blob.core.windows.net/test&quot;; + +$img = &apos;a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-Datacenter-201410.01-en.us-127GB.vhd&apos;; + +Set-AzureVMSourceImage -VM $vm -Name $img -DestinationVhdsContainer $vhdContainer;</dev:code> + <dev:remarks> + <maml:para /> + <maml:para /> + <maml:para /> <maml:para></maml:para> + </dev:remarks> + <command:commandLines> + <command:commandLine> + <command:commandText> + <maml:para /> + </command:commandText> + </command:commandLine> + </command:commandLines> + </command:example> + <command:example> + <maml:title>-------------------------- Example 2 --------------------------</maml:title> + <maml:introduction> + <maml:paragraph>PS C:\&gt;</maml:paragraph> </maml:introduction> - <dev:code>PS C:\&gt; $vhdContainer = &quot;https://$stoname.blob.core.windows.net/test&quot;; - $img = &apos;a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-Datacenter-201410.01-en.us-127GB.vhd&apos;; + <dev:code>$loc = &quot;eastasia&quot;; +$query = &apos;*Microsoft*Windows*Server&apos;; + +$publisher = (Get-AzureVMImagePublisher -Location $loc) | select -ExpandProperty PublisherName | where { $_ -like $query }; +$offer = (Get-AzureVMImageOffer -Location $loc -PublisherName $publisher[0]) | select -ExpandProperty Offer | where { $_ -like &apos;*Windows*&apos; }; +$sku = (Get-AzureVMImageSku -Location $loc -PublisherName $publisher[0] -Offer $offer[0]) | select -ExpandProperty Skus; +$versions = (Get-AzureVMImage -Location $loc -Offer -Offer $offer[0] -PublisherName $publisher[0] -Skus $sku[0]) | select -ExpandProperty Version; +$vmimg = Get-AzureVMImageDetail -Location $loc -Offer -Offer $offer[0] -PublisherName $publisher[0] -Skus $sku[0] -Version $versions[0]; - Set-AzureVMSourceImage -VM $vm -Name $img -DestinationVhdsContainer $vhdContainer;</dev:code> +$vm = Set-AzureVMSourceImage -VM $vm -ImageReference $vmimg;</dev:code> <dev:remarks> + <maml:para>Set source image using the image reference method</maml:para> + <maml:para /> + <maml:para /> <maml:para></maml:para> </dev:remarks> <command:commandLines> <command:commandLine> - <command:commandText></command:commandText> + <command:commandText> + <maml:para /> + </command:commandText> </command:commandLine> </command:commandLines> </command:example> @@ -3920,7 +9322,7 @@ New-AzureStorageKey -ResourceGroupName &quot;myResourceGroup&quot; -AccountName <maml:relatedLinks> </maml:relatedLinks> </command:command> -<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10"> +<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> <!--Generated by PS Cmdlet Help Editor--> <command:details> <command:name>Start-AzureVM</command:name> @@ -3935,7 +9337,6 @@ New-AzureStorageKey -ResourceGroupName &quot;myResourceGroup&quot; -AccountName <dev:version /> </command:details> <maml:description> - <!--This is the Description section--> <maml:para>This cmdlet allows you to start a VM</maml:para> </maml:description> <command:syntax> @@ -3955,6 +9356,13 @@ New-AzureStorageKey -ResourceGroupName &quot;myResourceGroup&quot; -AccountName </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + </command:parameter> </command:syntaxItem> </command:syntax> <command:parameters> @@ -3982,52 +9390,71 @@ New-AzureStorageKey -ResourceGroupName &quot;myResourceGroup&quot; -AccountName </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + <dev:type> + <maml:name>AzureProfile</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> </command:parameters> <command:inputTypes> <command:inputType> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> + <maml:description> + <maml:para> +</maml:para> + </maml:description> </command:inputType> </command:inputTypes> <command:returnValues> <command:returnValue> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> - </command:returnValue> - </command:returnValues> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:returnValue> + </command:returnValues> <command:terminatingErrors></command:terminatingErrors> <command:nonTerminatingErrors></command:nonTerminatingErrors> <maml:alertSet> <maml:title></maml:title> <maml:alert> - <maml:para></maml:para> + <maml:para /> </maml:alert> </maml:alertSet> <command:examples> <command:example> <maml:title>-------------------------- Example 1 --------------------------</maml:title> <maml:introduction> - <maml:para></maml:para> + <maml:paragraph>PS C:\&gt;</maml:paragraph> </maml:introduction> - <dev:code>PS C:\&gt; Start-AzureVM -ResourceGroupName &quot;myRG&quot; -Name &quot;crpVM&quot;</dev:code> + <dev:code>Start-AzureVM -ResourceGroupName &quot;myRG&quot; -Name &quot;crpVM&quot;</dev:code> <dev:remarks> + <maml:para /> + <maml:para /> + <maml:para /> <maml:para></maml:para> </dev:remarks> <command:commandLines> <command:commandLine> - <command:commandText></command:commandText> + <command:commandText> + <maml:para /> + </command:commandText> </command:commandLine> </command:commandLines> </command:example> @@ -4035,7 +9462,7 @@ New-AzureStorageKey -ResourceGroupName &quot;myResourceGroup&quot; -AccountName <maml:relatedLinks> </maml:relatedLinks> </command:command> -<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10"> +<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> <!--Generated by PS Cmdlet Help Editor--> <command:details> <command:name>Stop-AzureVM</command:name> @@ -4050,7 +9477,6 @@ New-AzureStorageKey -ResourceGroupName &quot;myResourceGroup&quot; -AccountName <dev:version /> </command:details> <maml:description> - <!--This is the Description section--> <maml:para>This cmdlet allows you to Stop a VM</maml:para> </maml:description> <command:syntax> @@ -4059,14 +9485,14 @@ New-AzureStorageKey -ResourceGroupName &quot;myResourceGroup&quot; -AccountName <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>Force</maml:name> <maml:description> - <maml:para></maml:para> + <maml:para /> </maml:description> <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> </command:parameter> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>StayProvisioned</maml:name> <maml:description> - <maml:para></maml:para> + <maml:para /> </maml:description> <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> </command:parameter> @@ -4084,13 +9510,20 @@ New-AzureStorageKey -ResourceGroupName &quot;myResourceGroup&quot; -AccountName </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + </command:parameter> </command:syntaxItem> </command:syntax> <command:parameters> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>Force</maml:name> <maml:description> - <maml:para></maml:para> + <maml:para /> </maml:description> <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> <dev:type> @@ -4102,7 +9535,7 @@ New-AzureStorageKey -ResourceGroupName &quot;myResourceGroup&quot; -AccountName <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>StayProvisioned</maml:name> <maml:description> - <maml:para></maml:para> + <maml:para /> </maml:description> <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> <dev:type> @@ -4135,52 +9568,71 @@ New-AzureStorageKey -ResourceGroupName &quot;myResourceGroup&quot; -AccountName </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + <dev:type> + <maml:name>AzureProfile</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> </command:parameters> <command:inputTypes> <command:inputType> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> + <maml:description> + <maml:para> +</maml:para> + </maml:description> </command:inputType> </command:inputTypes> <command:returnValues> <command:returnValue> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> - </command:returnValue> - </command:returnValues> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:returnValue> + </command:returnValues> <command:terminatingErrors></command:terminatingErrors> <command:nonTerminatingErrors></command:nonTerminatingErrors> <maml:alertSet> <maml:title></maml:title> <maml:alert> - <maml:para></maml:para> + <maml:para /> </maml:alert> </maml:alertSet> <command:examples> <command:example> <maml:title>-------------------------- Example 1 --------------------------</maml:title> <maml:introduction> - <maml:para></maml:para> + <maml:paragraph>PS C:\&gt;</maml:paragraph> </maml:introduction> - <dev:code>PS C:\&gt; Stop-AzureVM -ResourceGroupName &quot;myRG&quot; -Name &quot;crpVM&quot;</dev:code> + <dev:code>Stop-AzureVM -ResourceGroupName &quot;myRG&quot; -Name &quot;crpVM&quot;</dev:code> <dev:remarks> + <maml:para /> + <maml:para /> + <maml:para /> <maml:para></maml:para> </dev:remarks> <command:commandLines> <command:commandLine> - <command:commandText></command:commandText> + <command:commandText> + <maml:para /> + </command:commandText> </command:commandLine> </command:commandLines> </command:example> @@ -4188,7 +9640,7 @@ New-AzureStorageKey -ResourceGroupName &quot;myResourceGroup&quot; -AccountName <maml:relatedLinks> </maml:relatedLinks> </command:command> -<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10"> +<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> <!--Generated by PS Cmdlet Help Editor--> <command:details> <command:name>Update-AzureVM</command:name> @@ -4203,7 +9655,6 @@ New-AzureStorageKey -ResourceGroupName &quot;myResourceGroup&quot; -AccountName <dev:version /> </command:details> <maml:description> - <!--This is the Description section--> <maml:para>This cmdlet allows you to update the Azure VM state with the state of the local VM object</maml:para> </maml:description> <command:syntax> @@ -4230,6 +9681,13 @@ New-AzureStorageKey -ResourceGroupName &quot;myResourceGroup&quot; -AccountName </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + </command:parameter> </command:syntaxItem> </command:syntax> <command:parameters> @@ -4269,52 +9727,71 @@ New-AzureStorageKey -ResourceGroupName &quot;myResourceGroup&quot; -AccountName </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + <dev:type> + <maml:name>AzureProfile</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> </command:parameters> <command:inputTypes> <command:inputType> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> + <maml:description> + <maml:para> +</maml:para> + </maml:description> </command:inputType> </command:inputTypes> <command:returnValues> <command:returnValue> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> - </command:returnValue> - </command:returnValues> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:returnValue> + </command:returnValues> <command:terminatingErrors></command:terminatingErrors> <command:nonTerminatingErrors></command:nonTerminatingErrors> <maml:alertSet> <maml:title></maml:title> <maml:alert> - <maml:para></maml:para> + <maml:para /> </maml:alert> </maml:alertSet> <command:examples> <command:example> <maml:title>-------------------------- Example 1 --------------------------</maml:title> <maml:introduction> - <maml:para></maml:para> + <maml:paragraph>PS C:\&gt;</maml:paragraph> </maml:introduction> - <dev:code>PS C:\&gt; Update-AzureVM -ResourceGroupName &quot;myRG&quot; -Name &quot;crpVM&quot; –VM $vm</dev:code> + <dev:code>Update-AzureVM -ResourceGroupName &quot;myRG&quot; -Name &quot;crpVM&quot; –VM $vm</dev:code> <dev:remarks> + <maml:para /> + <maml:para /> + <maml:para /> <maml:para></maml:para> </dev:remarks> <command:commandLines> <command:commandLine> - <command:commandText></command:commandText> + <command:commandText> + <maml:para /> + </command:commandText> </command:commandLine> </command:commandLines> </command:example> diff --git a/src/ResourceManager/Compute/Commands.Compute/Microsoft.Azure.Commands.Compute.format.ps1xml b/src/ResourceManager/Compute/Commands.Compute/Microsoft.Azure.Commands.Compute.format.ps1xml index c13f5bd64193..e1248610e37a 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Microsoft.Azure.Commands.Compute.format.ps1xml +++ b/src/ResourceManager/Compute/Commands.Compute/Microsoft.Azure.Commands.Compute.format.ps1xml @@ -1,6 +1,193 @@ <?xml version="1.0" encoding="utf-8" ?> <Configuration> <ViewDefinitions> - + <View> + <Name>PSAvailabilitySet</Name> + <ViewSelectedBy> + <TypeName>Microsoft.Azure.Commands.Compute.Models.PSAvailabilitySet</TypeName> + </ViewSelectedBy> + <ListControl> + <ListEntries> + <ListEntry> + <ListItems> + <ListItem> + <Label>Id</Label> + <PropertyName>Id</PropertyName> + </ListItem> + <ListItem> + <Label>Location</Label> + <PropertyName>Location</PropertyName> + </ListItem> + <ListItem> + <Label>Name</Label> + <PropertyName>Name</PropertyName> + </ListItem> + <ListItem> + <Label>PlatformFaultDomainCount</Label> + <PropertyName>PlatformFaultDomainCount</PropertyName> + </ListItem> + <ListItem> + <Label>PlatformUpdateDomainCount</Label> + <PropertyName>PlatformUpdateDomainCount</PropertyName> + </ListItem> + <ListItem> + <Label>Statuses</Label> + <PropertyName>StatusesText</PropertyName> + </ListItem> + <ListItem> + <Label>Tags</Label> + <PropertyName>Tags</PropertyName> + </ListItem> + <ListItem> + <Label>Type</Label> + <PropertyName>Type</PropertyName> + </ListItem> + <ListItem> + <Label>VirtualMachinesReferences</Label> + <PropertyName>VirtualMachinesReferencesText</PropertyName> + </ListItem> + </ListItems> + </ListEntry> + </ListEntries> + </ListControl> + </View> + <View> + <Name>PSVirtualMachineSize</Name> + <ViewSelectedBy> + <TypeName>Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineSize</TypeName> + </ViewSelectedBy> + <ListControl> + <ListEntries> + <ListEntry> + <ListItems> + <ListItem> + <Label>MaxDataDiskCount</Label> + <PropertyName>MaxDataDiskCount</PropertyName> + </ListItem> + <ListItem> + <Label>MemoryInMB</Label> + <PropertyName>MemoryInMB</PropertyName> + </ListItem> + <ListItem> + <Label>Name</Label> + <PropertyName>Name</PropertyName> + </ListItem> + <ListItem> + <Label>NumberOfCores</Label> + <PropertyName>NumberOfCores</PropertyName> + </ListItem> + <ListItem> + <Label>OSDiskSizeInMB</Label> + <PropertyName>OSDiskSizeInMB</PropertyName> + </ListItem> + <ListItem> + <Label>ResourceDiskSizeInMB</Label> + <PropertyName>ResourceDiskSizeInMB</PropertyName> + </ListItem> + </ListItems> + </ListEntry> + </ListEntries> + </ListControl> + </View> + <View> + <Name>PSUsage</Name> + <ViewSelectedBy> + <TypeName>Microsoft.Azure.Commands.Compute.Models.PSUsage</TypeName> + </ViewSelectedBy> + <ListControl> + <ListEntries> + <ListEntry> + <ListItems> + <ListItem> + <Label>CurrentValue</Label> + <PropertyName>CurrentValue</PropertyName> + </ListItem> + <ListItem> + <Label>Limit</Label> + <PropertyName>Limit</PropertyName> + </ListItem> + <ListItem> + <Label>Name</Label> + <PropertyName>NameText</PropertyName> + </ListItem> + <ListItem> + <Label>Unit</Label> + <PropertyName>UnitText</PropertyName> + </ListItem> + </ListItems> + </ListEntry> + </ListEntries> + </ListControl> + </View> + <View> + <Name>PSVirtualMachine</Name> + <ViewSelectedBy> + <TypeName>Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine</TypeName> + </ViewSelectedBy> + <ListControl> + <ListEntries> + <ListEntry> + <ListItems> + <ListItem> + <Label>AvailabilitySetReference</Label> + <PropertyName>AvailabilitySetReferenceText</PropertyName> + </ListItem> + <ListItem> + <Label>Extensions</Label> + <PropertyName>ExtensionsText</PropertyName> + </ListItem> + <ListItem> + <Label>HardwareProfile</Label> + <PropertyName>HardwareProfileText</PropertyName> + </ListItem> + <ListItem> + <Label>Id</Label> + <PropertyName>Id</PropertyName> + </ListItem> + <ListItem> + <Label>InstanceView</Label> + <PropertyName>InstanceViewText</PropertyName> + </ListItem> + <ListItem> + <Label>Location</Label> + <PropertyName>Location</PropertyName> + </ListItem> + <ListItem> + <Label>Name</Label> + <PropertyName>Name</PropertyName> + </ListItem> + <ListItem> + <Label>NetworkProfile</Label> + <PropertyName>NetworkProfileText</PropertyName> + </ListItem> + <ListItem> + <Label>OSProfile</Label> + <PropertyName>OSProfileText</PropertyName> + </ListItem> + <ListItem> + <Label>Plan</Label> + <PropertyName>PlanText</PropertyName> + </ListItem> + <ListItem> + <Label>ProvisioningState</Label> + <PropertyName>ProvisioningState</PropertyName> + </ListItem> + <ListItem> + <Label>StorageProfile</Label> + <PropertyName>StorageProfileText</PropertyName> + </ListItem> + <ListItem> + <Label>Tags</Label> + <PropertyName>Tags</PropertyName> + </ListItem> + <ListItem> + <Label>Type</Label> + <PropertyName>Type</PropertyName> + </ListItem> + </ListItems> + </ListEntry> + </ListEntries> + </ListControl> + </View> </ViewDefinitions> -</Configuration> +</Configuration> \ No newline at end of file diff --git a/src/ResourceManager/Compute/Commands.Compute/Models/PSVirtualMachineExtensionImageDetails.cs b/src/ResourceManager/Compute/Commands.Compute/Models/LocationStringExtensions.cs similarity index 58% rename from src/ResourceManager/Compute/Commands.Compute/Models/PSVirtualMachineExtensionImageDetails.cs rename to src/ResourceManager/Compute/Commands.Compute/Models/LocationStringExtensions.cs index 90ce5702f707..f282814f5232 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Models/PSVirtualMachineExtensionImageDetails.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Models/LocationStringExtensions.cs @@ -12,25 +12,29 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using Microsoft.Azure.Management.Compute.Models; -using System; -using System.Collections.Generic; -using System.Linq; +using System.Text; namespace Microsoft.Azure.Commands.Compute.Models { - public class PSVirtualMachineExtensionImageDetails : PSVirtualMachineExtensionImage + public static class LocationStringExtension { - public string Name { get; set; } - - public string HandlerSchema { get; set; } + public static string Canonicalize(this string location) + { + if (!string.IsNullOrEmpty(location)) + { + StringBuilder sb = new StringBuilder(); + foreach (char ch in location) + { + if (!char.IsWhiteSpace(ch)) + { + sb.Append(ch); + } + } - public string OperatingSystem { get; set; } + location = sb.ToString().ToLower(); + } - public string ComputeRole { get; set; } - - public bool SupportsMultipleExtensions { get; set; } - - public bool VMScaleSetEnabled { get; set; } + return location; + } } -} +} \ No newline at end of file diff --git a/src/ResourceManager/Compute/Commands.Compute/Models/PSAdditionalUnattendContent.cs b/src/ResourceManager/Compute/Commands.Compute/Models/PSAdditionalUnattendContent.cs deleted file mode 100644 index 0f6cc70e5fe8..000000000000 --- a/src/ResourceManager/Compute/Commands.Compute/Models/PSAdditionalUnattendContent.cs +++ /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. -// ---------------------------------------------------------------------------------- - -using Microsoft.Azure.Management.Compute.Models; - -namespace Microsoft.Azure.Commands.Compute.Models -{ - public class PSAdditionalUnattendContent - { - public string ComponentName { get; set; } - - public string Content { get; set; } - - public string PassName { get; set; } - - public string SettingName { get; set; } - } - - public static class PSAdditionalUnattendContentConversions - { - public static PSAdditionalUnattendContent ToPSAdditionalUnattendContent(this AdditionalUnattendContent auc) - { - if (auc == null) - { - return null; - } - - var result = new PSAdditionalUnattendContent - { - ComponentName = auc.ComponentName, - Content = auc.Content, - PassName = auc.PassName, - SettingName = auc.SettingName, - }; - - return result; - } - - public static AdditionalUnattendContent ToAdditionalUnattendContent(this PSAdditionalUnattendContent psauc) - { - if (psauc == null) - { - return null; - } - - var result = new AdditionalUnattendContent - { - ComponentName = psauc.ComponentName, - Content = psauc.Content, - PassName = psauc.PassName, - SettingName = psauc.SettingName, - }; - - return result; - } - } -} diff --git a/src/ResourceManager/Compute/Commands.Compute/Models/PSAvailabilitySet.cs b/src/ResourceManager/Compute/Commands.Compute/Models/PSAvailabilitySet.cs index 341efccc6236..052450fa82a3 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Models/PSAvailabilitySet.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Models/PSAvailabilitySet.cs @@ -1,4 +1,4 @@ -// ---------------------------------------------------------------------------------- +// ---------------------------------------------------------------------------------- // // Copyright Microsoft Corporation // Licensed under the Apache License, Version 2.0 (the "License"); @@ -13,75 +13,48 @@ // ---------------------------------------------------------------------------------- using Microsoft.Azure.Management.Compute.Models; +using Newtonsoft.Json; using System.Collections.Generic; namespace Microsoft.Azure.Commands.Compute.Models { public class PSAvailabilitySet { - public string ResourceGroupName { get; set; } - - public string Name { get; set; } + public string Id { get; set; } public string Location { get; set; } - public string Etag { get; set; } + public string Name { get; set; } - public string Id { get; set; } + public int? PlatformFaultDomainCount { get; set; } public int? PlatformUpdateDomainCount { get; set; } - public int? PlatformFaultDomainCount { get; set; } - public IList<InstanceViewStatus> Statuses { get; set; } - public IList<VirtualMachineReference> VirtualMachines { get; set; } - } - - public static class PSAvailabilitySetConversions - { - public static PSAvailabilitySet ToPSAvailabilitySet(this AvailabilitySetGetResponse response, string rgName = null) + [JsonIgnore] + public string StatusesText { - if (response == null) - { - return null; - } - - return response.AvailabilitySet.ToPSAvailabilitySet(rgName); + get { return JsonConvert.SerializeObject(Statuses, Formatting.Indented); } } - public static PSAvailabilitySet ToPSAvailabilitySet(this AvailabilitySet avSet, string rgName = null) - { - PSAvailabilitySet result = new PSAvailabilitySet - { - ResourceGroupName = rgName, - Name = avSet == null ? null : avSet.Name, - Etag = null, // TODO: Update CRP library for this field - Id = avSet.Id, - Location = avSet.Location, - Statuses = avSet.Statuses, - PlatformFaultDomainCount = avSet == null ? null : avSet.PlatformFaultDomainCount, - PlatformUpdateDomainCount = avSet == null ? null : avSet.PlatformUpdateDomainCount, - VirtualMachines = avSet == null ? null : avSet.VirtualMachinesReferences - }; + public IDictionary<string, string> Tags { get; set; } - return result; + [JsonIgnore] + public string TagsText + { + get { return JsonConvert.SerializeObject(Tags, Formatting.Indented); } } - public static List<PSAvailabilitySet> ToPSAvailabilitySetList(this AvailabilitySetListResponse response, string rgName = null) - { - List<PSAvailabilitySet> results = new List<PSAvailabilitySet>(); + public string Type { get; set; } - if (response != null && response.AvailabilitySets != null) - { - foreach (var item in response.AvailabilitySets) - { - var vm = item.ToPSAvailabilitySet(rgName); - results.Add(vm); - } - } + public IList<VirtualMachineReference> VirtualMachinesReferences { get; set; } - return results; + [JsonIgnore] + public string VirtualMachinesReferencesText + { + get { return JsonConvert.SerializeObject(VirtualMachinesReferences, Formatting.Indented); } } } } + diff --git a/src/ResourceManager/Compute/Commands.Compute/Models/PSSshPublicKey.cs b/src/ResourceManager/Compute/Commands.Compute/Models/PSSshPublicKey.cs deleted file mode 100644 index 5b1b918bbfc4..000000000000 --- a/src/ResourceManager/Compute/Commands.Compute/Models/PSSshPublicKey.cs +++ /dev/null @@ -1,61 +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 Microsoft.Azure.Management.Compute.Models; - -namespace Microsoft.Azure.Commands.Compute.Models -{ - public class PSSshPublicKey - { - public string KeyData { get; set; } - - public string Path { get; set; } - } - - public static class PSSshPublicKeyConversions - { - - public static PSSshPublicKey ToPSSshPublicKey(this SshPublicKey spk) - { - if (spk == null) - { - return null; - } - - var result = new PSSshPublicKey - { - KeyData = spk.KeyData, - Path = spk.Path, - }; - - return result; - } - public static SshPublicKey ToSshPublicKey(this PSSshPublicKey psspk) - { - if (psspk == null) - { - return null; - } - - var result = new SshPublicKey - { - KeyData = psspk.KeyData, - Path = psspk.Path, - }; - - return result; - } - - } -} diff --git a/src/ResourceManager/Compute/Commands.Compute/Models/PSUsage.cs b/src/ResourceManager/Compute/Commands.Compute/Models/PSUsage.cs new file mode 100644 index 000000000000..1a26ce1158c6 --- /dev/null +++ b/src/ResourceManager/Compute/Commands.Compute/Models/PSUsage.cs @@ -0,0 +1,44 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Management.Compute.Models; +using Newtonsoft.Json; +using System.Collections.Generic; + +namespace Microsoft.Azure.Commands.Compute.Models +{ + public class PSUsage + { + public int CurrentValue { get; set; } + + public uint Limit { get; set; } + + public UsageName Name { get; set; } + + [JsonIgnore] + public string NameText + { + get { return JsonConvert.SerializeObject(Name, Formatting.Indented); } + } + + public UsageUnit Unit { get; set; } + + [JsonIgnore] + public string UnitText + { + get { return JsonConvert.SerializeObject(Unit, Formatting.Indented); } + } + } +} + diff --git a/src/ResourceManager/Compute/Commands.Compute/Models/PSVaultCertificate.cs b/src/ResourceManager/Compute/Commands.Compute/Models/PSVaultCertificate.cs deleted file mode 100644 index 0dc76ed51951..000000000000 --- a/src/ResourceManager/Compute/Commands.Compute/Models/PSVaultCertificate.cs +++ /dev/null @@ -1,61 +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 Microsoft.Azure.Management.Compute.Models; - -namespace Microsoft.Azure.Commands.Compute.Models -{ - public class PSVaultCertificate - { - public string CertificateStore { get; set; } - - public string CertificateUrl { get; set; } - } - - public static class PSVaultCertificateConversions - { - - public static PSVaultCertificate ToPSVaultCertificate(this VaultCertificate vc) - { - if (vc == null) - { - return null; - } - - var result = new PSVaultCertificate - { - CertificateStore = vc.CertificateStore, - CertificateUrl = vc.CertificateUrl, - }; - - return result; - } - - public static VaultCertificate ToVaultCertificate(this PSVaultCertificate psvc) - { - if (psvc == null) - { - return null; - } - - var result = new VaultCertificate - { - CertificateStore = psvc.CertificateStore, - CertificateUrl = psvc.CertificateUrl, - }; - - return result; - } - } -} diff --git a/src/ResourceManager/Compute/Commands.Compute/Models/PSVaultSecretGroup.cs b/src/ResourceManager/Compute/Commands.Compute/Models/PSVaultSecretGroup.cs deleted file mode 100644 index 1f86caf58ea1..000000000000 --- a/src/ResourceManager/Compute/Commands.Compute/Models/PSVaultSecretGroup.cs +++ /dev/null @@ -1,67 +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 Microsoft.Azure.Management.Compute.Models; -using System.Collections.Generic; - -namespace Microsoft.Azure.Commands.Compute.Models -{ - public class PSVaultSecretGroup - { - public SourceVaultReference SourceVault { get; set; } - - public List<PSVaultCertificate> VaultCertificates { get; set; } - } - - public static class PSVaultSecretGroupConversions - { - public static PSVaultSecretGroup ToPSVaultSecretGroup(this VaultSecretGroup vsg) - { - if (vsg == null) - { - return null; - } - - var vaultCerts = new List<PSVaultCertificate>(); - foreach(var vc in vsg.VaultCertificates) - { - vaultCerts.Add(vc.ToPSVaultCertificate()); - } - - var result = new PSVaultSecretGroup - { - SourceVault = vsg.SourceVault, - VaultCertificates = vaultCerts, - }; - - return result; - } - - public static VaultSecretGroup ToVaultSecretGroup(this PSVaultSecretGroup psvsg) - { - if (psvsg == null) - { - return null; - } - - var result = new VaultSecretGroup - { - SourceVault = psvsg.SourceVault, - VaultCertificates = psvsg.VaultCertificates.ConvertAll<VaultCertificate>(e => e.ToVaultCertificate()), - }; - - return result; - } - } -} diff --git a/src/ResourceManager/Compute/Commands.Compute/Models/PSVirtualMachine.cs b/src/ResourceManager/Compute/Commands.Compute/Models/PSVirtualMachine.cs index d7bf8a05712c..58bd8d640cc2 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Models/PSVirtualMachine.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Models/PSVirtualMachine.cs @@ -1,4 +1,4 @@ -// ---------------------------------------------------------------------------------- +// ---------------------------------------------------------------------------------- // // Copyright Microsoft Corporation // Licensed under the Apache License, Version 2.0 (the "License"); @@ -13,168 +13,94 @@ // ---------------------------------------------------------------------------------- using Microsoft.Azure.Management.Compute.Models; -using System; +using Newtonsoft.Json; using System.Collections.Generic; -using System.Linq; namespace Microsoft.Azure.Commands.Compute.Models { public class PSVirtualMachine { - public string ResourceGroupName { get; set; } - - public string Name { get; set; } - - public string Location { get; set; } + public AvailabilitySetReference AvailabilitySetReference { get; set; } - public string VMSize + [JsonIgnore] + public string AvailabilitySetReferenceText { - get - { - if (this.HardwareProfile != null) - { - return this.HardwareProfile.VirtualMachineSize; - } - - return null; - } + get { return JsonConvert.SerializeObject(AvailabilitySetReference, Formatting.Indented); } } - public IDictionary<string, string> Tags { get; set; } - public string AvailabilitySetId { get; set; } - public string ProvisioningState { get; set; } + public IList<VirtualMachineExtension> Extensions { get; set; } - public string OSConfiguration + [JsonIgnore] + public string ExtensionsText { - get - { - if (this.StorageProfile != null && this.StorageProfile.OSDisk != null) - { - return this.StorageProfile.OSDisk.OperatingSystemType; - } - - return null; - } + get { return JsonConvert.SerializeObject(Extensions, Formatting.Indented); } } - public string SourceImageId + public HardwareProfile HardwareProfile { get; set; } + + [JsonIgnore] + public string HardwareProfileText { - get - { - if (this.StorageProfile != null && this.StorageProfile.SourceImage != null) - { - return this.StorageProfile.SourceImage.ReferenceUri; - } - - return null; - } + get { return JsonConvert.SerializeObject(HardwareProfile, Formatting.Indented); } } - public string OSDisk + public string Id { get; set; } + + public VirtualMachineInstanceView InstanceView { get; set; } + + [JsonIgnore] + public string InstanceViewText { - get - { - if (this.StorageProfile != null && this.StorageProfile.OSDisk != null) - { - return this.StorageProfile.OSDisk.Name; - } - - return string.Empty; - } + get { return JsonConvert.SerializeObject(InstanceView, Formatting.Indented); } } - public IList<DataDisk> DataDisks + public string Location { get; set; } + + public string Name { get; set; } + + public NetworkProfile NetworkProfile { get; set; } + + [JsonIgnore] + public string NetworkProfileText { - get - { - if (this.StorageProfile != null && this.StorageProfile.DataDisks != null) - { - return this.StorageProfile.DataDisks; - } - - return null; - } + get { return JsonConvert.SerializeObject(NetworkProfile, Formatting.Indented); } } - public IList<string> NetworkInterfaces + public OSProfile OSProfile { get; set; } + + [JsonIgnore] + public string OSProfileText { - get - { - if (this.NetworkProfile != null && this.NetworkProfile.NetworkInterfaces != null) - { - return this.NetworkProfile.NetworkInterfaces.Select(t => t.ReferenceUri).ToList(); - } - - return null; - } + get { return JsonConvert.SerializeObject(OSProfile, Formatting.Indented); } } - public IList<VirtualMachineExtension> Extensions { get; set; } + public Plan Plan { get; set; } - public VirtualMachineInstanceView Status { get; set; } - - public HardwareProfile HardwareProfile { get; set; } + [JsonIgnore] + public string PlanText + { + get { return JsonConvert.SerializeObject(Plan, Formatting.Indented); } + } - public NetworkProfile NetworkProfile { get; set; } - - public OSProfile OSProfile { get; set; } + public string ProvisioningState { get; set; } public StorageProfile StorageProfile { get; set; } - } - public static class PSVirtualMachineConversions - { - public static PSVirtualMachine ToPSVirtualMachine(this VirtualMachineGetResponse response, string rgName = null) + [JsonIgnore] + public string StorageProfileText { - if (response == null) - { - return null; - } - - return response.VirtualMachine.ToPSVirtualMachine(rgName); + get { return JsonConvert.SerializeObject(StorageProfile, Formatting.Indented); } } - public static PSVirtualMachine ToPSVirtualMachine(this VirtualMachine virtualMachine, string rgName = null) - { - PSVirtualMachine result = new PSVirtualMachine - { - ResourceGroupName = rgName, - Name = virtualMachine == null ? null : virtualMachine.Name, - Location = virtualMachine == null ? null : virtualMachine.Location, - ProvisioningState = virtualMachine.ProvisioningState, - Tags = virtualMachine.Tags, - Extensions = virtualMachine.Extensions, - Status = null, // TODO: VM response does not return Status info yet - }; - - var asetRef = virtualMachine.AvailabilitySetReference; - if (asetRef != null) - { - result.AvailabilitySetId = virtualMachine.AvailabilitySetReference.ReferenceUri; - } - - result.OSProfile = virtualMachine.OSProfile; - result.HardwareProfile = virtualMachine.HardwareProfile; - result.StorageProfile = virtualMachine.StorageProfile; - result.NetworkProfile = virtualMachine.NetworkProfile; - - return result; - } + public IDictionary<string, string> Tags { get; set; } - public static List<PSVirtualMachine> ToPSVirtualMachineList(this VirtualMachineListResponse response, string rgName = null) + [JsonIgnore] + public string TagsText { - List<PSVirtualMachine> results = new List<PSVirtualMachine>(); - - if (response != null && response.VirtualMachines != null) - { - foreach (var item in response.VirtualMachines) - { - var vm = item.ToPSVirtualMachine(rgName); - results.Add(vm); - } - } - - return results; + get { return JsonConvert.SerializeObject(Tags, Formatting.Indented); } } + + public string Type { get; set; } } } + diff --git a/src/ResourceManager/Compute/Commands.Compute/Models/PSVirtualMachineExtensionImage.cs b/src/ResourceManager/Compute/Commands.Compute/Models/PSVirtualMachineExtensionImage.cs index 575a748e1f60..590267ee958f 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Models/PSVirtualMachineExtensionImage.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Models/PSVirtualMachineExtensionImage.cs @@ -12,11 +12,6 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using Microsoft.Azure.Management.Compute.Models; -using System; -using System.Collections.Generic; -using System.Linq; - namespace Microsoft.Azure.Commands.Compute.Models { public class PSVirtualMachineExtensionImage : PSOperationContext @@ -33,4 +28,19 @@ public class PSVirtualMachineExtensionImage : PSOperationContext public string FilterExpression { get; set; } } + + public class PSVirtualMachineExtensionImageDetails : PSVirtualMachineExtensionImage + { + public string Name { get; set; } + + public string HandlerSchema { get; set; } + + public string OperatingSystem { get; set; } + + public string ComputeRole { get; set; } + + public bool SupportsMultipleExtensions { get; set; } + + public bool VMScaleSetEnabled { get; set; } + } } diff --git a/src/ResourceManager/Compute/Commands.Compute/Models/PSVirtualMachineImage.cs b/src/ResourceManager/Compute/Commands.Compute/Models/PSVirtualMachineImage.cs index fd12c57dd1f6..04264390b164 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Models/PSVirtualMachineImage.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Models/PSVirtualMachineImage.cs @@ -13,26 +13,48 @@ // ---------------------------------------------------------------------------------- using Microsoft.Azure.Management.Compute.Models; -using System; using System.Collections.Generic; -using System.Linq; namespace Microsoft.Azure.Commands.Compute.Models { - public class PSVirtualMachineImage : PSOperationContext + public class PSVirtualMachineImageBase : PSOperationContext { public string Id { get; set; } public string Location { get; set; } + } + + public class PSVirtualMachineImagePublisher : PSVirtualMachineImageBase + { public string PublisherName { get; set; } + } + public class PSVirtualMachineImageOffer : PSVirtualMachineImagePublisher + { public string Offer { get; set; } + } + public class PSVirtualMachineImageSku : PSVirtualMachineImageOffer + { public string Skus { get; set; } + } + public class PSVirtualMachineImage : PSVirtualMachineImageSku + { public string Version { get; set; } public string FilterExpression { get; set; } } + + public class PSVirtualMachineImageDetail : PSVirtualMachineImage + { + public string Name { get; set; } + + public OSDiskImage OSDiskImage { get; set; } + + public PurchasePlan PurchasePlan { get; set; } + + public IList<DataDiskImage> DataDiskImages { get; set; } + } } diff --git a/src/ResourceManager/Compute/Commands.Compute/Models/PSVirtualMachineInstanceView.cs b/src/ResourceManager/Compute/Commands.Compute/Models/PSVirtualMachineInstanceView.cs index 03b9533b80f3..ebfccebda461 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Models/PSVirtualMachineInstanceView.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Models/PSVirtualMachineInstanceView.cs @@ -30,6 +30,7 @@ public class PSVirtualMachineInstanceView public IList<VirtualMachineExtensionInstanceView> Extensions { get; set; } public int? PlatformFaultDomain { get; set; } + public int? PlatformUpdateDomain { get; set; } public string RemoteDesktopThumbprint { get; set; } diff --git a/src/ResourceManager/Compute/Commands.Compute/Models/PSVirtualMachineImageDetails.cs b/src/ResourceManager/Compute/Commands.Compute/Models/PSVirtualMachineSize.cs similarity index 68% rename from src/ResourceManager/Compute/Commands.Compute/Models/PSVirtualMachineImageDetails.cs rename to src/ResourceManager/Compute/Commands.Compute/Models/PSVirtualMachineSize.cs index bcef3d657a68..cf0c356b51c7 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Models/PSVirtualMachineImageDetails.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Models/PSVirtualMachineSize.cs @@ -1,4 +1,4 @@ -// ---------------------------------------------------------------------------------- +// ---------------------------------------------------------------------------------- // // Copyright Microsoft Corporation // Licensed under the Apache License, Version 2.0 (the "License"); @@ -13,20 +13,24 @@ // ---------------------------------------------------------------------------------- using Microsoft.Azure.Management.Compute.Models; -using System; +using Newtonsoft.Json; using System.Collections.Generic; -using System.Linq; namespace Microsoft.Azure.Commands.Compute.Models { - public class PSVirtualMachineImageDetails : PSVirtualMachineImage + public class PSVirtualMachineSize { + public int? MaxDataDiskCount { get; set; } + + public int MemoryInMB { get; set; } + public string Name { get; set; } - public OSDiskImage OSDiskImage { get; set; } + public int NumberOfCores { get; set; } - public PurchasePlan PurchasePlan { get; set; } + public int OSDiskSizeInMB { get; set; } - public IList<DataDiskImage> DataDiskImages { get; set; } + public int ResourceDiskSizeInMB { get; set; } } } + diff --git a/src/ResourceManager/Compute/Commands.Compute/Properties/Resources.Designer.cs b/src/ResourceManager/Compute/Commands.Compute/Properties/Resources.Designer.cs index a859c0088ca8..c7605bac79fa 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Properties/Resources.Designer.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Properties/Resources.Designer.cs @@ -59,7 +59,16 @@ internal Resources() { resourceCulture = value; } } - + + /// <summary> + /// Looks up a localized string similar to Cannot specify both Windows and Linux configurations.. + /// </summary> + public static string BothWindowsAndLinuxConfigurationsSpecified { + get { + return ResourceManager.GetString("BothWindowsAndLinuxConfigurationsSpecified", resourceCulture); + } + } + /// <summary> /// Looks up a localized string similar to No Run File has been assigned, and the Custom Script extension will try to use the first specified File Name as the Run File.. /// </summary> @@ -87,6 +96,33 @@ public static string VirtualMachineExtensionRemovalConfirmation { } } + /// <summary> + /// Looks up a localized string similar to The RDP file cannot be generated because the network interface of the virtual machine does not reference a PublicIP or an InboundNatRule of a public load balancer. . + /// </summary> + public static string VirtualMachineNotAssociatedWithPublicIPOrPublicLoadBalancer { + get { + return ResourceManager.GetString("VirtualMachineNotAssociatedWithPublicIPOrPublicLoadBalancer", resourceCulture); + } + } + + /// <summary> + /// Looks up a localized string similar to The RDP file cannot be generated because the network interface of the virtual machine does not reference an InboundNatRule of a public load balancer.. + /// </summary> + public static string VirtualMachineNotAssociatedWithPublicLoadBalancer { + get { + return ResourceManager.GetString("VirtualMachineNotAssociatedWithPublicLoadBalancer", resourceCulture); + } + } + + /// <summary> + /// Looks up a localized string similar to The RDP file cannot be generated because the network interface of the virtual machine does not reference a PublicIP or an InboungNatRule of the load balancer.. + /// </summary> + public static string VirtualMachineReferencesInternalNetworkInterface { + get { + return ResourceManager.GetString("VirtualMachineReferencesInternalNetworkInterface", resourceCulture); + } + } + /// <summary> /// Looks up a localized string similar to Virtual machine removal operation. /// </summary> diff --git a/src/ResourceManager/Compute/Commands.Compute/Properties/Resources.resx b/src/ResourceManager/Compute/Commands.Compute/Properties/Resources.resx index 7ff9dcb19b71..c14a2af5faf2 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Properties/Resources.resx +++ b/src/ResourceManager/Compute/Commands.Compute/Properties/Resources.resx @@ -117,6 +117,9 @@ <resheader name="writer"> <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> + <data name="BothWindowsAndLinuxConfigurationsSpecified" xml:space="preserve"> + <value>Cannot specify both Windows and Linux configurations.</value> + </data> <data name="CustomScriptExtensionTryToUseTheFirstSpecifiedFileAsRunScript" xml:space="preserve"> <value>No Run File has been assigned, and the Custom Script extension will try to use the first specified File Name as the Run File.</value> </data> @@ -126,6 +129,15 @@ <data name="VirtualMachineExtensionRemovalConfirmation" xml:space="preserve"> <value>This cmdlet will remove the specified virtual machine extension. Do you want to continue?</value> </data> + <data name="VirtualMachineNotAssociatedWithPublicIPOrPublicLoadBalancer" xml:space="preserve"> + <value>The RDP file cannot be generated because the network interface of the virtual machine does not reference a PublicIP or an InboundNatRule of a public load balancer. </value> + </data> + <data name="VirtualMachineNotAssociatedWithPublicLoadBalancer" xml:space="preserve"> + <value>The RDP file cannot be generated because the network interface of the virtual machine does not reference an InboundNatRule of a public load balancer.</value> + </data> + <data name="VirtualMachineReferencesInternalNetworkInterface" xml:space="preserve"> + <value>The RDP file cannot be generated because the network interface of the virtual machine does not reference a PublicIP or an InboungNatRule of the load balancer.</value> + </data> <data name="VirtualMachineRemovalCaption" xml:space="preserve"> <value>Virtual machine removal operation</value> </data> diff --git a/src/ResourceManager/Compute/Commands.Compute/RemoteDesktop/GetAzureRemoteDesktopFileCommand.cs b/src/ResourceManager/Compute/Commands.Compute/RemoteDesktop/GetAzureRemoteDesktopFileCommand.cs new file mode 100644 index 000000000000..ccd558f2cd99 --- /dev/null +++ b/src/ResourceManager/Compute/Commands.Compute/RemoteDesktop/GetAzureRemoteDesktopFileCommand.cs @@ -0,0 +1,182 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.IO; +using System.Linq; +using System.Management.Automation; +using Microsoft.Azure.Commands.Compute.Common; +using Microsoft.Azure.Management.Compute; +using Microsoft.Azure.Management.Network; + +namespace Microsoft.Azure.Commands.Compute +{ + [Cmdlet(VerbsCommon.Get, ProfileNouns.RemoteDesktopFile)] + public class GetAzureRemoteDesktopFileCommand : VirtualMachineRemoteDesktopBaseCmdlet + { + [Parameter( + Mandatory = true, + Position = 0, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The resource group name.")] + [ValidateNotNullOrEmpty] + public override string ResourceGroupName { get; set; } + + [Alias("ResourceName", "VMName")] + [Parameter( + Mandatory = true, + Position = 1, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The resource name.")] + [ValidateNotNullOrEmpty] + public override string Name { get; set; } + + [Parameter( + Mandatory = true, + Position = 2, + ValueFromPipelineByPropertyName = true, + HelpMessage = "Path and name of the output RDP file.")] + [ValidateNotNullOrEmpty] + public string LocalPath { get; set;} + + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + + const string fullAddressPrefix = "full address:s:"; + const string promptCredentials = "prompt for credentials:i:1"; + const int defaultPort = 3389; + + string address = string.Empty; + int port = defaultPort; + + // Get Azure VM + var vmResponse = this.VirtualMachineClient.Get(this.ResourceGroupName, this.Name); + + // Get the NIC + var nicResourceGroupName = + this.GetResourceGroupName(vmResponse.VirtualMachine.NetworkProfile.NetworkInterfaces.First().ReferenceUri); + + var nicName = + this.GetResourceName( + vmResponse.VirtualMachine.NetworkProfile.NetworkInterfaces.First().ReferenceUri, "networkInterfaces"); + + var nicResponse = + this.NetworkClient.NetworkResourceProviderClient.NetworkInterfaces.Get(nicResourceGroupName, nicName); + + if (nicResponse.NetworkInterface.IpConfigurations.First().PublicIpAddress != null && !string.IsNullOrEmpty(nicResponse.NetworkInterface.IpConfigurations.First().PublicIpAddress.Id)) + { + // Get PublicIPAddress resource if present + address = this.GetAddressFromPublicIPResource(nicResponse.NetworkInterface.IpConfigurations.First().PublicIpAddress.Id); + } + else if (nicResponse.NetworkInterface.IpConfigurations.First().LoadBalancerInboundNatRules.Any()) + { + address = string.Empty; + + // Get ipaddress and port from loadbalancer + foreach (var nicRuleRef in nicResponse.NetworkInterface.IpConfigurations.First().LoadBalancerInboundNatRules) + { + var lbName = this.GetResourceName(nicRuleRef.Id, "loadBalancers"); + var lbResourceGroupName = this.GetResourceGroupName(nicRuleRef.Id); + + var loadbalancer = + this.NetworkClient.NetworkResourceProviderClient.LoadBalancers.Get(lbResourceGroupName, lbName).LoadBalancer; + + // Iterate over the InboundNatRules where Backendport = 3389 + var inboundRule = + loadbalancer.InboundNatRules.Where( + rule => + rule.BackendPort == defaultPort + && string.Equals( + rule.Id, + nicRuleRef.Id, + StringComparison.OrdinalIgnoreCase)); + + if (inboundRule.Any()) + { + port = inboundRule.First().FrontendPort; + + // Get the corresponding frontendIPConfig -> publicIPAddress + var frontendIPConfig = + loadbalancer.FrontendIpConfigurations.First( + frontend => + string.Equals( + inboundRule.First().FrontendIPConfiguration.Id, + frontend.Id, + StringComparison.OrdinalIgnoreCase)); + + if (frontendIPConfig.PublicIpAddress != null) + { + address = this.GetAddressFromPublicIPResource(frontendIPConfig.PublicIpAddress.Id); + break; + } + } + } + + if (string.IsNullOrEmpty(address)) + { + throw new ArgumentException(Properties.Resources.VirtualMachineNotAssociatedWithPublicLoadBalancer); + } + } + else + { + throw new ArgumentException(Properties.Resources.VirtualMachineNotAssociatedWithPublicIPOrPublicLoadBalancer); + } + + // Write to file + using (var file = new StreamWriter(this.LocalPath)) + { + file.WriteLine(fullAddressPrefix + address + ":" + port); + file.WriteLine(promptCredentials); + } + } + + private string GetAddressFromPublicIPResource(string resourceId) + { + string address = string.Empty; + + // Get IpAddress from public IPAddress resource + var publicIPResourceGroupName = this.GetResourceGroupName(resourceId); + var publicIPName = this.GetResourceName(resourceId, "publicIPAddresses"); + + var publicIpResponse = + this.NetworkClient.NetworkResourceProviderClient.PublicIpAddresses.Get( + publicIPResourceGroupName, + publicIPName); + + + // Use the FQDN if present + if (publicIpResponse.PublicIpAddress.DnsSettings != null + && !string.IsNullOrEmpty(publicIpResponse.PublicIpAddress.DnsSettings.Fqdn)) + { + address = publicIpResponse.PublicIpAddress.DnsSettings.Fqdn; + } + else + { + address = publicIpResponse.PublicIpAddress.IpAddress; + } + + return address; + } + private string GetResourceGroupName(string resourceId) + { + return resourceId.Split('/')[4]; + } + + private string GetResourceName(string resourceId, string resource) + { + return resourceId.Split('/')[8]; + } + } +} diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/TestVirtualMachineSizeAndUsage.cs b/src/ResourceManager/Compute/Commands.Compute/RemoteDesktop/VirtualMachineRemoteDesktopBaseCmdlet.cs similarity index 51% rename from src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/TestVirtualMachineSizeAndUsage.cs rename to src/ResourceManager/Compute/Commands.Compute/RemoteDesktop/VirtualMachineRemoteDesktopBaseCmdlet.cs index 5a44b5a55683..b7d17427a7ef 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/TestVirtualMachineSizeAndUsage.cs +++ b/src/ResourceManager/Compute/Commands.Compute/RemoteDesktop/VirtualMachineRemoteDesktopBaseCmdlet.cs @@ -12,18 +12,32 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using Microsoft.WindowsAzure.Commands.ScenarioTest; -using Xunit; +using Microsoft.Azure.Commands.Network; -namespace Microsoft.Azure.Commands.Compute.Test.ScenarioTests +namespace Microsoft.Azure.Commands.Compute { - public partial class VirtualMachineTests + public class VirtualMachineRemoteDesktopBaseCmdlet : VirtualMachineBaseCmdlet { - [Fact] - [Trait(Category.AcceptanceType, Category.CheckIn)] - public void TestVirtualMachineSizeAndUsage() + + private NetworkClient networkClient; + + public NetworkClient NetworkClient { - ComputeTestController.NewInstance.RunPsTest("Test-VirtualMachineSizeAndUsage"); + get + { + if (networkClient == null) + { + networkClient = new NetworkClient(Profile) + { + VerboseLogger = WriteVerboseWithTimestamp, + ErrorLogger = WriteErrorWithTimestamp, + WarningLogger = WriteWarningWithTimestamp + }; + } + return networkClient; + } + + set { networkClient = value; } } } } diff --git a/src/ResourceManager/Compute/Commands.Compute/Usage/GetAzureVMUsageCommand.cs b/src/ResourceManager/Compute/Commands.Compute/Usage/GetAzureVMUsageCommand.cs index 88f921e9a92f..40fa98b95706 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Usage/GetAzureVMUsageCommand.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Usage/GetAzureVMUsageCommand.cs @@ -12,15 +12,18 @@ // limitations under the License. // ---------------------------------------------------------------------------------- +using AutoMapper; using Microsoft.Azure.Commands.Compute.Common; +using Microsoft.Azure.Commands.Compute.Models; using Microsoft.Azure.Management.Compute; using Microsoft.Azure.Management.Compute.Models; +using System.Collections.Generic; using System.Management.Automation; namespace Microsoft.Azure.Commands.Compute { [Cmdlet(VerbsCommon.Get, ProfileNouns.VirtualMachineUsage)] - [OutputType(typeof(ListUsagesResponse))] + [OutputType(typeof(PSUsage))] public class GetAzureVMUsageCommand : VirtualMachineUsageBaseCmdlet { [Parameter( @@ -35,8 +38,16 @@ public override void ExecuteCmdlet() { base.ExecuteCmdlet(); - ListUsagesResponse result = this.UsageClient.List(this.Location); - WriteObject(result); + ListUsagesResponse result = this.UsageClient.List(this.Location.Canonicalize()); + + List<PSUsage> psResultList = new List<PSUsage>(); + foreach (var item in result.Usages) + { + var psItem = Mapper.Map<PSUsage>(item); + psResultList.Add(psItem); + } + + WriteObject(psResultList, true); } } } diff --git a/src/ResourceManager/Compute/Commands.Compute/Usage/VirtualMachineUsageBaseCmdlet.cs b/src/ResourceManager/Compute/Commands.Compute/Usage/VirtualMachineUsageBaseCmdlet.cs index 6eafa554108e..91e2a6f64356 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Usage/VirtualMachineUsageBaseCmdlet.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Usage/VirtualMachineUsageBaseCmdlet.cs @@ -13,33 +13,11 @@ // ---------------------------------------------------------------------------------- using Microsoft.Azure.Management.Compute; -using Microsoft.WindowsAzure.Commands.Utilities.Common; namespace Microsoft.Azure.Commands.Compute { - public abstract class VirtualMachineUsageBaseCmdlet : AzurePSCmdlet + public abstract class VirtualMachineUsageBaseCmdlet : ComputeClientBaseCmdlet { - private ComputeClient computeClient; - - public ComputeClient ComputeClient - { - get - { - if (computeClient == null) - { - computeClient = new ComputeClient(Profile.Context) - { - VerboseLogger = WriteVerboseWithTimestamp, - ErrorLogger = WriteErrorWithTimestamp - }; - } - - return computeClient; - } - - set { computeClient = value; } - } - public IUsageOperations UsageClient { get @@ -47,10 +25,5 @@ public IUsageOperations UsageClient return ComputeClient.ComputeManagementClient.Usage; } } - - public override void ExecuteCmdlet() - { - base.ExecuteCmdlet(); - } } } diff --git a/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Action/SaveAzureVMImageCommand.cs b/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Action/SaveAzureVMImageCommand.cs index f16ec44785cc..9e93f840cc4a 100644 --- a/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Action/SaveAzureVMImageCommand.cs +++ b/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Action/SaveAzureVMImageCommand.cs @@ -23,6 +23,8 @@ namespace Microsoft.Azure.Commands.Compute [OutputType(typeof(ComputeLongRunningOperationResponse))] public class SaveAzureVMImageCommand : VirtualMachineBaseCmdlet { + public override string Name { get; set; } + [Parameter( Mandatory = true, Position = 0, @@ -37,7 +39,7 @@ public class SaveAzureVMImageCommand : VirtualMachineBaseCmdlet ValueFromPipelineByPropertyName = true, HelpMessage = "The virtual machine name.")] [ValidateNotNullOrEmpty] - public override string Name { get; set; } + public string VMName { get; set; } [Parameter( Mandatory = true, @@ -47,21 +49,22 @@ public class SaveAzureVMImageCommand : VirtualMachineBaseCmdlet [ValidateNotNullOrEmpty] public string DestinationContainerName { get; set; } + [Alias("VirtualHardDiskNamePrefix")] [Parameter( Mandatory = true, Position = 3, ValueFromPipelineByPropertyName = true, - HelpMessage = "To Overwrite.")] + HelpMessage = "The Virtual Hard Disk Name Prefix.")] [ValidateNotNullOrEmpty] - public bool Overwrite { get; set; } + public string VHDNamePrefix { get; set; } [Parameter( - Mandatory = true, Position = 4, ValueFromPipelineByPropertyName = true, - HelpMessage = "The Virtual Hard Disk Name Prefix.")] + HelpMessage = "To Overwrite.")] [ValidateNotNullOrEmpty] - public string VirtualHardDiskNamePrefix { get; set; } + public SwitchParameter Overwrite { get; set; } + public override void ExecuteCmdlet() { @@ -70,13 +73,13 @@ public override void ExecuteCmdlet() var parameters = new VirtualMachineCaptureParameters { DestinationContainerName = DestinationContainerName, - Overwrite = Overwrite, - VirtualHardDiskNamePrefix = VirtualHardDiskNamePrefix + Overwrite = Overwrite.IsPresent, + VirtualHardDiskNamePrefix = VHDNamePrefix }; var op = this.VirtualMachineClient.Capture( this.ResourceGroupName, - this.Name, + this.VMName, parameters); WriteObject(op); diff --git a/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/NewAzureAdditionalUnattendContentCommand.cs b/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/AddAzureVMAdditionalUnattendContentCommand.cs similarity index 54% rename from src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/NewAzureAdditionalUnattendContentCommand.cs rename to src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/AddAzureVMAdditionalUnattendContentCommand.cs index 597f385b46d0..161375107a22 100644 --- a/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/NewAzureAdditionalUnattendContentCommand.cs +++ b/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/AddAzureVMAdditionalUnattendContentCommand.cs @@ -14,31 +14,36 @@ using Microsoft.Azure.Commands.Compute.Common; using Microsoft.Azure.Commands.Compute.Models; +using Microsoft.Azure.Management.Compute.Models; using Microsoft.WindowsAzure.Commands.Utilities.Common; +using System; +using System.Collections.Generic; using System.Management.Automation; namespace Microsoft.Azure.Commands.Compute { /// <summary> - /// Create Additional Unattend Content Object + /// Add an Additional Unattend Content Object to VM /// </summary> [Cmdlet( - VerbsCommon.New, + VerbsCommon.Add, ProfileNouns.AdditionalUnattendContent), OutputType( - typeof(PSAdditionalUnattendContent))] + typeof(PSVirtualMachine))] public class NewAzureAdditionalUnattendContentCommand : AzurePSCmdlet { private const string defaultComponentName = "Microsoft-Windows-Shell-Setup"; private const string defaultPassName = "oobeSystem"; + [Alias("VMProfile")] [Parameter( - DontShow = true, // Currently, the only allowable value is 'Microsoft-Windows-Shell-Setup'. + Mandatory = true, Position = 0, + ValueFromPipeline = true, ValueFromPipelineByPropertyName = true, - HelpMessage = "Component Name.")] + HelpMessage = HelpMessages.VMProfile)] [ValidateNotNullOrEmpty] - public string ComponentName { get; set; } + public PSVirtualMachine VM { get; set; } [Parameter( Position = 1, @@ -48,29 +53,43 @@ public class NewAzureAdditionalUnattendContentCommand : AzurePSCmdlet public string Content { get; set; } [Parameter( - DontShow = true, // Currently, the only allowable value is 'oobeSystem'. Position = 2, ValueFromPipelineByPropertyName = true, - HelpMessage = "Pass name")] - [ValidateNotNullOrEmpty] - public string PassName { get; set; } - - [Parameter( - Position = 3, - ValueFromPipelineByPropertyName = true, HelpMessage = "Setting Name.")] [ValidateNotNullOrEmpty] public string SettingName { get; set; } public override void ExecuteCmdlet() { - WriteObject(new PSAdditionalUnattendContent + if (this.VM.OSProfile == null) + { + this.VM.OSProfile = new OSProfile(); + } + + if (this.VM.OSProfile.WindowsConfiguration == null && this.VM.OSProfile.LinuxConfiguration == null) { - ComponentName = defaultComponentName, - Content = this.Content, - PassName = defaultPassName, - SettingName = this.SettingName, - }); + this.VM.OSProfile.WindowsConfiguration = new WindowsConfiguration(); + } + else if (this.VM.OSProfile.WindowsConfiguration == null && this.VM.OSProfile.LinuxConfiguration != null) + { + throw new ArgumentException(Properties.Resources.BothWindowsAndLinuxConfigurationsSpecified); + } + + if (this.VM.OSProfile.WindowsConfiguration.AdditionalUnattendContents == null) + { + this.VM.OSProfile.WindowsConfiguration.AdditionalUnattendContents = new List<AdditionalUnattendContent> (); + } + + this.VM.OSProfile.WindowsConfiguration.AdditionalUnattendContents.Add( + new AdditionalUnattendContent + { + ComponentName = defaultComponentName, + Content = this.Content, + PassName = defaultPassName, + SettingName = this.SettingName, + }); + + WriteObject(this.VM); } } } diff --git a/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/AddAzureVMNetworkInterfaceCommand.cs b/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/AddAzureVMNetworkInterfaceCommand.cs index a79c4bca4bc4..333daeb0075f 100644 --- a/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/AddAzureVMNetworkInterfaceCommand.cs +++ b/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/AddAzureVMNetworkInterfaceCommand.cs @@ -77,11 +77,20 @@ public override void ExecuteCmdlet() if (!this.Primary.IsPresent) { - networkProfile.NetworkInterfaces.Add( - new NetworkInterfaceReference + + networkProfile.NetworkInterfaces.Add(new NetworkInterfaceReference { ReferenceUri = this.Id, }); + + if (networkProfile.NetworkInterfaces.Count > 1) + { + // run through the entire list of networkInterfaces and if Primary is not set, set them to false + foreach (var nic in networkProfile.NetworkInterfaces) + { + nic.Primary = nic.Primary ?? false; + } + } } else { diff --git a/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/AddAzureVMSecretCommand.cs b/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/AddAzureVMSecretCommand.cs new file mode 100644 index 000000000000..1306297825c5 --- /dev/null +++ b/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/AddAzureVMSecretCommand.cs @@ -0,0 +1,128 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Commands.Compute.Common; +using Microsoft.Azure.Commands.Compute.Models; +using Microsoft.Azure.Management.Compute.Models; +using Microsoft.WindowsAzure.Commands.Utilities.Common; +using System; +using System.Collections.Generic; +using System.Management.Automation; + +namespace Microsoft.Azure.Commands.Compute +{ + /// <summary> + /// Add a Vault Secret Group object to VM + /// </summary> + [Cmdlet( + VerbsCommon.Add, + ProfileNouns.VaultSecretGroup), + OutputType( + typeof(PSVirtualMachine))] + public class NewAzureVaultSecretGroupCommand : AzurePSCmdlet + { + [Alias("VMProfile")] + [Parameter( + Mandatory = true, + Position = 0, + ValueFromPipeline = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = HelpMessages.VMProfile)] + [ValidateNotNullOrEmpty] + public PSVirtualMachine VM { get; set; } + + [Alias("Id")] + [Parameter( + Position = 1, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The ID for Source Vault")] + [ValidateNotNullOrEmpty] + public string SourceVaultId { get; set; } + + [Parameter( + Position = 2, + ValueFromPipelineByPropertyName = true, + HelpMessage = "Certificate store in LocalMachine")] + [ValidateNotNullOrEmpty] + public string CertificateStore { get; set; } + + [Parameter( + Position = 3, + ValueFromPipelineByPropertyName = true, + HelpMessage = "URL referencing a secret in a Key Vault.")] + [ValidateNotNullOrEmpty] + public string CertificateUrl { get; set; } + + public override void ExecuteCmdlet() + { + if (this.VM.OSProfile == null) + { + this.VM.OSProfile = new OSProfile(); + } + + if (this.VM.OSProfile.Secrets == null) + { + this.VM.OSProfile.Secrets = new List<VaultSecretGroup>(); + } + + int i = 0; + + for(; i <= this.VM.OSProfile.Secrets.Count; i++) + { + if (i == this.VM.OSProfile.Secrets.Count) + { + var sourceVault = new SourceVaultReference { + ReferenceUri = this.SourceVaultId + }; + + var vaultCertificates = new List<VaultCertificate>{ + new VaultCertificate() + { + CertificateStore = this.CertificateStore, + CertificateUrl = this.CertificateUrl, + } + }; + + this.VM.OSProfile.Secrets.Add( + new VaultSecretGroup() + { + SourceVault = sourceVault, + VaultCertificates = vaultCertificates, + }); + + break; + } + + if (this.VM.OSProfile.Secrets[i].SourceVault != null && this.VM.OSProfile.Secrets[i].SourceVault.ReferenceUri.Equals(this.SourceVaultId)) + { + if (this.VM.OSProfile.Secrets[i].VaultCertificates == null) + { + this.VM.OSProfile.Secrets[i].VaultCertificates = new List<VaultCertificate>(); + } + + this.VM.OSProfile.Secrets[i].VaultCertificates.Add( + new VaultCertificate() + { + CertificateStore = this.CertificateStore, + CertificateUrl = this.CertificateUrl, + }); + + break; + } + } + + WriteObject(this.VM); + } + } +} diff --git a/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/AddAzureVMSshPublicKeyCommand.cs b/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/AddAzureVMSshPublicKeyCommand.cs new file mode 100644 index 000000000000..1375dffe9d87 --- /dev/null +++ b/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/AddAzureVMSshPublicKeyCommand.cs @@ -0,0 +1,96 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Commands.Compute.Common; +using Microsoft.Azure.Commands.Compute.Models; +using Microsoft.Azure.Management.Compute.Models; +using Microsoft.WindowsAzure.Commands.Utilities.Common; +using System; +using System.Collections.Generic; +using System.Management.Automation; + +namespace Microsoft.Azure.Commands.Compute +{ + /// <summary> + /// Add an Ssh Public Key object to VM + /// </summary> + [Cmdlet( + VerbsCommon.Add, + ProfileNouns.SshPublicKey), + OutputType( + typeof(PSVirtualMachine))] + public class NewAzureSshPublicKeyCommand : AzurePSCmdlet + { + [Alias("VMProfile")] + [Parameter( + Mandatory = true, + Position = 0, + ValueFromPipeline = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = HelpMessages.VMProfile)] + [ValidateNotNullOrEmpty] + public PSVirtualMachine VM { get; set; } + + [Parameter( + Position = 1, + ValueFromPipelineByPropertyName = true, + HelpMessage = "Certificate Public Key")] + [ValidateNotNullOrEmpty] + public string KeyData { get; set; } + + [Parameter( + Position = 2, + ValueFromPipelineByPropertyName = true, + HelpMessage = "Full Path on VM where SSH Public Key is Stored.")] + [ValidateNotNullOrEmpty] + public string Path { get; set; } + + public override void ExecuteCmdlet() + { + + if (this.VM.OSProfile == null) + { + this.VM.OSProfile = new OSProfile(); + } + + if (this.VM.OSProfile.WindowsConfiguration == null && this.VM.OSProfile.LinuxConfiguration == null) + { + this.VM.OSProfile.LinuxConfiguration = new LinuxConfiguration(); + } + else if (this.VM.OSProfile.WindowsConfiguration != null && this.VM.OSProfile.LinuxConfiguration == null) + { + throw new ArgumentException(Properties.Resources.BothWindowsAndLinuxConfigurationsSpecified); + } + + if (this.VM.OSProfile.LinuxConfiguration.SshConfiguration == null) + { + this.VM.OSProfile.LinuxConfiguration.SshConfiguration = new SshConfiguration(); + } + + if (this.VM.OSProfile.LinuxConfiguration.SshConfiguration.PublicKeys == null) + { + this.VM.OSProfile.LinuxConfiguration.SshConfiguration.PublicKeys = new List<SshPublicKey>(); + } + + this.VM.OSProfile.LinuxConfiguration.SshConfiguration.PublicKeys.Add( + new SshPublicKey + { + KeyData = this.KeyData, + Path = this.Path, + }); + + WriteObject(this.VM); + } + } +} diff --git a/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/NewAzureSshPublicKeyCommand.cs b/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/NewAzureSshPublicKeyCommand.cs deleted file mode 100644 index 8f8d6a4169a4..000000000000 --- a/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/NewAzureSshPublicKeyCommand.cs +++ /dev/null @@ -1,55 +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 Microsoft.Azure.Commands.Compute.Common; -using Microsoft.Azure.Commands.Compute.Models; -using Microsoft.WindowsAzure.Commands.Utilities.Common; -using System.Management.Automation; - -namespace Microsoft.Azure.Commands.Compute -{ - /// <summary> - /// Create Ssh Public Key object - /// </summary> - [Cmdlet( - VerbsCommon.New, - ProfileNouns.SshPublicKey), - OutputType( - typeof(PSSshPublicKey))] - public class NewAzureSshPublicKeyCommand : AzurePSCmdlet - { - [Parameter( - Position = 0, - ValueFromPipelineByPropertyName = true, - HelpMessage = "Certificate Public Key")] - [ValidateNotNullOrEmpty] - public string KeyData { get; set; } - - [Parameter( - Position = 1, - ValueFromPipelineByPropertyName = true, - HelpMessage = "Full Path on VM where SSH Public Key is Stored.")] - [ValidateNotNullOrEmpty] - public string Path { get; set; } - - public override void ExecuteCmdlet() - { - WriteObject(new PSSshPublicKey - { - KeyData = this.KeyData, - Path = this.Path, - }); - } - } -} diff --git a/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/NewAzureVMConfigCommand.cs b/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/NewAzureVMConfigCommand.cs index 3fed6980a8ca..2f88fa1fd386 100644 --- a/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/NewAzureVMConfigCommand.cs +++ b/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/NewAzureVMConfigCommand.cs @@ -56,7 +56,10 @@ public override void ExecuteCmdlet() var vm = new PSVirtualMachine { Name = this.VMName, - AvailabilitySetId = this.AvailabilitySetId + AvailabilitySetReference = string.IsNullOrEmpty(this.AvailabilitySetId) ? null : new AvailabilitySetReference + { + ReferenceUri = this.AvailabilitySetId + } }; if (!string.IsNullOrEmpty(this.VMSize)) diff --git a/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/NewAzureVaultCertificateCommand.cs b/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/NewAzureVaultCertificateCommand.cs deleted file mode 100644 index 49115ffd2987..000000000000 --- a/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/NewAzureVaultCertificateCommand.cs +++ /dev/null @@ -1,55 +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 Microsoft.Azure.Commands.Compute.Common; -using Microsoft.Azure.Commands.Compute.Models; -using Microsoft.WindowsAzure.Commands.Utilities.Common; -using System.Management.Automation; - -namespace Microsoft.Azure.Commands.Compute -{ - /// <summary> - /// Create Vault Certificate object - /// </summary> - [Cmdlet( - VerbsCommon.New, - ProfileNouns.VaultCertificate), - OutputType( - typeof(PSVaultCertificate))] - public class NewAzureVaultCertificateCommand : AzurePSCmdlet - { - [Parameter( - Position = 0, - ValueFromPipelineByPropertyName = true, - HelpMessage = "Certificate store in LocalMachine")] - [ValidateNotNullOrEmpty] - public string CertificateStore { get; set; } - - [Parameter( - Position = 1, - ValueFromPipelineByPropertyName = true, - HelpMessage = "URL referencing a secret in a Key Vault.")] - [ValidateNotNullOrEmpty] - public string CertificateUrl { get; set; } - - public override void ExecuteCmdlet() - { - WriteObject(new PSVaultCertificate - { - CertificateStore = this.CertificateStore, - CertificateUrl = this.CertificateUrl, - }); - } - } -} diff --git a/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/NewAzureVaultSecretGroupCommand.cs b/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/NewAzureVaultSecretGroupCommand.cs deleted file mode 100644 index 759ad0666da2..000000000000 --- a/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/NewAzureVaultSecretGroupCommand.cs +++ /dev/null @@ -1,57 +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 Microsoft.Azure.Commands.Compute.Common; -using Microsoft.Azure.Commands.Compute.Models; -using Microsoft.Azure.Management.Compute.Models; -using Microsoft.WindowsAzure.Commands.Utilities.Common; -using System.Collections.Generic; -using System.Management.Automation; - -namespace Microsoft.Azure.Commands.Compute -{ - /// <summary> - /// Create Vault Secret Group object - /// </summary> - [Cmdlet( - VerbsCommon.New, - ProfileNouns.VaultSecretGroup), - OutputType( - typeof(PSVaultSecretGroup))] - public class NewAzureVaultSecretGroupCommand : AzurePSCmdlet - { - [Parameter( - Position = 0, - ValueFromPipelineByPropertyName = true, - HelpMessage = "Certificate store in LocalMachine")] - [ValidateNotNullOrEmpty] - public string ReferenceUri { get; set; } - - [Parameter( - Position = 1, - ValueFromPipelineByPropertyName = true, - HelpMessage = "URL referencing a secret in a Key Vault.")] - [ValidateNotNullOrEmpty] - public List<PSVaultCertificate> VaultCertificates { get; set; } - - public override void ExecuteCmdlet() - { - WriteObject(new PSVaultSecretGroup - { - SourceVault = new SourceVaultReference { ReferenceUri = this.ReferenceUri }, - VaultCertificates = this.VaultCertificates, - }); - } - } -} diff --git a/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/SetAzureVMOSDiskCommand.cs b/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/SetAzureVMOSDiskCommand.cs index 4625f80c12bc..05b9738007bb 100644 --- a/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/SetAzureVMOSDiskCommand.cs +++ b/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/SetAzureVMOSDiskCommand.cs @@ -117,9 +117,9 @@ public override void ExecuteCmdlet() }, SourceImage = string.IsNullOrEmpty(this.SourceImageUri) ? null : new VirtualHardDisk { - Uri = SourceImageUri + Uri = this.SourceImageUri }, - CreateOption = CreateOption + CreateOption = this.CreateOption }; WriteObject(this.VM); diff --git a/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/SetAzureVMOperatingSystemCommand.cs b/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/SetAzureVMOperatingSystemCommand.cs index f0950869fc85..7d623143837c 100644 --- a/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/SetAzureVMOperatingSystemCommand.cs +++ b/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/SetAzureVMOperatingSystemCommand.cs @@ -89,16 +89,9 @@ public class SetAzureVMOperatingSystemCommand : AzurePSCmdlet [ValidateNotNullOrEmpty] public string CustomData { get; set; } - [Parameter( - Position = 5, - ValueFromPipelineByPropertyName = true, - HelpMessage = "List of Certificates for Addition to the VM.")] - [ValidateNotNullOrEmpty] - public List<PSVaultSecretGroup> Secrets { get; set; } - [Parameter( ParameterSetName = WindowsParamSet, - Position = 6, + Position = 5, ValueFromPipelineByPropertyName = true, HelpMessage = "The Provision VM Agent.")] [ValidateNotNullOrEmpty] @@ -106,7 +99,7 @@ public class SetAzureVMOperatingSystemCommand : AzurePSCmdlet [Parameter( ParameterSetName = WindowsParamSet, - Position = 7, + Position = 6, ValueFromPipelineByPropertyName = true, HelpMessage = "Enable Automatic Update")] [ValidateNotNullOrEmpty] @@ -114,7 +107,7 @@ public class SetAzureVMOperatingSystemCommand : AzurePSCmdlet [Parameter( ParameterSetName = WindowsParamSet, - Position = 8, + Position = 7, ValueFromPipelineByPropertyName = true, HelpMessage = "Time Zone")] [ValidateNotNullOrEmpty] @@ -122,7 +115,7 @@ public class SetAzureVMOperatingSystemCommand : AzurePSCmdlet [Parameter( ParameterSetName = WindowsParamSet, - Position = 9, + Position = 8, ValueFromPipelineByPropertyName = true, HelpMessage = "Enable WinRM Http protocol")] [ValidateNotNullOrEmpty] @@ -130,7 +123,7 @@ public class SetAzureVMOperatingSystemCommand : AzurePSCmdlet [Parameter( ParameterSetName = WindowsParamSet, - Position = 10, + Position = 9, ValueFromPipelineByPropertyName = true, HelpMessage = "Enable WinRM Https protocol")] [ValidateNotNullOrEmpty] @@ -138,32 +131,16 @@ public class SetAzureVMOperatingSystemCommand : AzurePSCmdlet [Parameter( ParameterSetName = WindowsParamSet, - Position = 11, + Position = 10, ValueFromPipelineByPropertyName = true, HelpMessage = "Url for WinRM certificate")] [ValidateNotNullOrEmpty] - public Uri WinRMCertUrl { get; set; } - - [Parameter( - ParameterSetName = WindowsParamSet, - Position = 12, - ValueFromPipelineByPropertyName = true, - HelpMessage = "Additional Unattend Content")] - [ValidateNotNullOrEmpty] - public List<PSAdditionalUnattendContent> AdditionalUnattendContents { get; set; } + public Uri WinRMCertificateUrl { get; set; } // Linux Parameter Sets [Parameter( ParameterSetName = LinuxParamSet, - Position = 6, - ValueFromPipelineByPropertyName = true, - HelpMessage = "SSH Public Keys")] - [ValidateNotNullOrEmpty] - public List<PSSshPublicKey> SSHPublicKeys { get; set; } - - [Parameter( - ParameterSetName = LinuxParamSet, - Position = 7, + Position = 5, ValueFromPipelineByPropertyName = true, HelpMessage = "Enable WinRM Https protocol")] [ValidateNotNullOrEmpty] @@ -177,30 +154,37 @@ public override void ExecuteCmdlet() AdminUsername = this.Credential.UserName, AdminPassword = SecureStringExtensions.ConvertToString(this.Credential.Password), CustomData = string.IsNullOrWhiteSpace(this.CustomData) ? null : Convert.ToBase64String(Encoding.UTF8.GetBytes(this.CustomData)), - Secrets = (this.Secrets == null) ? null : this.Secrets.ConvertAll<VaultSecretGroup>(e => e.ToVaultSecretGroup()), }; if (this.ParameterSetName == LinuxParamSet) { - this.VM.OSProfile.LinuxConfiguration = - (!this.DisablePasswordAuthentication.IsPresent && this.SSHPublicKeys == null) - ? null - : new LinuxConfiguration - { - DisablePasswordAuthentication = this.DisablePasswordAuthentication.IsPresent - ? (bool?) true - : null, - - SshConfiguration = (this.SSHPublicKeys == null) - ? null - : new SshConfiguration - { - PublicKeys = this.SSHPublicKeys.ConvertAll<SshPublicKey>(e => e.ToSshPublicKey()), - } - }; + if (this.VM.OSProfile.WindowsConfiguration != null) + { + throw new ArgumentException(Properties.Resources.BothWindowsAndLinuxConfigurationsSpecified); + } + + if (this.VM.OSProfile.LinuxConfiguration == null) + { + this.VM.OSProfile.LinuxConfiguration = new LinuxConfiguration(); + } + + this.VM.OSProfile.LinuxConfiguration.DisablePasswordAuthentication = + (this.DisablePasswordAuthentication.IsPresent) + ? (bool?)true + : null; } else { + if (this.VM.OSProfile.LinuxConfiguration != null) + { + throw new ArgumentException(Properties.Resources.BothWindowsAndLinuxConfigurationsSpecified); + } + + if (this.VM.OSProfile.WindowsConfiguration == null) + { + this.VM.OSProfile.WindowsConfiguration = new WindowsConfiguration(); + } + var listenerList = new List<WinRMListener>(); if (this.WinRMHttp.IsPresent) @@ -217,31 +201,32 @@ public override void ExecuteCmdlet() listenerList.Add(new WinRMListener { Protocol = ProtocolTypes.Https, - CertificateUrl = this.WinRMCertUrl, + CertificateUrl = this.WinRMCertificateUrl, }); } // OS Profile - this.VM.OSProfile.WindowsConfiguration = - ! (this.ProvisionVMAgent.IsPresent || this.EnableAutoUpdate.IsPresent || this.WinRMHttp.IsPresent || this.WinRMHttps.IsPresent) && - string.IsNullOrEmpty(this.TimeZone) && AdditionalUnattendContents == null + this.VM.OSProfile.WindowsConfiguration.ProvisionVMAgent = + (this.ProvisionVMAgent.IsPresent) + ? (bool?) true + : null; + + this.VM.OSProfile.WindowsConfiguration.EnableAutomaticUpdates = + this.EnableAutoUpdate.IsPresent + ? (bool?) true + : null; + + this.VM.OSProfile.WindowsConfiguration.TimeZone = this.TimeZone; + + this.VM.OSProfile.WindowsConfiguration.WinRMConfiguration = + ! (this.WinRMHttp.IsPresent || this.WinRMHttps.IsPresent) ? null - : new WindowsConfiguration + : new WinRMConfiguration { - ProvisionVMAgent = this.ProvisionVMAgent.IsPresent ? (bool?) true : null, - EnableAutomaticUpdates = this.EnableAutoUpdate.IsPresent ? (bool?) true : null, - TimeZone = this.TimeZone, - AdditionalUnattendContents = (this.AdditionalUnattendContents == null) - ? null - : this.AdditionalUnattendContents.ConvertAll<AdditionalUnattendContent>(e => e.ToAdditionalUnattendContent()), - WinRMConfiguration = ! (this.WinRMHttp.IsPresent || this.WinRMHttps.IsPresent) - ? null - : new WinRMConfiguration - { - Listeners = listenerList, - }, + Listeners = listenerList, }; } + WriteObject(this.VM); } } diff --git a/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/SetAzureVMSourceImage.cs b/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/SetAzureVMSourceImage.cs index b9cc6dea263f..532d2f4b4dfe 100644 --- a/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/SetAzureVMSourceImage.cs +++ b/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/SetAzureVMSourceImage.cs @@ -30,34 +30,30 @@ public class SetAzureVMSourceImageCommand : AzurePSCmdlet protected const string SourceImageParameterSet = "SourceImageParameterSet"; [Alias("VMProfile")] - [Parameter( - Mandatory = true, - Position = 0, - ValueFromPipeline = true, - ValueFromPipelineByPropertyName = true, - HelpMessage = HelpMessages.VMProfile)] + [Parameter(Mandatory = true, Position = 0, ValueFromPipeline = true, ValueFromPipelineByPropertyName = true)] [ValidateNotNullOrEmpty] public PSVirtualMachine VM { get; set; } [Alias("SourceImageName", "ImageName")] - [Parameter( - ParameterSetName = SourceImageParameterSet, - Mandatory = true, - Position = 1, - ValueFromPipelineByPropertyName = true, - HelpMessage = HelpMessages.VMSourceImageName)] + [Parameter(ParameterSetName = SourceImageParameterSet, Mandatory = true, Position = 1, ValueFromPipelineByPropertyName = true)] [ValidateNotNullOrEmpty] public string Name { get; set; } - [Alias("ImageConfig", "Image")] - [Parameter( - ParameterSetName = ImageReferenceParameterSet, - Mandatory = true, - Position = 1, - ValueFromPipelineByPropertyName = true, - HelpMessage = HelpMessages.VMImageReference)] + [Parameter(ParameterSetName = ImageReferenceParameterSet, Mandatory = true, Position = 1, ValueFromPipelineByPropertyName = true)] [ValidateNotNullOrEmpty] - public PSVirtualMachineImage ImageReference { get; set; } + public string PublisherName { get; set; } + + [Parameter(ParameterSetName = ImageReferenceParameterSet, Mandatory = true, Position = 2, ValueFromPipelineByPropertyName = true)] + [ValidateNotNullOrEmpty] + public string Offer { get; set; } + + [Parameter(ParameterSetName = ImageReferenceParameterSet, Mandatory = true, Position = 3, ValueFromPipelineByPropertyName = true)] + [ValidateNotNullOrEmpty] + public string Skus { get; set; } + + [Parameter(ParameterSetName = ImageReferenceParameterSet, Mandatory = true, Position = 4, ValueFromPipelineByPropertyName = true)] + [ValidateNotNullOrEmpty] + public string Version { get; set; } public override void ExecuteCmdlet() { @@ -68,20 +64,19 @@ public override void ExecuteCmdlet() if (this.ParameterSetName == SourceImageParameterSet) { - this.VM.StorageProfile.SourceImage = string.IsNullOrEmpty(this.Name) ? null : - new SourceImageReference - { - ReferenceUri = this.Name - }.Normalize(this.Profile.Context.Subscription.Id.ToString()); + this.VM.StorageProfile.SourceImage = new SourceImageReference + { + ReferenceUri = this.Name + }.Normalize(this.Profile.Context.Subscription.Id.ToString()); } else if (this.ParameterSetName == ImageReferenceParameterSet) { this.VM.StorageProfile.ImageReference = new ImageReference { - Publisher = ImageReference.PublisherName, - Offer = ImageReference.Offer, - Sku = ImageReference.Skus, - Version = ImageReference.Version + Publisher = PublisherName, + Offer = Offer, + Sku = Skus, + Version = Version }; } diff --git a/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Operation/GetAzureVMCommand.cs b/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Operation/GetAzureVMCommand.cs index 115db5e3946f..24288abafc41 100644 --- a/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Operation/GetAzureVMCommand.cs +++ b/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Operation/GetAzureVMCommand.cs @@ -12,11 +12,13 @@ // limitations under the License. // ---------------------------------------------------------------------------------- +using AutoMapper; using Microsoft.Azure.Commands.Compute.Common; using Microsoft.Azure.Commands.Compute.Models; using Microsoft.Azure.Management.Compute; using Microsoft.Azure.Management.Compute.Models; using System; +using System.Collections.Generic; using System.Management.Automation; namespace Microsoft.Azure.Commands.Compute @@ -94,7 +96,8 @@ public override void ExecuteCmdlet() else { var result = this.VirtualMachineClient.Get(this.ResourceGroupName, this.Name); - WriteObject(result.ToPSVirtualMachine(this.ResourceGroupName)); + var psResult = Mapper.Map<PSVirtualMachine>(result.VirtualMachine); + WriteObject(psResult); } } else @@ -115,7 +118,15 @@ public override void ExecuteCmdlet() result = this.VirtualMachineClient.ListAll(listParams); } - WriteObject(result.ToPSVirtualMachineList(this.ResourceGroupName), true); + var psResultList = new List<PSVirtualMachine>(); + foreach (var item in result.VirtualMachines) + { + var psItem = Mapper.Map<PSVirtualMachine>(item); + psResultList.Add(psItem); + } + + + WriteObject(psResultList, true); } } } diff --git a/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Operation/NewAzureVMCommand.cs b/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Operation/NewAzureVMCommand.cs index 0e224e805baf..75db04f3b330 100644 --- a/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Operation/NewAzureVMCommand.cs +++ b/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Operation/NewAzureVMCommand.cs @@ -70,11 +70,8 @@ public override void ExecuteCmdlet() StorageProfile = this.VM.StorageProfile, NetworkProfile = this.VM.NetworkProfile, OSProfile = this.VM.OSProfile, - AvailabilitySetReference = string.IsNullOrEmpty(this.VM.AvailabilitySetId) ? null - : new AvailabilitySetReference - { - ReferenceUri = this.VM.AvailabilitySetId - }, + Plan = this.VM.Plan, + AvailabilitySetReference = this.VM.AvailabilitySetReference, Location = !string.IsNullOrEmpty(this.Location) ? this.Location : this.VM.Location, Name = !string.IsNullOrEmpty(this.Name) ? this.Name : this.VM.Name }; diff --git a/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/VirtualMachineBaseCmdlet.cs b/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/VirtualMachineBaseCmdlet.cs index 563ab6a31f63..b3c697305133 100644 --- a/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/VirtualMachineBaseCmdlet.cs +++ b/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/VirtualMachineBaseCmdlet.cs @@ -19,29 +19,8 @@ namespace Microsoft.Azure.Commands.Compute { - public abstract class VirtualMachineBaseCmdlet : AzurePSCmdlet + public abstract class VirtualMachineBaseCmdlet : ComputeClientBaseCmdlet { - private ComputeClient computeClient; - - public ComputeClient ComputeClient - { - get - { - if (computeClient == null) - { - computeClient = new ComputeClient(Profile.Context) - { - VerboseLogger = WriteVerboseWithTimestamp, - ErrorLogger = WriteErrorWithTimestamp - }; - } - - return computeClient; - } - - set { computeClient = value; } - } - public IVirtualMachineOperations VirtualMachineClient { get @@ -66,10 +45,5 @@ public IVirtualMachineOperations VirtualMachineClient HelpMessage = "The resource name.")] [ValidateNotNullOrEmpty] public virtual string Name { get; set; } - - public override void ExecuteCmdlet() - { - base.ExecuteCmdlet(); - } } } diff --git a/src/ResourceManager/Compute/Commands.Compute/VirtualMachineSizes/GetAzureVMSizeCommand.cs b/src/ResourceManager/Compute/Commands.Compute/VirtualMachineSizes/GetAzureVMSizeCommand.cs index bf0e7b6b96d5..8a9006107525 100644 --- a/src/ResourceManager/Compute/Commands.Compute/VirtualMachineSizes/GetAzureVMSizeCommand.cs +++ b/src/ResourceManager/Compute/Commands.Compute/VirtualMachineSizes/GetAzureVMSizeCommand.cs @@ -12,7 +12,9 @@ // limitations under the License. // ---------------------------------------------------------------------------------- +using AutoMapper; using Microsoft.Azure.Commands.Compute.Common; +using Microsoft.Azure.Commands.Compute.Models; using Microsoft.Azure.Management.Compute; using Microsoft.Azure.Management.Compute.Models; using System.Collections.Generic; @@ -21,7 +23,7 @@ namespace Microsoft.Azure.Commands.Compute { [Cmdlet(VerbsCommon.Get, ProfileNouns.VirtualMachineSize, DefaultParameterSetName = ListVirtualMachineSizeParamSet)] - [OutputType(typeof(VirtualMachineSize))] + [OutputType(typeof(PSVirtualMachineSize))] public class GetAzureVMSizeCommand : VirtualMachineSizeBaseCmdlet { protected const string ListVirtualMachineSizeParamSet = "ListVirtualMachineSizeParamSet"; @@ -90,10 +92,17 @@ public override void ExecuteCmdlet() } else { - result = this.VirtualMachineSizeClient.List(this.Location); + result = this.VirtualMachineSizeClient.List(this.Location.Canonicalize()); } - WriteObject(result.VirtualMachineSizes, true); + List<PSVirtualMachineSize> psResultList = new List<PSVirtualMachineSize>(); + foreach (var item in result.VirtualMachineSizes) + { + var psItem = Mapper.Map<PSVirtualMachineSize>(item); + psResultList.Add(psItem); + } + + WriteObject(psResultList, true); } } } diff --git a/src/ResourceManager/Compute/Commands.Compute/VirtualMachineSizes/VirtualMachineSizeBaseCmdlet.cs b/src/ResourceManager/Compute/Commands.Compute/VirtualMachineSizes/VirtualMachineSizeBaseCmdlet.cs index 66202f94299f..1e9d359ba549 100644 --- a/src/ResourceManager/Compute/Commands.Compute/VirtualMachineSizes/VirtualMachineSizeBaseCmdlet.cs +++ b/src/ResourceManager/Compute/Commands.Compute/VirtualMachineSizes/VirtualMachineSizeBaseCmdlet.cs @@ -13,33 +13,11 @@ // ---------------------------------------------------------------------------------- using Microsoft.Azure.Management.Compute; -using Microsoft.WindowsAzure.Commands.Utilities.Common; namespace Microsoft.Azure.Commands.Compute { - public abstract class VirtualMachineSizeBaseCmdlet : AzurePSCmdlet + public abstract class VirtualMachineSizeBaseCmdlet : ComputeClientBaseCmdlet { - private ComputeClient computeClient; - - public ComputeClient ComputeClient - { - get - { - if (computeClient == null) - { - computeClient = new ComputeClient(Profile.Context) - { - VerboseLogger = WriteVerboseWithTimestamp, - ErrorLogger = WriteErrorWithTimestamp - }; - } - - return computeClient; - } - - set { computeClient = value; } - } - public IVirtualMachineSizeOperations VirtualMachineSizeClient { get @@ -63,10 +41,5 @@ public IAvailabilitySetOperations AvailabilitySetClient return ComputeClient.ComputeManagementClient.AvailabilitySets; } } - - public override void ExecuteCmdlet() - { - base.ExecuteCmdlet(); - } } } diff --git a/src/ResourceManager/Compute/Commands.Compute/packages.config b/src/ResourceManager/Compute/Commands.Compute/packages.config index 2b76d8599d64..0e7566348dca 100644 --- a/src/ResourceManager/Compute/Commands.Compute/packages.config +++ b/src/ResourceManager/Compute/Commands.Compute/packages.config @@ -1,5 +1,6 @@ <?xml version="1.0" encoding="utf-8"?> <packages> + <package id="AutoMapper" version="3.1.1" targetFramework="net45" /> <package id="Hyak.Common" version="1.0.2" targetFramework="net45" /> <package id="Microsoft.Azure.Common" version="2.1.0" targetFramework="net45" /> <package id="Microsoft.Azure.Common.Authentication" version="1.0.25-preview" targetFramework="net45" /> @@ -7,9 +8,10 @@ <package id="Microsoft.Azure.Gallery" version="2.6.2-preview" targetFramework="net45" /> <package id="Microsoft.Azure.Graph.RBAC" version="1.7.0-preview" targetFramework="net45" /> <package id="Microsoft.Azure.Management.Authorization" version="0.18.2-preview" targetFramework="net45" /> - <package id="Microsoft.Azure.Management.Compute" version="5.0.0-preview" targetFramework="net45" /> + <package id="Microsoft.Azure.Management.Compute" version="5.0.1-preview" targetFramework="net45" /> + <package id="Microsoft.Azure.Management.Network" version="2.0.0-preview" targetFramework="net45" /> <package id="Microsoft.Azure.Management.Resources" version="2.18.0-preview" targetFramework="net45" /> - <package id="Microsoft.Azure.Management.Storage" version="2.3.0-preview" targetFramework="net45" /> + <package id="Microsoft.Azure.Management.Storage" version="2.4.0-preview" targetFramework="net45" /> <package id="Microsoft.Bcl" version="1.1.9" targetFramework="net45" /> <package id="Microsoft.Bcl.Async" version="1.0.168" targetFramework="net45" /> <package id="Microsoft.Bcl.Build" version="1.0.14" targetFramework="net45" /> diff --git a/src/ResourceManager/Insights/Commands.Insights.Test/Commands.Insights.Test.csproj b/src/ResourceManager/Insights/Commands.Insights.Test/Commands.Insights.Test.csproj index acf1a9e1f5f1..3ebbad2708b3 100644 --- a/src/ResourceManager/Insights/Commands.Insights.Test/Commands.Insights.Test.csproj +++ b/src/ResourceManager/Insights/Commands.Insights.Test/Commands.Insights.Test.csproj @@ -58,7 +58,7 @@ <HintPath>..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll</HintPath> </Reference> <Reference Include="Microsoft.Azure.Insights"> - <HintPath>..\..\..\packages\Microsoft.Azure.Insights.0.7.2-preview\lib\net45\Microsoft.Azure.Insights.dll</HintPath> + <HintPath>..\..\..\packages\Microsoft.Azure.Insights.0.7.7-preview\lib\net45\Microsoft.Azure.Insights.dll</HintPath> </Reference> <Reference Include="Microsoft.Azure.ResourceManager"> <SpecificVersion>False</SpecificVersion> @@ -132,10 +132,10 @@ <Compile Include="ScenarioTests\AlertsTests.cs" /> <Compile Include="ScenarioTests\AutoscaleTests.cs" /> <Compile Include="ScenarioTests\EventsTests.cs" /> - <Compile Include="ScenarioTests\MetricsTests.cs"> - <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> - </Compile> + <Compile Include="ScenarioTests\MetricsTests.cs" /> <Compile Include="ScenarioTests\TestsController.cs" /> + <Compile Include="ScenarioTests\UsageMetricsTests.cs" /> + <Compile Include="UsageMetrics\GetUsageMetricsCommandTests.cs" /> <Compile Include="Utilities.cs" /> </ItemGroup> <ItemGroup> @@ -170,6 +170,9 @@ <None Include="ScenarioTests\MetricsTests.ps1"> <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> </None> + <None Include="ScenarioTests\UsageMetricsTests.ps1"> + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> + </None> <None Include="SessionRecords\Microsoft.Azure.Commands.Insights.Test.ScenarioTests.AlertsTests\TestAddAlertRule.json"> <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> </None> @@ -215,6 +218,9 @@ <None Include="SessionRecords\Microsoft.Azure.Commands.Insights.Test.ScenarioTests.MetricsTests\TestGetMetricDefinitions.json"> <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> </None> + <None Include="SessionRecords\Microsoft.Azure.Commands.Insights.Test.ScenarioTests.UsageMetricsTests\TestGetUsageMetrics.json"> + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> + </None> </ItemGroup> <ItemGroup> <Service Include="{82A7F48D-3B50-4B1E-B82E-3ADA8210C358}" /> diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/TestVirtualMachineList.cs b/src/ResourceManager/Insights/Commands.Insights.Test/ScenarioTests/UsageMetricsTests.cs similarity index 79% rename from src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/TestVirtualMachineList.cs rename to src/ResourceManager/Insights/Commands.Insights.Test/ScenarioTests/UsageMetricsTests.cs index 39a163a6c5b9..90f3689ee01a 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/TestVirtualMachineList.cs +++ b/src/ResourceManager/Insights/Commands.Insights.Test/ScenarioTests/UsageMetricsTests.cs @@ -15,15 +15,15 @@ using Microsoft.WindowsAzure.Commands.ScenarioTest; using Xunit; -namespace Microsoft.Azure.Commands.Compute.Test.ScenarioTests +namespace Microsoft.Azure.Commands.Insights.Test.ScenarioTests { - public partial class VirtualMachineTests + public class UsageMetricsTests { [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] - public void TestVirtualMachineList() + public void TestGetUsageMetrics() { - ComputeTestController.NewInstance.RunPsTest("Test-VirtualMachineList"); + TestsController.NewInstance.RunPsTest("Test-GetUsageMetrics"); } } } diff --git a/src/ResourceManager/Insights/Commands.Insights.Test/ScenarioTests/UsageMetricsTests.ps1 b/src/ResourceManager/Insights/Commands.Insights.Test/ScenarioTests/UsageMetricsTests.ps1 new file mode 100644 index 000000000000..44a44779718a --- /dev/null +++ b/src/ResourceManager/Insights/Commands.Insights.Test/ScenarioTests/UsageMetricsTests.ps1 @@ -0,0 +1,38 @@ +# ---------------------------------------------------------------------------------- +# +# 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 +Tests getting usage metrics values for a particular resource. +#> +function Test-GetUsageMetrics +{ + # Setup + $rscname = '/subscriptions/a93fb07c-6c93-40be-bf3b-4f0deba10f4b/resourceGroups/Default-Web-EastUS/providers/microsoft.web/sites/garyyang1' + + try + { + # Test + # -timeGrain 00:01:00 -starttime 2015-03-23T15:00:00 -endtime 2015-03-23T15:30:00 + $actual = Get-UsageMetrics -ResourceId $rscname -star 2015-04-07T15:31:28.4590754-07:00 -end 2015-04-07T16:31:28.4590754-07:00 + + # Assert TODO add more asserts + Assert-AreEqual 0 $actual.Count + } + finally + { + # Cleanup + # No cleanup needed for now + } +} diff --git a/src/ResourceManager/Insights/Commands.Insights.Test/SessionRecords/Microsoft.Azure.Commands.Insights.Test.ScenarioTests.UsageMetricsTests/TestGetUsageMetrics.json b/src/ResourceManager/Insights/Commands.Insights.Test/SessionRecords/Microsoft.Azure.Commands.Insights.Test.ScenarioTests.UsageMetricsTests/TestGetUsageMetrics.json new file mode 100644 index 000000000000..6fd39220776c --- /dev/null +++ b/src/ResourceManager/Insights/Commands.Insights.Test/SessionRecords/Microsoft.Azure.Commands.Insights.Test.ScenarioTests.UsageMetricsTests/TestGetUsageMetrics.json @@ -0,0 +1,64 @@ +{ + "Entries": [ + { + "RequestUri": "/%2Fsubscriptions%2Fa93fb07c-6c93-40be-bf3b-4f0deba10f4b%2FresourceGroups%2FDefault-Web-EastUS%2Fproviders%2Fmicrosoft.web%2Fsites%2Fgaryyang1/usages?api-version=2014-04-01&$filter=startTime%20eq%202015-04-07T15%3A31%3A28.4590754-07%3A00%20and%20endTime%20eq%202015-04-07T16%3A31%3A28.4590754-07%3A00", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ "application/json" ], + "User-Agent": [ "Microsoft.Azure.Insights.InsightsClient/0.9.0.0 AzurePowershell/v0.8.15" ], + "x-ms-version": [ "2014-04-01" ], + "Connection": [ "Keep-Alive" ] + }, + "ResponseBody": "{\"id\":null,\"name\":\"garyyang1\",\"type\":\"Microsoft.Web/sites\",\"kind\":null,\"location\":\"East US\",\"tags\":null,\"plan\":null,\"properties\":[{\"displayName\":\"CPU Time\",\"name\":\"CpuTime\",\"resourceName\":\"CpuTime\",\"unit\":\"Milliseconds\",\"currentValue\":0,\"limit\":-1,\"nextResetTime\":\"2015-04-08T00:00:00\",\"computeMode\":1,\"siteMode\":null},{\"displayName\":\"Data In\",\"name\":\"BytesReceived\",\"resourceName\":\"BytesReceived\",\"unit\":\"Bytes\",\"currentValue\":0,\"limit\":-1,\"nextResetTime\":\"2015-04-08T00:00:00\",\"computeMode\":1,\"siteMode\":null},{\"displayName\":\"Data Out\",\"name\":\"BytesSent\",\"resourceName\":\"BytesSent\",\"unit\":\"Bytes\",\"currentValue\":0,\"limit\":-1,\"nextResetTime\":\"2015-04-08T00:00:00\",\"computeMode\":1,\"siteMode\":null},{\"displayName\":\"Local bytes read\",\"name\":\"LocalBytesRead\",\"resourceName\":\"LocalBytesRead\",\"unit\":\"Bytes\",\"currentValue\":0,\"limit\":-1,\"nextResetTime\":\"2015-04-08T00:00:00\",\"computeMode\":1,\"siteMode\":null},{\"displayName\":\"Local bytes written\",\"name\":\"LocalBytesWritten\",\"resourceName\":\"LocalBytesWritten\",\"unit\":\"Bytes\",\"currentValue\":0,\"limit\":-1,\"nextResetTime\":\"2015-04-08T00:00:00\",\"computeMode\":1,\"siteMode\":null},{\"displayName\":\"Network bytes read\",\"name\":\"NetworkBytesRead\",\"resourceName\":\"NetworkBytesRead\",\"unit\":\"Bytes\",\"currentValue\":0,\"limit\":-1,\"nextResetTime\":\"2015-04-08T00:00:00\",\"computeMode\":1,\"siteMode\":null},{\"displayName\":\"Network bytes written\",\"name\":\"NetworkBytesWritten\",\"resourceName\":\"NetworkBytesWritten\",\"unit\":\"Bytes\",\"currentValue\":0,\"limit\":-1,\"nextResetTime\":\"2015-04-08T00:00:00\",\"computeMode\":1,\"siteMode\":null},{\"displayName\":\"WP stop requests\",\"name\":\"WPStopRequests\",\"resourceName\":\"WPStopRequests\",\"unit\":\"Count\",\"currentValue\":0,\"limit\":-1,\"nextResetTime\":\"2015-04-08T00:00:00\",\"computeMode\":1,\"siteMode\":null},{\"displayName\":\"Memory Usage\",\"name\":\"MaxMemoryWorkingSetShortPeriod\",\"resourceName\":\"MaxMemoryWorkingSet\",\"unit\":\"Bytes\",\"currentValue\":0,\"limit\":-1,\"nextResetTime\":\"2015-04-08T00:00:00\",\"computeMode\":1,\"siteMode\":null},{\"displayName\":\"CPU Time - Minute Limit\",\"name\":\"CpuTimeShortPeriod\",\"resourceName\":\"CpuTime\",\"unit\":\"Milliseconds\",\"currentValue\":0,\"limit\":-1,\"nextResetTime\":\"2015-04-07T23:36:00\",\"computeMode\":1,\"siteMode\":null},{\"displayName\":\"File System Storage\",\"name\":\"FileSystemStorage\",\"resourceName\":\"FileSystemStorage\",\"unit\":\"Bytes\",\"currentValue\":756736,\"limit\":53687091200,\"nextResetTime\":\"9999-12-31T23:59:59.9999999Z\",\"computeMode\":1,\"siteMode\":null}]}", + "ResponseHeaders": { + "Cache-Control": [ "no-cache" ], + "Date": [ "Tue, 07 Apr 2015 23:31:33 GMT" ], + "Expires": [ "-1" ], + "Pragma": [ "no-cache" ], + "Content-Length": [ "2421" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "31999" ], + "x-ms-request-id": [ "63575ceb-f8d2-4a28-a571-edc783166245" ], + "x-ms-correlation-request-id": [ "4e8d2e93-0895-4cf1-aa40-5af880c3fb52" ], + "x-ms-routing-request-id": [ "WESTUS:20150323T205747Z:4e8d2e93-0895-4cf1-aa40-5af880c3fb52" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/%2Fsubscriptions%2Fa93fb07c-6c93-40be-bf3b-4f0deba10f4b%2FresourceGroups%2FDefault-Web-EastUS%2Fproviders%2Fmicrosoft.web%2Fsites%2Fgaryyang1/usages?api-version=2014-04-01&$filter=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ "application/json" ], + "User-Agent": [ "Microsoft.Azure.Insights.InsightsClient/0.9.0.0 AzurePowershell/v0.8.15" ], + "x-ms-version": [ "2014-04-01" ] + }, + "ResponseBody": "{\"id\":null,\"name\":\"garyyang1\",\"type\":\"Microsoft.Web/sites\",\"kind\":null,\"location\":\"East US\",\"tags\":null,\"plan\":null,\"properties\":[{\"displayName\":\"CPU Time\",\"name\":\"CpuTime\",\"resourceName\":\"CpuTime\",\"unit\":\"Milliseconds\",\"currentValue\":0,\"limit\":-1,\"nextResetTime\":\"2015-04-08T00:00:00\",\"computeMode\":1,\"siteMode\":null},{\"displayName\":\"Data In\",\"name\":\"BytesReceived\",\"resourceName\":\"BytesReceived\",\"unit\":\"Bytes\",\"currentValue\":0,\"limit\":-1,\"nextResetTime\":\"2015-04-08T00:00:00\",\"computeMode\":1,\"siteMode\":null},{\"displayName\":\"Data Out\",\"name\":\"BytesSent\",\"resourceName\":\"BytesSent\",\"unit\":\"Bytes\",\"currentValue\":0,\"limit\":-1,\"nextResetTime\":\"2015-04-08T00:00:00\",\"computeMode\":1,\"siteMode\":null},{\"displayName\":\"Local bytes read\",\"name\":\"LocalBytesRead\",\"resourceName\":\"LocalBytesRead\",\"unit\":\"Bytes\",\"currentValue\":0,\"limit\":-1,\"nextResetTime\":\"2015-04-08T00:00:00\",\"computeMode\":1,\"siteMode\":null},{\"displayName\":\"Local bytes written\",\"name\":\"LocalBytesWritten\",\"resourceName\":\"LocalBytesWritten\",\"unit\":\"Bytes\",\"currentValue\":0,\"limit\":-1,\"nextResetTime\":\"2015-04-08T00:00:00\",\"computeMode\":1,\"siteMode\":null},{\"displayName\":\"Network bytes read\",\"name\":\"NetworkBytesRead\",\"resourceName\":\"NetworkBytesRead\",\"unit\":\"Bytes\",\"currentValue\":0,\"limit\":-1,\"nextResetTime\":\"2015-04-08T00:00:00\",\"computeMode\":1,\"siteMode\":null},{\"displayName\":\"Network bytes written\",\"name\":\"NetworkBytesWritten\",\"resourceName\":\"NetworkBytesWritten\",\"unit\":\"Bytes\",\"currentValue\":0,\"limit\":-1,\"nextResetTime\":\"2015-04-08T00:00:00\",\"computeMode\":1,\"siteMode\":null},{\"displayName\":\"WP stop requests\",\"name\":\"WPStopRequests\",\"resourceName\":\"WPStopRequests\",\"unit\":\"Count\",\"currentValue\":0,\"limit\":-1,\"nextResetTime\":\"2015-04-08T00:00:00\",\"computeMode\":1,\"siteMode\":null},{\"displayName\":\"Memory Usage\",\"name\":\"MaxMemoryWorkingSetShortPeriod\",\"resourceName\":\"MaxMemoryWorkingSet\",\"unit\":\"Bytes\",\"currentValue\":0,\"limit\":-1,\"nextResetTime\":\"2015-04-08T00:00:00\",\"computeMode\":1,\"siteMode\":null},{\"displayName\":\"CPU Time - Minute Limit\",\"name\":\"CpuTimeShortPeriod\",\"resourceName\":\"CpuTime\",\"unit\":\"Milliseconds\",\"currentValue\":0,\"limit\":-1,\"nextResetTime\":\"2015-04-07T23:41:00\",\"computeMode\":1,\"siteMode\":null},{\"displayName\":\"File System Storage\",\"name\":\"FileSystemStorage\",\"resourceName\":\"FileSystemStorage\",\"unit\":\"Bytes\",\"currentValue\":756736,\"limit\":53687091200,\"nextResetTime\":\"9999-12-31T23:59:59.9999999Z\",\"computeMode\":1,\"siteMode\":null}]}", + "ResponseHeaders": { + "Cache-Control": [ "no-cache" ], + "Date": [ "Tue, 07 Apr 2015 23:31:33 GMT" ], + "Expires": [ "-1" ], + "Pragma": [ "no-cache" ], + "Vary": [ "Accept-Encoding" ], + "Content-Length": [ "2421" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "31997" ], + "x-ms-request-id": [ "8e430569-842a-4b86-a954-0fda5fe1576f" ], + "x-ms-correlation-request-id": [ "095a4225-2fcb-4f72-87a8-0ea4e11bfb7a" ], + "x-ms-routing-request-id": [ "WESTUS:20150323T223347Z:095a4225-2fcb-4f72-87a8-0ea4e11bfb7a" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ] + }, + "StatusCode": 200 + } + ], + "Names": { + "Test-GetAzureCorrelationIdLog": [ + "" + ] + }, + "Variables": { + "SubscriptionId": "a93fb07c-6c93-40be-bf3b-4f0deba10f4b" + } +} \ No newline at end of file diff --git a/src/ResourceManager/Insights/Commands.Insights.Test/UsageMetrics/GetUsageMetricsCommandTests.cs b/src/ResourceManager/Insights/Commands.Insights.Test/UsageMetrics/GetUsageMetricsCommandTests.cs new file mode 100644 index 000000000000..402f1a5824dc --- /dev/null +++ b/src/ResourceManager/Insights/Commands.Insights.Test/UsageMetrics/GetUsageMetricsCommandTests.cs @@ -0,0 +1,134 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Management.Automation; +using System.Threading; +using System.Threading.Tasks; +using Microsoft.Azure.Commands.Insights.UsageMetrics; +using Microsoft.Azure.Insights; +using Microsoft.Azure.Insights.Models; +using Microsoft.WindowsAzure.Commands.ScenarioTest; +using Moq; +using Xunit; + +namespace Microsoft.Azure.Commands.Insights.Test.Metrics +{ + public class GetUsageMetricsCommandTests + { + private readonly GetUsageMetricsCommand cmdlet; + private readonly Mock<InsightsClient> insightsClientMock; + private readonly Mock<IUsageMetricsOperations> insightsUsageMetricOperationsMock; + private Mock<ICommandRuntime> commandRuntimeMock; + private UsageMetricListResponse response; + private string resourceId; + private string filter; + private string apiVersion; + + public GetUsageMetricsCommandTests() + { + insightsUsageMetricOperationsMock = new Mock<IUsageMetricsOperations>(); + insightsClientMock = new Mock<InsightsClient>(); + commandRuntimeMock = new Mock<ICommandRuntime>(); + cmdlet = new GetUsageMetricsCommand() + { + CommandRuntime = commandRuntimeMock.Object, + InsightsClient = insightsClientMock.Object + }; + + response = Utilities.InitializeUsageMetricResponse(); + + insightsUsageMetricOperationsMock + .Setup(f => f.ListAsync(It.IsAny<string>(), It.IsAny<string>(), It.IsAny<string>(), It.IsAny<CancellationToken>())) + .Returns(Task.FromResult<UsageMetricListResponse>(response)) + .Callback((string f, string s, string a, CancellationToken t) => + { + resourceId = f; + filter = s; + apiVersion = a; + }); + + insightsClientMock + .SetupGet(f => f.UsageMetricOperations) + .Returns(this.insightsUsageMetricOperationsMock.Object); + } + + private void CleanParamVariables() + { + resourceId = null; + filter = null; + apiVersion = null; + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void GetUsageMetricsCommandParametersProcessing() + { + // Testting defaults and required parameters + cmdlet.ResourceId = Utilities.ResourceUri; + + cmdlet.ExecuteCmdlet(); + Assert.True(filter != null && filter.Contains("startTime eq ") && filter.Contains(" and endTime eq ")); + Assert.Equal(Utilities.ResourceUri, resourceId); + Assert.Equal(GetUsageMetricsCommand.DefaultApiVersion, apiVersion); + + this.CleanParamVariables(); + var endDate = DateTime.Now.AddMinutes(-1); + cmdlet.EndTime = endDate; + + var startTime = endDate + .Subtract(GetUsageMetricsCommand.DefaultTimeRange) + .ToString("O"); + var endTime = endDate.ToString("O"); + var expected = "startTime eq " + startTime + " and endTime eq " + endTime; + + // Remove the value assigned in the last execution + cmdlet.StartTime = default(DateTime); + + cmdlet.ExecuteCmdlet(); + Assert.Equal(expected, filter); + Assert.Equal(Utilities.ResourceUri, resourceId); + Assert.Equal(GetUsageMetricsCommand.DefaultApiVersion, apiVersion); + + this.CleanParamVariables(); + cmdlet.StartTime = endDate + .Subtract(GetUsageMetricsCommand.DefaultTimeRange) + .Subtract(GetUsageMetricsCommand.DefaultTimeRange); + startTime = cmdlet.StartTime.ToString("O"); + expected = "startTime eq " + startTime + " and endTime eq " + endTime; + + cmdlet.ExecuteCmdlet(); + Assert.Equal(expected, filter); + Assert.Equal(Utilities.ResourceUri, resourceId); + Assert.Equal(GetUsageMetricsCommand.DefaultApiVersion, apiVersion); + + // Testing with optional parameters + this.CleanParamVariables(); + cmdlet.MetricNames = new[] {"n1", "n2"}; + expected = "(name.value eq 'n1' or name.value eq 'n2') and " + expected; + + cmdlet.ExecuteCmdlet(); + Assert.Equal(expected, filter); + Assert.Equal(Utilities.ResourceUri, resourceId); + Assert.Equal(GetUsageMetricsCommand.DefaultApiVersion, apiVersion); + + // Testing with another api version + cmdlet.ApiVersion = "2015-01-01"; + cmdlet.ExecuteCmdlet(); + Assert.Equal(expected, filter); + Assert.Equal(Utilities.ResourceUri, resourceId); + Assert.Equal("2015-01-01", apiVersion); + } + } +} diff --git a/src/ResourceManager/Insights/Commands.Insights.Test/Utilities.cs b/src/ResourceManager/Insights/Commands.Insights.Test/Utilities.cs index 1cb0ac46ef9f..36e71b8e770d 100644 --- a/src/ResourceManager/Insights/Commands.Insights.Test/Utilities.cs +++ b/src/ResourceManager/Insights/Commands.Insights.Test/Utilities.cs @@ -157,6 +157,19 @@ public static MetricDefinitionListResponse InitializeMetricDefinitionResponse() }; } + public static UsageMetricListResponse InitializeUsageMetricResponse() + { + return new UsageMetricListResponse + { + UsageMetricCollection = new UsageMetricCollection + { + Value = new List<UsageMetric>() + }, + RequestId = Guid.NewGuid().ToString(), + StatusCode = HttpStatusCode.OK + }; + } + public static void VerifyDetailedOutput(EventCmdletBase cmdlet, ref string selected) { // Calling with detailed output diff --git a/src/ResourceManager/Insights/Commands.Insights.Test/packages.config b/src/ResourceManager/Insights/Commands.Insights.Test/packages.config index adc70966ee6c..e9b43edecfda 100644 --- a/src/ResourceManager/Insights/Commands.Insights.Test/packages.config +++ b/src/ResourceManager/Insights/Commands.Insights.Test/packages.config @@ -4,7 +4,7 @@ <package id="Microsoft.Azure.Common" version="2.1.0" targetFramework="net45" /> <package id="Microsoft.Azure.Common.Authentication" version="1.0.25-preview" targetFramework="net45" /> <package id="Microsoft.Azure.Common.Dependencies" version="1.0.0" targetFramework="net45" /> - <package id="Microsoft.Azure.Insights" version="0.7.2-preview" targetFramework="net45" /> + <package id="Microsoft.Azure.Insights" version="0.7.7-preview" targetFramework="net45" /> <package id="Microsoft.Azure.Management.Resources" version="2.18.0-preview" targetFramework="net45" /> <package id="Microsoft.Azure.Test.Framework" version="1.0.5571.32271-prerelease" targetFramework="net45" /> <package id="Microsoft.Azure.Test.HttpRecorder" version="1.0.5571.32271-prerelease" targetFramework="net45" /> diff --git a/src/ResourceManager/Insights/Commands.Insights/Commands.Insights.csproj b/src/ResourceManager/Insights/Commands.Insights/Commands.Insights.csproj index 19af9e2f5265..7135216956bf 100644 --- a/src/ResourceManager/Insights/Commands.Insights/Commands.Insights.csproj +++ b/src/ResourceManager/Insights/Commands.Insights/Commands.Insights.csproj @@ -57,7 +57,7 @@ <HintPath>..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll</HintPath> </Reference> <Reference Include="Microsoft.Azure.Insights"> - <HintPath>..\..\..\packages\Microsoft.Azure.Insights.0.7.2-preview\lib\net45\Microsoft.Azure.Insights.dll</HintPath> + <HintPath>..\..\..\packages\Microsoft.Azure.Insights.0.7.7-preview\lib\net45\Microsoft.Azure.Insights.dll</HintPath> </Reference> <Reference Include="Microsoft.Azure.ResourceManager"> <HintPath>..\..\..\packages\Microsoft.Azure.Management.Resources.2.18.0-preview\lib\net40\Microsoft.Azure.ResourceManager.dll</HintPath> @@ -136,6 +136,7 @@ <Compile Include="OutputClasses\PSMetricTabularResult.cs" /> <Compile Include="OutputClasses\PSThresholdRuleCondition.cs" /> <Compile Include="OutputClasses\PSToStringExtensions.cs" /> + <Compile Include="OutputClasses\PSUsageMetric.cs" /> <Compile Include="Properties\AssemblyInfo.cs" /> <Compile Include="Properties\ResourcesForAlertCmdlets.Designer.cs"> <DependentUpon>ResourcesForAlertCmdlets.resx</DependentUpon> @@ -152,6 +153,7 @@ <DesignTime>True</DesignTime> <DependentUpon>ResourcesForAutoscaleCmdlets.resx</DependentUpon> </Compile> + <Compile Include="UsageMetrics\GetUsageMetricsCommand.cs" /> <Compile Include="Utilities.cs" /> </ItemGroup> <ItemGroup> diff --git a/src/ResourceManager/Insights/Commands.Insights/Microsoft.Azure.Commands.Insights.dll-Help.xml b/src/ResourceManager/Insights/Commands.Insights/Microsoft.Azure.Commands.Insights.dll-Help.xml index 920bbf2a71cd..929122763c44 100644 --- a/src/ResourceManager/Insights/Commands.Insights/Microsoft.Azure.Commands.Insights.dll-Help.xml +++ b/src/ResourceManager/Insights/Commands.Insights/Microsoft.Azure.Commands.Insights.dll-Help.xml @@ -1130,7 +1130,7 @@ The output of this Cmdlet is suitable to be processed by the Export-csv Cmdlet.< <maml:description/> </dev:type> <maml:description> -<maml:para /> + <maml:para /> </maml:description> </command:inputType> </command:inputTypes> @@ -1142,7 +1142,7 @@ The output of this Cmdlet is suitable to be processed by the Export-csv Cmdlet.< <maml:description/> </dev:type> <maml:description> -<maml:para /> + <maml:para /> </maml:description> </command:returnValue> </command:returnValues> @@ -1170,8 +1170,7 @@ foreach($e in $s2) { Export-csv -Path ./metrics.csv -input $e -Append -NoTypeInf <maml:para>&quot;Name&quot;,&quot;TimestampUTC&quot;,&quot;Count&quot;,&quot;Last&quot;,&quot;Maximum&quot;,&quot;Minimum&quot;,&quot;Total&quot;,&quot;Average&quot;,&quot;StartTimeUTC&quot;,&quot;EndTimeUTC&quot;,&quot;TimeGrain&quot;,&quot;Unit&quot;,&quot;DimensionName&quot;,&quot;DimensionValue&quot;,&quot;ResourceId&quot; &quot;AverageResponseTime&quot;,&quot;2015-03-20 16:15:00&quot;,&quot;1&quot;,,,,&quot;0&quot;,&quot;0&quot;,&quot;2015-03-20 16:14:00&quot;,&quot;2015-03-20 17:14:35&quot;,&quot;00:01:00&quot;,&quot;Seconds&quot;,,,&quot;/subscriptions/b91eb07f-89c3-40be-bf3b-40fdcba10f6c/resourceGroups/Default-Web-EastUS/providers/microsoft.web/sites/website1&quot; &quot;AverageResponseTime&quot;,&quot;2015-03-20 16:17:00&quot;,&quot;1&quot;,,,,&quot;0&quot;,&quot;0&quot;,&quot;2015-03-20 16:14:00&quot;,&quot;2015-03-20 17:14:35&quot;,&quot;00:01:00&quot;,&quot;Seconds&quot;,,,&quot;/subscriptions/b91eb07f-89c3-40be-bf3b-40fdcba10f6c/resourceGroups/Default-Web-EastUS/providers/microsoft.web/sites/website1&quot; -&quot;AverageResponseTime&quot;,&quot;2015-03-20 16:18:00&quot;,&quot;1&quot;,,,,&quot;0&quot;,&quot;0&quot;,&quot;2015-03-20 16:14:00&quot;,&quot;2015-03-20 17:14:35&quot;,&quot;00:01:00&quot;,&quot;Seconds&quot;,,,&quot;/subscriptions/b91eb07f-89c3-40be-bf3b-40fdcba10f6c/resourceGroups/Default-Web-EastUS/providers/microsoft.web/sites/website1&quot; -</maml:para> +&quot;AverageResponseTime&quot;,&quot;2015-03-20 16:18:00&quot;,&quot;1&quot;,,,,&quot;0&quot;,&quot;0&quot;,&quot;2015-03-20 16:14:00&quot;,&quot;2015-03-20 17:14:35&quot;,&quot;00:01:00&quot;,&quot;Seconds&quot;,,,&quot;/subscriptions/b91eb07f-89c3-40be-bf3b-40fdcba10f6c/resourceGroups/Default-Web-EastUS/providers/microsoft.web/sites/website1&quot;</maml:para> </dev:remarks> <command:commandLines> <command:commandLine> @@ -3285,6 +3284,10 @@ The value must be earlier than StartTime, but not more than 15 days.</maml:para> <maml:linkText>Get-AzureResourceProviderLog</maml:linkText> <maml:uri></maml:uri> </maml:navigationLink> + <maml:navigationLink> + <maml:linkText>Online Version:</maml:linkText> + <maml:uri>http://go.microsoft.com/fwlink/?LinkID=397618</maml:uri> + </maml:navigationLink> </maml:relatedLinks> </command:command> <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> @@ -4575,7 +4578,8 @@ Unit : Bytes</maml:para> <maml:description/> </dev:type> <maml:description> -<maml:para /> + <maml:para> + </maml:para> </maml:description> </command:returnValue> </command:returnValues> @@ -4620,8 +4624,7 @@ Properties : {} ResourceId : /subscriptions/e3f5b07d-3c39-4b0f-bf3b-40fdeba10f2a/resourceGroups/Default-Web-EastUS/providers/microsoft.web/sites/website3 StartTime : 3/20/2015 5:40:00 PM TimeGrain : 00:01:00 -Unit : Bytes -</maml:para> +Unit : Bytes</maml:para> </dev:remarks> <command:commandLines> <command:commandLine> @@ -4674,8 +4677,7 @@ EndTime : 3/20/2015 6:43:33 PM ResourceId : /subscriptions/e3f5b07d-3c39-4b0f-bf3b-40fdeba10f2a/resourceGroups/Default-Web-EastUS/providers/microsoft.web/sites/website3 StartTime : 3/20/2015 5:43:00 PM TimeGrain : 00:01:00 -Unit : Seconds -</maml:para> +Unit : Seconds</maml:para> </dev:remarks> <command:commandLines> <command:commandLine> @@ -4744,8 +4746,7 @@ EndTime : 3/20/2015 6:47:56 PM ResourceId : /subscriptions/e3f5b07d-3c39-4b0f-bf3b-40fdeba10f2a/resourceGroups/Default-Web-EastUS/providers/microsoft.web/sites/website3 StartTime : 3/20/2015 5:47:00 PM TimeGrain : 00:01:00 -Unit : Count -</maml:para> +Unit : Count</maml:para> </dev:remarks> <command:commandLines> <command:commandLine> @@ -4772,6 +4773,206 @@ Unit : Count </maml:relatedLinks> </command:command> <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> +<!--Generated by PS Cmdlet Help Editor--> + <command:details> + <command:name>Get-UsageMetrics</command:name> + <maml:description> + <maml:para>Retrieves the usage metric values of a resource.</maml:para> + </maml:description> + <maml:copyright> + <maml:para /> + </maml:copyright> + <command:verb>Get</command:verb> + <command:noun>UsageMetrics</command:noun> + <dev:version /> + </command:details> + <maml:description> + <maml:para>Retrieves the usage metric values of a resource that comply with certain criteria.</maml:para> + </maml:description> + <command:syntax> + <command:syntaxItem> + <maml:name>Get-UsageMetrics</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="0"> + <maml:name>ResourceId</maml:name> + <maml:description> + <maml:para>The id of the resource the metric is associated to.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>ApiVersion</maml:name> + <maml:description> + <maml:para>Api version string, e.g.: 2014-04-01 (default values), accepted by the resource provider.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>StartTime</maml:name> + <maml:description> + <maml:para>Earliest Date/Time to search for metric values.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">DateTime</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>EndTime</maml:name> + <maml:description> + <maml:para>Latest Time/Date to search for metric values.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">DateTime</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>MetricNames</maml:name> + <maml:description> + <maml:para>An array of names of metrics to retrieve their values.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="true">String[]</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para>In-memory profile (AzureProfile).</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + </command:parameter> + </command:syntaxItem> + </command:syntax> + <command:parameters> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="0"> + <maml:name>ResourceId</maml:name> + <maml:description> + <maml:para>The id of the resource the metric is associated to.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>ApiVersion</maml:name> + <maml:description> + <maml:para>Api version string, e.g.: 2014-04-01 (default values), accepted by the resource provider.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>StartTime</maml:name> + <maml:description> + <maml:para>Earliest Date/Time to search for metric values.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">DateTime</command:parameterValue> + <dev:type> + <maml:name>DateTime</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue>EndTime - 1 hour</dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>EndTime</maml:name> + <maml:description> + <maml:para>Latest Time/Date to search for metric values.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">DateTime</command:parameterValue> + <dev:type> + <maml:name>DateTime</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue>Local current date/time.</dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>MetricNames</maml:name> + <maml:description> + <maml:para>An array of names of metrics to retrieve their values.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="true">String[]</command:parameterValue> + <dev:type> + <maml:name>String[]</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para>In-memory profile (AzureProfile).</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + <dev:type> + <maml:name>AzureProfile</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + </command:parameters> + <command:inputTypes> + <command:inputType> + <dev:type> + <maml:name></maml:name> + <maml:uri></maml:uri> + <maml:description/> + </dev:type> + <maml:description> +<maml:para /> + </maml:description> + </command:inputType> + </command:inputTypes> + <command:returnValues> + <command:returnValue> + <dev:type> + <maml:name></maml:name> + <maml:uri></maml:uri> + <maml:description/> + </dev:type> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:returnValue> + </command:returnValues> + <command:terminatingErrors></command:terminatingErrors> + <command:nonTerminatingErrors></command:nonTerminatingErrors> + <maml:alertSet> + <maml:title></maml:title> + <maml:alert> + <maml:para /> + </maml:alert> + </maml:alertSet> + <command:examples> + <command:example> + <maml:title>-------------------------- Example 1: Querying with resaourceId only --------------------------</maml:title> + <maml:introduction> + <maml:paragraph>PS C:\&gt;</maml:paragraph> + </maml:introduction> + <dev:code>get-usagemetrics -res /subscriptions/bcdeb07f-1c43-20be-1f3b-4f0febc10f5b/resourceGroups/Default-Web-EastUS/providers/microsoft.web/sites/johnsmith</dev:code> + <dev:remarks> + <maml:para>Query the usage metrics for a website</maml:para> + <maml:para /> + <maml:para /> + <maml:para /> + </dev:remarks> + <command:commandLines> + <command:commandLine> + <command:commandText> + <maml:para /> + </command:commandText> + </command:commandLine> + </command:commandLines> + </command:example> + </command:examples> + <maml:relatedLinks> + <maml:navigationLink> + <maml:linkText>Online Version:</maml:linkText> + <maml:uri>http://go.microsoft.com/fwlink/?LinkID=397618</maml:uri> + </maml:navigationLink> + </maml:relatedLinks> +</command:command> +<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> <!--Generated by PS Cmdlet Help Editor--> <command:details> <command:name>New-AutoscaleProfile</command:name> @@ -4820,23 +5021,37 @@ Unit : Count <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>StartTimeWindow</maml:name> + <maml:name>RecurrenceFrequency</maml:name> <maml:description> - <maml:para>The start of the time window.</maml:para> + <maml:para>The frequency of recurrence. The allowed values are: None, Second, Minute, Hour, Day, Week, Month, Year. Not all those values are supported.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="false">DateTime</command:parameterValue> + <command:parameterValue required="true" variableLength="false">RecurrenceFrequency</command:parameterValue> </command:parameter> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>EndTimeWindow</maml:name> + <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>ScheduleDays</maml:name> <maml:description> - <maml:para>The end of the time window.</maml:para> + <maml:para>A list of days scheduled.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="false">DateTime</command:parameterValue> + <command:parameterValue required="true" variableLength="true">List`1[String]</command:parameterValue> + </command:parameter> + <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>ScheduleHours</maml:name> + <maml:description> + <maml:para>A list of scheduled hours.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="true">List`1[Int32]</command:parameterValue> + </command:parameter> + <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>ScheduleMinutes</maml:name> + <maml:description> + <maml:para>List of scheduled minutes.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="true">List`1[Int32]</command:parameterValue> </command:parameter> <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>TimeWindowTimeZone</maml:name> + <maml:name>ScheduleTimeZone</maml:name> <maml:description> - <maml:para>The time zone of the time window.</maml:para> + <maml:para>The time zone of the schedule.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> @@ -4885,6 +5100,27 @@ Unit : Count </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>StartTimeWindow</maml:name> + <maml:description> + <maml:para>The start of the time window.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">DateTime</command:parameterValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>EndTimeWindow</maml:name> + <maml:description> + <maml:para>The end of the time window.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">DateTime</command:parameterValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>TimeWindowTimeZone</maml:name> + <maml:description> + <maml:para>The time zone of the time window.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> <maml:name>Rules</maml:name> <maml:description> @@ -4930,41 +5166,6 @@ Unit : Count </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>RecurrenceFrequency</maml:name> - <maml:description> - <maml:para>The frequency of recurrence. The allowed values are: None, Second, Minute, Hour, Day, Week, Month, Year. Not all those values are supported.</maml:para> - </maml:description> - <command:parameterValue required="true" variableLength="false">RecurrenceFrequency</command:parameterValue> - </command:parameter> - <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>ScheduleDays</maml:name> - <maml:description> - <maml:para>A list of days scheduled.</maml:para> - </maml:description> - <command:parameterValue required="true" variableLength="true">List`1[String]</command:parameterValue> - </command:parameter> - <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>ScheduleHours</maml:name> - <maml:description> - <maml:para>A list of scheduled hours.</maml:para> - </maml:description> - <command:parameterValue required="true" variableLength="true">List`1[Int32]</command:parameterValue> - </command:parameter> - <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>ScheduleMinutes</maml:name> - <maml:description> - <maml:para>List of scheduled minutes.</maml:para> - </maml:description> - <command:parameterValue required="true" variableLength="true">List`1[Int32]</command:parameterValue> - </command:parameter> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>ScheduleTimeZone</maml:name> - <maml:description> - <maml:para>The time zone of the schedule.</maml:para> - </maml:description> - <command:parameterValue required="true" variableLength="false">String</command:parameterValue> - </command:parameter> <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> <maml:name>Rules</maml:name> <maml:description> @@ -5031,117 +5232,117 @@ Unit : Count <dev:defaultValue></dev:defaultValue> </command:parameter> <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>StartTimeWindow</maml:name> + <maml:name>RecurrenceFrequency</maml:name> <maml:description> - <maml:para>The start of the time window.</maml:para> + <maml:para>The frequency of recurrence. The allowed values are: None, Second, Minute, Hour, Day, Week, Month, Year. Not all those values are supported.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="false">DateTime</command:parameterValue> + <command:parameterValue required="true" variableLength="false">RecurrenceFrequency</command:parameterValue> <dev:type> - <maml:name>DateTime</maml:name> + <maml:name>RecurrenceFrequency</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>EndTimeWindow</maml:name> + <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>ScheduleDays</maml:name> <maml:description> - <maml:para>The end of the time window.</maml:para> + <maml:para>A list of days scheduled.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="false">DateTime</command:parameterValue> + <command:parameterValue required="true" variableLength="true">List`1[String]</command:parameterValue> <dev:type> - <maml:name>DateTime</maml:name> + <maml:name>List`1[String]</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>TimeWindowTimeZone</maml:name> + <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>ScheduleHours</maml:name> <maml:description> - <maml:para>The time zone of the time window.</maml:para> + <maml:para>A list of scheduled hours.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <command:parameterValue required="true" variableLength="true">List`1[Int32]</command:parameterValue> <dev:type> - <maml:name>String</maml:name> + <maml:name>List`1[Int32]</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>Rules</maml:name> + <maml:name>ScheduleMinutes</maml:name> <maml:description> - <maml:para>The list of rules to add to the newly created profile.</maml:para> + <maml:para>List of scheduled minutes.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="true">List`1[ScaleRule]</command:parameterValue> + <command:parameterValue required="true" variableLength="true">List`1[Int32]</command:parameterValue> <dev:type> - <maml:name>List`1[ScaleRule]</maml:name> + <maml:name>List`1[Int32]</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>Profile</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>ScheduleTimeZone</maml:name> <maml:description> - <maml:para>In-memory profile (AzureProfile).</maml:para> + <maml:para>The time zone of the schedule.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> - <maml:name>AzureProfile</maml:name> + <maml:name>String</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>RecurrenceFrequency</maml:name> + <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>Rules</maml:name> <maml:description> - <maml:para>The frequency of recurrence. The allowed values are: None, Second, Minute, Hour, Day, Week, Month, Year. Not all those values are supported.</maml:para> + <maml:para>The list of rules to add to the newly created profile.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="false">RecurrenceFrequency</command:parameterValue> + <command:parameterValue required="true" variableLength="true">List`1[ScaleRule]</command:parameterValue> <dev:type> - <maml:name>RecurrenceFrequency</maml:name> + <maml:name>List`1[ScaleRule]</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>ScheduleDays</maml:name> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> <maml:description> - <maml:para>A list of days scheduled.</maml:para> + <maml:para>In-memory profile (AzureProfile).</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="true">List`1[String]</command:parameterValue> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> <dev:type> - <maml:name>List`1[String]</maml:name> + <maml:name>AzureProfile</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>ScheduleHours</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>StartTimeWindow</maml:name> <maml:description> - <maml:para>A list of scheduled hours.</maml:para> + <maml:para>The start of the time window.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="true">List`1[Int32]</command:parameterValue> + <command:parameterValue required="true" variableLength="false">DateTime</command:parameterValue> <dev:type> - <maml:name>List`1[Int32]</maml:name> + <maml:name>DateTime</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>ScheduleMinutes</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>EndTimeWindow</maml:name> <maml:description> - <maml:para>List of scheduled minutes.</maml:para> + <maml:para>The end of the time window.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="true">List`1[Int32]</command:parameterValue> + <command:parameterValue required="true" variableLength="false">DateTime</command:parameterValue> <dev:type> - <maml:name>List`1[Int32]</maml:name> + <maml:name>DateTime</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>ScheduleTimeZone</maml:name> + <maml:name>TimeWindowTimeZone</maml:name> <maml:description> - <maml:para>The time zone of the schedule.</maml:para> + <maml:para>The time zone of the time window.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> diff --git a/src/ResourceManager/Insights/Commands.Insights/OutputClasses/PSUsageMetric.cs b/src/ResourceManager/Insights/Commands.Insights/OutputClasses/PSUsageMetric.cs new file mode 100644 index 000000000000..5839ecd1a172 --- /dev/null +++ b/src/ResourceManager/Insights/Commands.Insights/OutputClasses/PSUsageMetric.cs @@ -0,0 +1,46 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Insights.Models; + +namespace Microsoft.Azure.Commands.Insights.OutputClasses +{ + /// <summary> + /// Wrapps around the UsageMetric and exposes a summary of the properties properties + /// </summary> + public class PSUsageMetric : UsageMetric + { + /// <summary> + /// Gets or sets the Name of the usage metric + /// </summary> + public new string Name { get; set; } + + /// <summary> + /// Initializes a new instance of the PSUsageMetric class. + /// </summary> + /// <param name="usageMetric">The input UsageMetric object</param> + public PSUsageMetric(UsageMetric usageMetric) + { + // Keep the original value (localized string, Dictionary, List) in the base + base.Name = usageMetric.Name; + + this.CurrentValue = usageMetric.CurrentValue; + this.Limit = usageMetric.Limit; + this.Name = usageMetric.Name != null ? usageMetric.Name.LocalizedValue : null; + this.NextResetTime = usageMetric.NextResetTime; + this.QuotaPeriod = usageMetric.QuotaPeriod; + this.Unit = usageMetric.Unit; + } + } +} diff --git a/src/ResourceManager/Insights/Commands.Insights/UsageMetrics/GetUsageMetricsCommand.cs b/src/ResourceManager/Insights/Commands.Insights/UsageMetrics/GetUsageMetricsCommand.cs new file mode 100644 index 000000000000..b39cc7590b51 --- /dev/null +++ b/src/ResourceManager/Insights/Commands.Insights/UsageMetrics/GetUsageMetricsCommand.cs @@ -0,0 +1,139 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Linq; +using System.Management.Automation; +using System.Text; +using System.Threading; +using Microsoft.Azure.Commands.Insights.OutputClasses; +using Microsoft.Azure.Insights.Models; + +namespace Microsoft.Azure.Commands.Insights.UsageMetrics +{ + /// <summary> + /// Get the list of usage metrics for a resource. + /// </summary> + [Cmdlet(VerbsCommon.Get, "UsageMetrics"), OutputType(typeof(PSUsageMetric[]))] + public class GetUsageMetricsCommand : InsightsClientCmdletBase + { + /// <summary> + /// Default value of the timerange to search for usage metrics + /// </summary> + public static readonly TimeSpan DefaultTimeRange = TimeSpan.FromHours(1); + + /// <summary> + /// Default API version string for the underlying RP. + /// The Insights backend gets the data from the RPs, and the RPs don not necessarily use the same API version. + /// </summary> + public static readonly string DefaultApiVersion = "2014-04-01"; + + /// <summary> + /// Gets or sets the ResourceId parameter of the cmdlet + /// </summary> + [Parameter(Position = 0, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The resource Id")] + [ValidateNotNullOrEmpty] + public string ResourceId { get; set; } + + /// <summary> + /// Gets or sets the ApiVersion parameter of the cmdlet + /// </summary> + [Parameter(ValueFromPipelineByPropertyName = true, HelpMessage = "The API version string")] + [ValidateNotNullOrEmpty] + public string ApiVersion { get; set; } + + /// <summary> + /// Gets or sets the starttime parameter of the cmdlet + /// </summary> + [Parameter(ValueFromPipelineByPropertyName = true, HelpMessage = "The start time of the query")] + public DateTime StartTime { get; set; } + + /// <summary> + /// Gets or sets the endtime parameter of the cmdlet + /// </summary> + [Parameter(ValueFromPipelineByPropertyName = true, HelpMessage = "The end time of the query")] + public DateTime EndTime { get; set; } + + /// <summary> + /// Gets or sets the metricnames parameter of the cmdlet + /// </summary> + [Parameter(ValueFromPipelineByPropertyName = true, HelpMessage = "The metric names of the query")] + [ValidateNotNullOrEmpty] + public string[] MetricNames { get; set; } + + /// <summary> + /// Process the general parameters (i.e. defined in this class). The particular parameters are a responsibility of the descendants after adding a method to process more parameters. + /// </summary> + /// <returns>The query filter to be used by the cmdlet</returns> + protected string ProcessParameters() + { + var buffer = new StringBuilder(); + if (this.MetricNames != null) + { + var metrics = this.MetricNames + .Select(n => string.Concat("name.value eq '", n, "'")) + .Aggregate((a, b) => string.Concat(a, " or ", b)); + + buffer.Append("("); + buffer.Append(metrics); + buffer.Append(")"); + } + + // EndTime defaults to Now + if (this.EndTime == default(DateTime)) + { + this.EndTime = DateTime.Now; + } + + // StartTime defaults to EndTime - DefaultTimeRange (NOTE: EndTime defaults to Now) + if (this.StartTime == default(DateTime)) + { + this.StartTime = this.EndTime.Subtract(DefaultTimeRange); + } + + buffer.Append(" and startTime eq "); + buffer.Append(this.StartTime.ToString("O")); + buffer.Append(" and endTime eq "); + buffer.Append(this.EndTime.ToString("O")); + + string queryFilter = buffer.ToString(); + if (queryFilter.StartsWith(" and ")) + { + queryFilter = queryFilter.Substring(4); + } + + return queryFilter.Trim(); + } + + /// <summary> + /// Execute the cmdlet + /// </summary> + protected override void ExecuteCmdletInternal() + { + string queryFilter = this.ProcessParameters(); + string apiVersion = this.ApiVersion ?? DefaultApiVersion; + + // Call the proper API methods to return a list of raw records. + // If fullDetails is present full details of the records displayed, otherwise only a summary of the values is displayed + UsageMetricListResponse response = this.InsightsClient.UsageMetricOperations + .ListAsync(resourceUri: this.ResourceId, filterString: queryFilter, apiVersion: apiVersion, cancellationToken: CancellationToken.None) + .Result; + var records = response.UsageMetricCollection.Value + .Select(e => new PSUsageMetric(e)) + .ToArray(); + + WriteObject(sendToPipeline: records); + } + } +} diff --git a/src/ResourceManager/Insights/Commands.Insights/packages.config b/src/ResourceManager/Insights/Commands.Insights/packages.config index d5aa7fa27338..22de9e39c385 100644 --- a/src/ResourceManager/Insights/Commands.Insights/packages.config +++ b/src/ResourceManager/Insights/Commands.Insights/packages.config @@ -4,7 +4,7 @@ <package id="Microsoft.Azure.Common" version="2.1.0" targetFramework="net45" /> <package id="Microsoft.Azure.Common.Authentication" version="1.0.25-preview" targetFramework="net45" /> <package id="Microsoft.Azure.Common.Dependencies" version="1.0.0" targetFramework="net45" /> - <package id="Microsoft.Azure.Insights" version="0.7.2-preview" targetFramework="net45" /> + <package id="Microsoft.Azure.Insights" version="0.7.7-preview" targetFramework="net45" /> <package id="Microsoft.Azure.Management.Resources" version="2.18.0-preview" targetFramework="net45" /> <package id="Microsoft.Bcl" version="1.1.9" targetFramework="net45" /> <package id="Microsoft.Bcl.Async" version="1.0.168" targetFramework="net45" /> diff --git a/src/ResourceManager/Network/Commands.Network/Microsoft.Azure.Commands.Network.dll-Help.xml b/src/ResourceManager/Network/Commands.Network/Microsoft.Azure.Commands.Network.dll-Help.xml index 01de6f856002..ce97bf4d1ee8 100644 --- a/src/ResourceManager/Network/Commands.Network/Microsoft.Azure.Commands.Network.dll-Help.xml +++ b/src/ResourceManager/Network/Commands.Network/Microsoft.Azure.Commands.Network.dll-Help.xml @@ -1,5 +1,5 @@ -<?xml version="1.0" encoding="utf-8"?><helpItems xmlns="http://msh" schema="maml"> -<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10"> +<?xml version="1.0" encoding="utf-8"?><helpItems schema="maml"> +<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> <!--Generated by PS Cmdlet Help Editor--> <command:details> <command:name>Add-AzureLoadBalancerBackendAddressPoolConfig</command:name> @@ -14,7 +14,6 @@ <dev:version /> </command:details> <maml:description> - <!--This is the Description section--> <maml:para>Add a new Backend Address Pool for an Azure Load Balancer</maml:para> </maml:description> <command:syntax> @@ -23,30 +22,23 @@ <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>Name</maml:name> <maml:description> - <maml:para>The name of the Backend Address Pool</maml:para> + <maml:para>The name of the Backend Address Pool.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue)" position="named"> <maml:name>LoadBalancer</maml:name> <maml:description> - <maml:para>The Load Balancer in which this Backend Address Pool will be created</maml:para> + <maml:para>The Load Balancer in which this Backend Address Pool will be created.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">PSLoadBalancer</command:parameterValue> </command:parameter> - <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"> - <maml:name>BackendIpConfigurationId</maml:name> - <maml:description> - <maml:para>A list of Backend IpConfig Id&#39;s to associate with this Backend Address Pool</maml:para> - </maml:description> - <command:parameterValue required="true" variableLength="true">List`1[String]</command:parameterValue> - </command:parameter> - <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"> - <maml:name>BackendIpConfiguration</maml:name> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> <maml:description> - <maml:para>A list of Backend IPs to associate with this Backend Address Pool</maml:para> + <maml:para /> </maml:description> - <command:parameterValue required="true" variableLength="true">List`1[PSNetworkInterfaceIpConfiguration]</command:parameterValue> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> </command:parameter> </command:syntaxItem> </command:syntax> @@ -54,7 +46,7 @@ <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>Name</maml:name> <maml:description> - <maml:para>The name of the Backend Address Pool</maml:para> + <maml:para>The name of the Backend Address Pool.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -66,7 +58,7 @@ <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue)" position="named"> <maml:name>LoadBalancer</maml:name> <maml:description> - <maml:para>The Load Balancer in which this Backend Address Pool will be created</maml:para> + <maml:para>The Load Balancer in which this Backend Address Pool will be created.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">PSLoadBalancer</command:parameterValue> <dev:type> @@ -75,26 +67,38 @@ </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + <dev:type> + <maml:name>AzureProfile</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>BackendIpConfigurationId</maml:name> <maml:description> - <maml:para>A list of Backend IpConfig Id&#39;s to associate with this Backend Address Pool</maml:para> + <maml:para>A list of Backend Ip Config Id&#39;s to associate with this Backend Address Pool.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="true">List`1[String]</command:parameterValue> + <command:parameterValue required="true" variableLength="false">list`1[string]</command:parameterValue> <dev:type> - <maml:name>List`1[String]</maml:name> + <maml:name>list`1[string]</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>BackendIpConfiguration</maml:name> <maml:description> - <maml:para>A list of Backend IPs to associate with this Backend Address Pool</maml:para> + <maml:para>A list of Backend Ips to associate with this Backend Address Pool.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="true">List`1[PSNetworkInterfaceIpConfiguration]</command:parameterValue> + <command:parameterValue required="true" variableLength="false">list`1[psnetworkinterfaceipconfiguration]</command:parameterValue> <dev:type> - <maml:name>List`1[PSNetworkInterfaceIpConfiguration]</maml:name> + <maml:name>list`1[psnetworkinterfaceipconfiguration]</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> @@ -104,49 +108,56 @@ <command:inputType> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> + <maml:description> + <maml:para> +</maml:para> + </maml:description> </command:inputType> </command:inputTypes> <command:returnValues> <command:returnValue> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> - </command:returnValue> - </command:returnValues> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:returnValue> + </command:returnValues> <command:terminatingErrors></command:terminatingErrors> <command:nonTerminatingErrors></command:nonTerminatingErrors> <maml:alertSet> <maml:title></maml:title> <maml:alert> - <maml:para></maml:para> + <maml:para /> </maml:alert> </maml:alertSet> <command:examples> <command:example> <maml:title>-------------------------- Example 1 --------------------------</maml:title> <maml:introduction> - <maml:para></maml:para> + <maml:paragraph>PS C:\&gt;</maml:paragraph> </maml:introduction> <dev:code>PS C:\&gt; $nic = Get-AzureNetworkInterface -name &quot;myNic&quot; -ResourceGroupName &quot;myrg&quot; - Get-AzureLoadBalander -Name &quot;myLB&quot; -ResourceGroupName &quot;myrg&quot; | Add-AzureLoadBalancerBackendAddressPoolConfig -Name $backendAddressPoolName2 -BackendIpConfiguration $nic.Properties.IpConfigurations[0] | Set-AzureLoadBalancer</dev:code> + Get-AzureLoadBalander -Name &quot;myLB&quot; -ResourceGroupName &quot;myrg&quot; | Add-AzureLoadBalancerBackendAddressPoolConfig -Name $backendAddressPoolName2 -BackendIpConfiguration $nic.IpConfigurations[0] | Set-AzureLoadBalancer</dev:code> <dev:remarks> + <maml:para /> + <maml:para /> + <maml:para /> <maml:para></maml:para> </dev:remarks> <command:commandLines> <command:commandLine> - <command:commandText></command:commandText> + <command:commandText> + <maml:para /> + </command:commandText> </command:commandLine> </command:commandLines> </command:example> @@ -154,7 +165,7 @@ <maml:relatedLinks> </maml:relatedLinks> </command:command> -<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10"> +<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> <!--Generated by PS Cmdlet Help Editor--> <command:details> <command:name>Add-AzureLoadBalancerFrontendIpConfig</command:name> @@ -169,7 +180,6 @@ <dev:version /> </command:details> <maml:description> - <!--This is the Description section--> <maml:para>Add a new Frontend Ip for an Azure Load Balancer</maml:para> </maml:description> <command:syntax> @@ -178,59 +188,66 @@ <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>Name</maml:name> <maml:description> - <maml:para>The name of the Frontend Ip</maml:para> + <maml:para>The name of the Frontend Ip.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue)" position="named"> <maml:name>LoadBalancer</maml:name> <maml:description> - <maml:para>The Load Balancer in which this Frontend Ip will be created</maml:para> + <maml:para>The Load Balancer in which this Frontend Ip will be created.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">PSLoadBalancer</command:parameterValue> </command:parameter> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>PrivateIpAddress</maml:name> <maml:description> - <maml:para>The PublicIpAddress object to associate with this Frontend</maml:para> + <maml:para>The Public Ip Address object to associate with this Frontend.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>SubnetId</maml:name> <maml:description> - <maml:para>The id of the Subnet in which this Frontend Ip will be created</maml:para> + <maml:para>The Id of the Subnet in which this Frontend Ip will be created.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>PublicIpAddressId</maml:name> <maml:description> - <maml:para>The id of the PublicIpAddress to associate with this Frontend Ip.</maml:para> + <maml:para>The Id of the Public Ip Address to associate with this Frontend Ip.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + </command:parameter> </command:syntaxItem> <command:syntaxItem> <maml:name>Add-AzureLoadBalancerFrontendIpConfig</maml:name> <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>Name</maml:name> <maml:description> - <maml:para>The name of the Frontend Ip</maml:para> + <maml:para>The name of the Frontend Ip.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue)" position="named"> <maml:name>LoadBalancer</maml:name> <maml:description> - <maml:para>The Load Balancer in which this Frontend Ip will be created</maml:para> + <maml:para>The Load Balancer in which this Frontend Ip will be created.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">PSLoadBalancer</command:parameterValue> </command:parameter> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>PrivateIpAddress</maml:name> <maml:description> - <maml:para>The PublicIpAddress object to associate with this Frontend</maml:para> + <maml:para>The Public Ip Address object to associate with this Frontend.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> @@ -244,17 +261,24 @@ <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>PublicIpAddress</maml:name> <maml:description> - <maml:para>The PublicIpAddress to associate with this Frontend Ip.</maml:para> + <maml:para>The Public Ip Address to associate with this Frontend Ip.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">PSPublicIpAddress</command:parameterValue> </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + </command:parameter> </command:syntaxItem> </command:syntax> <command:parameters> <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>Name</maml:name> <maml:description> - <maml:para>The name of the Frontend Ip</maml:para> + <maml:para>The name of the Frontend Ip.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -266,7 +290,7 @@ <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue)" position="named"> <maml:name>LoadBalancer</maml:name> <maml:description> - <maml:para>The Load Balancer in which this Frontend Ip will be created</maml:para> + <maml:para>The Load Balancer in which this Frontend Ip will be created.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">PSLoadBalancer</command:parameterValue> <dev:type> @@ -278,7 +302,7 @@ <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>PrivateIpAddress</maml:name> <maml:description> - <maml:para>The PublicIpAddress object to associate with this Frontend</maml:para> + <maml:para>The Public Ip Address object to associate with this Frontend.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -290,7 +314,7 @@ <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>SubnetId</maml:name> <maml:description> - <maml:para>The id of the Subnet in which this Frontend Ip will be created</maml:para> + <maml:para>The Id of the Subnet in which this Frontend Ip will be created.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -302,7 +326,7 @@ <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>PublicIpAddressId</maml:name> <maml:description> - <maml:para>The id of the PublicIpAddress to associate with this Frontend Ip.</maml:para> + <maml:para>The Id of the Public Ip Address to associate with this Frontend Ip.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -311,6 +335,18 @@ </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + <dev:type> + <maml:name>AzureProfile</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>Subnet</maml:name> <maml:description> @@ -326,7 +362,7 @@ <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>PublicIpAddress</maml:name> <maml:description> - <maml:para>The PublicIpAddress to associate with this Frontend Ip.</maml:para> + <maml:para>The Public Ip Address to associate with this Frontend Ip.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">PSPublicIpAddress</command:parameterValue> <dev:type> @@ -340,82 +376,99 @@ <command:inputType> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> + <maml:description> + <maml:para> +</maml:para> + </maml:description> </command:inputType> </command:inputTypes> <command:returnValues> <command:returnValue> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> - </command:returnValue> - </command:returnValues> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:returnValue> + </command:returnValues> <command:terminatingErrors></command:terminatingErrors> <command:nonTerminatingErrors></command:nonTerminatingErrors> <maml:alertSet> <maml:title></maml:title> <maml:alert> - <maml:para></maml:para> + <maml:para /> </maml:alert> </maml:alertSet> <command:examples> <command:example> <maml:title>-------------------------- Example 1 --------------------------</maml:title> <maml:introduction> - <maml:para></maml:para> + <maml:paragraph>PS C:\&gt;</maml:paragraph> </maml:introduction> <dev:code>PS C:\&gt; $subnet = Get-AzureVirtualNetwork -Name &quot;myVnet&quot; -ResourceGroupName &quot;myRg&quot; | Get-AzureVirtualNetworkSubnetConfig -name &quot;mysubnet&quot; Get-AzureLoadBalancer -Name &quot;myLB&quot; -ResourceGroupName &quot;NrpTest&quot; | Add-AzureLoadBalancerFrontendIpConfig -Name &quot;frontendName&quot; -Subnet $subnet | Set-AzureLoadBalancer</dev:code> <dev:remarks> <maml:para>Adds a FrontendIpConfig to the loadbalancer with a dynamic privateIPAddress from the specified subnet</maml:para> + <maml:para /> + <maml:para /> + <maml:para></maml:para> </dev:remarks> <command:commandLines> <command:commandLine> - <command:commandText></command:commandText> + <command:commandText> + <maml:para /> + </command:commandText> </command:commandLine> </command:commandLines> </command:example> <command:example> <maml:title>-------------------------- Example 2 --------------------------</maml:title> <maml:introduction> - <maml:para></maml:para> + <maml:paragraph>PS C:\&gt;</maml:paragraph> </maml:introduction> <dev:code>PS C:\&gt; $subnet = Get-AzureVirtualNetwork -Name &quot;myVnet&quot; -ResourceGroupName &quot;myRg&quot; | Get-AzureVirtualNetworkSubnetConfig -name &quot;mysubnet&quot; Get-AzureLoadBalancer -Name &quot;myLB&quot; -ResourceGroupName &quot;NrpTest&quot; | Add-AzureLoadBalancerFrontendIpConfig -Name &quot;frontendName&quot; -Subnet $subnet -PrivateIpAddress &quot;10.0.1.6&quot; | Set-AzureLoadBalancer</dev:code> <dev:remarks> <maml:para>Adds a FrontendIpConfig to the loadbalancer with a static privateIPAddress from the specified subnet</maml:para> + <maml:para /> + <maml:para /> + <maml:para></maml:para> </dev:remarks> <command:commandLines> <command:commandLine> - <command:commandText></command:commandText> + <command:commandText> + <maml:para /> + </command:commandText> </command:commandLine> </command:commandLines> </command:example> <command:example> <maml:title>-------------------------- Example 3 --------------------------</maml:title> <maml:introduction> - <maml:para></maml:para> + <maml:paragraph>PS C:\&gt;</maml:paragraph> </maml:introduction> <dev:code>PS C:\&gt; $publicip = Get-AzurePublicIpAddress -ResourceGroupName &quot;myRG&quot; -name &quot;myPub&quot; Get-AzureLoadBalancer -Name &quot;myLB&quot; -ResourceGroupName &quot;NrpTest&quot; | Add-AzureLoadBalancerFrontendIpConfig -Name &quot;frontendName&quot; -PublicIpAddress $publicip | Set-AzureLoadBalancer</dev:code> <dev:remarks> <maml:para>Adds a FrontendIpConfig to the loadbalancer with a publicIP address</maml:para> + <maml:para /> + <maml:para /> + <maml:para></maml:para> </dev:remarks> <command:commandLines> <command:commandLine> - <command:commandText></command:commandText> + <command:commandText> + <maml:para /> + </command:commandText> </command:commandLine> </command:commandLines> </command:example> @@ -423,7 +476,7 @@ <maml:relatedLinks> </maml:relatedLinks> </command:command> -<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10"> +<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> <!--Generated by PS Cmdlet Help Editor--> <command:details> <command:name>Add-AzureLoadBalancerInboundNatRuleConfig</command:name> @@ -438,7 +491,6 @@ <dev:version /> </command:details> <maml:description> - <!--This is the Description section--> <maml:para>Add a new Inbound NAT Rule to an Azure Load Balancer</maml:para> </maml:description> <command:syntax> @@ -447,51 +499,43 @@ <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>Name</maml:name> <maml:description> - <maml:para>The name of the Inbound NAT Rule</maml:para> + <maml:para>The name of the Inbound NAT Rule.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue)" position="named"> <maml:name>LoadBalancer</maml:name> <maml:description> - <maml:para>The Load Balancer in which this Inbound NAT Rule will be created</maml:para> + <maml:para>The Load Balancer in which this Inbound NAT Rule will be created.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">PSLoadBalancer</command:parameterValue> </command:parameter> - <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"> - <maml:name>FrontendIPConfigurationId</maml:name> - <maml:description> - <maml:para>A list of Frontend Ip Id&#39;s to associate with this Inbound NAT Rule</maml:para> - </maml:description> - <command:parameterValue required="true" variableLength="true">List`1[String]</command:parameterValue> - </command:parameter> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>BackendIpConfigurationId</maml:name> + <maml:name>FrontendIpConfigurationId</maml:name> <maml:description> - <maml:para>The id of a BackendIpConfiguration to associate with this Inbound NAT Rule</maml:para> + <maml:para>A list of Frontend Ip Id&#39;s to associate with this Inbound NAT Rule.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>Protocol</maml:name> <maml:description> - <maml:para>The Protocol matched by this Inbound NAT Rule. - - Options: Tcp or Udp.</maml:para> + <maml:para>The protocol matched by this Inbound NAT Rule.</maml:para> + <maml:para> Options: Tcp or Udp.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>FrontendPort</maml:name> <maml:description> - <maml:para>The frontend port matched by this rule</maml:para> + <maml:para>The frontend port matched by this rule.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">Int32</command:parameterValue> </command:parameter> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>BackendPort</maml:name> <maml:description> - <maml:para>The backend port for traffic matched by this rule</maml:para> + <maml:para>The backend port for traffic matched by this rule.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">Int32</command:parameterValue> </command:parameter> @@ -505,61 +549,60 @@ <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>EnableFloatingIP</maml:name> <maml:description> - <maml:para></maml:para> + <maml:para>Enables Direct Server Return for this Load Balancer NAT Rule.</maml:para> </maml:description> <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + </command:parameter> </command:syntaxItem> <command:syntaxItem> <maml:name>Add-AzureLoadBalancerInboundNatRuleConfig</maml:name> <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>Name</maml:name> <maml:description> - <maml:para>The name of the Inbound NAT Rule</maml:para> + <maml:para>The name of the Inbound NAT Rule.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue)" position="named"> <maml:name>LoadBalancer</maml:name> <maml:description> - <maml:para>The Load Balancer in which this Inbound NAT Rule will be created</maml:para> + <maml:para>The Load Balancer in which this Inbound NAT Rule will be created.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">PSLoadBalancer</command:parameterValue> </command:parameter> - <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"> - <maml:name>FrontendIpConfiguration</maml:name> - <maml:description> - <maml:para>A list of Frontend IP to associate with this Inbound NAT Rule.</maml:para> - </maml:description> - <command:parameterValue required="true" variableLength="true">List`1[PSFrontendIpConfiguration]</command:parameterValue> - </command:parameter> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>BackendIpConfiguration</maml:name> + <maml:name>FrontendIpConfiguration</maml:name> <maml:description> - <maml:para>The Backend IpConfiguration to associate with this Inbound NAT Rule</maml:para> + <maml:para>A list of Frontend Ips to associate with this Inbound NAT Rule.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="false">PSNetworkInterfaceIpConfiguration</command:parameterValue> + <command:parameterValue required="true" variableLength="false">PSFrontendIPConfiguration</command:parameterValue> </command:parameter> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>Protocol</maml:name> <maml:description> - <maml:para>The Protocol matched by this Inbound NAT Rule. - - Options: Tcp or Udp.</maml:para> + <maml:para>The protocol matched by this Inbound NAT Rule.</maml:para> + <maml:para> Options: Tcp or Udp.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>FrontendPort</maml:name> <maml:description> - <maml:para>The frontend port matched by this rule</maml:para> + <maml:para>The frontend port matched by this rule.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">Int32</command:parameterValue> </command:parameter> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>BackendPort</maml:name> <maml:description> - <maml:para>The backend port for traffic matched by this rule</maml:para> + <maml:para>The backend port for traffic matched by this rule.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">Int32</command:parameterValue> </command:parameter> @@ -573,17 +616,24 @@ <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>EnableFloatingIP</maml:name> <maml:description> - <maml:para></maml:para> + <maml:para>Enables Direct Server Return for this Load Balancer NAT Rule.</maml:para> </maml:description> <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + </command:parameter> </command:syntaxItem> </command:syntax> <command:parameters> <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>Name</maml:name> <maml:description> - <maml:para>The name of the Inbound NAT Rule</maml:para> + <maml:para>The name of the Inbound NAT Rule.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -595,7 +645,7 @@ <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue)" position="named"> <maml:name>LoadBalancer</maml:name> <maml:description> - <maml:para>The Load Balancer in which this Inbound NAT Rule will be created</maml:para> + <maml:para>The Load Balancer in which this Inbound NAT Rule will be created.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">PSLoadBalancer</command:parameterValue> <dev:type> @@ -604,22 +654,10 @@ </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"> - <maml:name>FrontendIPConfigurationId</maml:name> - <maml:description> - <maml:para>A list of Frontend Ip Id&#39;s to associate with this Inbound NAT Rule</maml:para> - </maml:description> - <command:parameterValue required="true" variableLength="true">List`1[String]</command:parameterValue> - <dev:type> - <maml:name>List`1[String]</maml:name> - <maml:uri/> - </dev:type> - <dev:defaultValue></dev:defaultValue> - </command:parameter> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>BackendIpConfigurationId</maml:name> + <maml:name>FrontendIpConfigurationId</maml:name> <maml:description> - <maml:para>The id of a BackendIpConfiguration to associate with this Inbound NAT Rule</maml:para> + <maml:para>A list of Frontend Ip Id&#39;s to associate with this Inbound NAT Rule.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -631,9 +669,8 @@ <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>Protocol</maml:name> <maml:description> - <maml:para>The Protocol matched by this Inbound NAT Rule. - - Options: Tcp or Udp.</maml:para> + <maml:para>The protocol matched by this Inbound NAT Rule.</maml:para> + <maml:para> Options: Tcp or Udp.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -645,7 +682,7 @@ <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>FrontendPort</maml:name> <maml:description> - <maml:para>The frontend port matched by this rule</maml:para> + <maml:para>The frontend port matched by this rule.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">Int32</command:parameterValue> <dev:type> @@ -657,7 +694,7 @@ <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>BackendPort</maml:name> <maml:description> - <maml:para>The backend port for traffic matched by this rule</maml:para> + <maml:para>The backend port for traffic matched by this rule.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">Int32</command:parameterValue> <dev:type> @@ -681,7 +718,7 @@ <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>EnableFloatingIP</maml:name> <maml:description> - <maml:para></maml:para> + <maml:para>Enables Direct Server Return for this Load Balancer NAT Rule.</maml:para> </maml:description> <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> <dev:type> @@ -690,14 +727,38 @@ </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + <dev:type> + <maml:name>AzureProfile</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>FrontendIpConfiguration</maml:name> <maml:description> - <maml:para>A list of Frontend IP to associate with this Inbound NAT Rule.</maml:para> + <maml:para>A list of Frontend Ips to associate with this Inbound NAT Rule.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">PSFrontendIPConfiguration</command:parameterValue> + <dev:type> + <maml:name>PSFrontendIPConfiguration</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>BackendIpConfigurationId</maml:name> + <maml:description> + <maml:para>The Id of a Backend Ip Configuration to associate with this Inbound NAT Rule.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="true">List`1[PSFrontendIpConfiguration]</command:parameterValue> + <command:parameterValue required="true" variableLength="false">string</command:parameterValue> <dev:type> - <maml:name>List`1[PSFrontendIpConfiguration]</maml:name> + <maml:name>string</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> @@ -705,11 +766,11 @@ <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>BackendIpConfiguration</maml:name> <maml:description> - <maml:para>The Backend IpConfiguration to associate with this Inbound NAT Rule</maml:para> + <maml:para>The Backend Ip Configuration to associate with this Inbound NAT Rule.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="false">PSNetworkInterfaceIpConfiguration</command:parameterValue> + <command:parameterValue required="true" variableLength="false">psnetworkinterfaceipconfiguration</command:parameterValue> <dev:type> - <maml:name>PSNetworkInterfaceIpConfiguration</maml:name> + <maml:name>psnetworkinterfaceipconfiguration</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> @@ -719,49 +780,56 @@ <command:inputType> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> + <maml:description> + <maml:para> +</maml:para> + </maml:description> </command:inputType> </command:inputTypes> <command:returnValues> <command:returnValue> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> - </command:returnValue> - </command:returnValues> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:returnValue> + </command:returnValues> <command:terminatingErrors></command:terminatingErrors> <command:nonTerminatingErrors></command:nonTerminatingErrors> <maml:alertSet> <maml:title></maml:title> <maml:alert> - <maml:para></maml:para> + <maml:para /> </maml:alert> </maml:alertSet> <command:examples> <command:example> <maml:title>-------------------------- Example 1 --------------------------</maml:title> <maml:introduction> - <maml:para></maml:para> + <maml:paragraph>PS C:\&gt;</maml:paragraph> </maml:introduction> <dev:code>PS C:\&gt; $lb = Get-AzureLoadBalancer -Name &quot;myLb&quot; -ResourceGroupName &quot;myRg&quot; - $lb | Add-AzureLoadBalancerInboundNatRuleConfig -Name &quot;natRule&quot; -FrontendIPConfiguration$lb.Properties.FrontendIPConfigurations[0] -BackendIpConfiguration $nic.Properties.IpConfigurations[0] -Protocol Tcp -FrontendPort 3350 -BackendPort 3350 -IdleTimeoutInSeconds 17 -EnableFloatingIP | Set-AzureLoadBalancer</dev:code> + $lb | Add-AzureLoadBalancerInboundNatRuleConfig -Name &quot;natRule&quot; -FrontendIPConfiguration$lb.FrontendIPConfigurations[0] -BackendIpConfiguration $nic.IpConfigurations[0] -Protocol Tcp -FrontendPort 3350 -BackendPort 3350 -IdleTimeoutInSeconds 17 -EnableFloatingIP | Set-AzureLoadBalancer</dev:code> <dev:remarks> + <maml:para /> + <maml:para /> + <maml:para /> <maml:para></maml:para> </dev:remarks> <command:commandLines> <command:commandLine> - <command:commandText></command:commandText> + <command:commandText> + <maml:para /> + </command:commandText> </command:commandLine> </command:commandLines> </command:example> @@ -769,7 +837,7 @@ <maml:relatedLinks> </maml:relatedLinks> </command:command> -<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10"> +<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> <!--Generated by PS Cmdlet Help Editor--> <command:details> <command:name>Add-AzureLoadBalancerProbeConfig</command:name> @@ -784,7 +852,6 @@ <dev:version /> </command:details> <maml:description> - <!--This is the Description section--> <maml:para>Add a new Probe configuration to an Azure Load Balancer</maml:para> </maml:description> <command:syntax> @@ -793,61 +860,67 @@ <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>Name</maml:name> <maml:description> - <maml:para>The name of the Probe configuration</maml:para> + <maml:para>The name of the probe configuration.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue)" position="named"> <maml:name>LoadBalancer</maml:name> <maml:description> - <maml:para>The Load Balancer in which this Probe configuration will be created</maml:para> + <maml:para>The Load Balancer in which this probe configuration will be created.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">PSLoadBalancer</command:parameterValue> </command:parameter> <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>RequestPath</maml:name> <maml:description> - <maml:para>The path within the load balanced service to probe to determine health</maml:para> + <maml:para>The path within the load balanced service to probe to determine health.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>Protocol</maml:name> <maml:description> - <maml:para>The Protocol to use for the probing. - - Options: Tcp or Http</maml:para> + <maml:para>The protocol to use for the probing.</maml:para> + <maml:para> Options: Tcp or Http</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>Port</maml:name> <maml:description> - <maml:para>The port on which probes should connect to the load balanced service</maml:para> + <maml:para>The port on which probes should connect to the load balanced service.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">Int32</command:parameterValue> </command:parameter> <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>IntervalInSeconds</maml:name> <maml:description> - <maml:para>The interval between probes to each instance of the load balanced service</maml:para> + <maml:para>The interval between probes to each instance of the load balanced service.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">Int32</command:parameterValue> </command:parameter> <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>ProbeCount</maml:name> <maml:description> - <maml:para>The number of per-instance consecutive failures for an instance to be considered unhealthy</maml:para> + <maml:para>The number of per-instance consecutive failures for an instance to be considered unhealthy.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">Int32</command:parameterValue> </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + </command:parameter> </command:syntaxItem> </command:syntax> <command:parameters> <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>Name</maml:name> <maml:description> - <maml:para>The name of the Probe configuration</maml:para> + <maml:para>The name of the probe configuration.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -859,7 +932,7 @@ <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue)" position="named"> <maml:name>LoadBalancer</maml:name> <maml:description> - <maml:para>The Load Balancer in which this Probe configuration will be created</maml:para> + <maml:para>The Load Balancer in which this probe configuration will be created.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">PSLoadBalancer</command:parameterValue> <dev:type> @@ -871,7 +944,7 @@ <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>RequestPath</maml:name> <maml:description> - <maml:para>The path within the load balanced service to probe to determine health</maml:para> + <maml:para>The path within the load balanced service to probe to determine health.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -883,9 +956,8 @@ <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>Protocol</maml:name> <maml:description> - <maml:para>The Protocol to use for the probing. - - Options: Tcp or Http</maml:para> + <maml:para>The protocol to use for the probing.</maml:para> + <maml:para> Options: Tcp or Http</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -897,7 +969,7 @@ <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>Port</maml:name> <maml:description> - <maml:para>The port on which probes should connect to the load balanced service</maml:para> + <maml:para>The port on which probes should connect to the load balanced service.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">Int32</command:parameterValue> <dev:type> @@ -909,7 +981,7 @@ <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>IntervalInSeconds</maml:name> <maml:description> - <maml:para>The interval between probes to each instance of the load balanced service</maml:para> + <maml:para>The interval between probes to each instance of the load balanced service.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">Int32</command:parameterValue> <dev:type> @@ -921,7 +993,7 @@ <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>ProbeCount</maml:name> <maml:description> - <maml:para>The number of per-instance consecutive failures for an instance to be considered unhealthy</maml:para> + <maml:para>The number of per-instance consecutive failures for an instance to be considered unhealthy.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">Int32</command:parameterValue> <dev:type> @@ -930,52 +1002,71 @@ </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + <dev:type> + <maml:name>AzureProfile</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> </command:parameters> <command:inputTypes> <command:inputType> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> + <maml:description> + <maml:para> +</maml:para> + </maml:description> </command:inputType> </command:inputTypes> <command:returnValues> <command:returnValue> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> - </command:returnValue> - </command:returnValues> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:returnValue> + </command:returnValues> <command:terminatingErrors></command:terminatingErrors> <command:nonTerminatingErrors></command:nonTerminatingErrors> <maml:alertSet> <maml:title></maml:title> <maml:alert> - <maml:para></maml:para> + <maml:para /> </maml:alert> </maml:alertSet> <command:examples> <command:example> <maml:title>-------------------------- Example 1 --------------------------</maml:title> <maml:introduction> - <maml:para></maml:para> + <maml:paragraph>PS C:\&gt;</maml:paragraph> </maml:introduction> <dev:code>PS C:\&gt; Get-AzureLoadBalancer -Name &quot;myLb&quot; -ResourceGroupName &quot;myRg&quot; | Add-AzureLoadBalancerProbeConfig -Name &quot;probeName&quot; -RequestPath healthcheck2.aspx -Protocol http -Port 81 -IntervalInSeconds 16 -ProbeCount 3 | Set-AzureLoadBalancer</dev:code> <dev:remarks> + <maml:para /> + <maml:para /> + <maml:para /> <maml:para></maml:para> </dev:remarks> <command:commandLines> <command:commandLine> - <command:commandText></command:commandText> + <command:commandText> + <maml:para /> + </command:commandText> </command:commandLine> </command:commandLines> </command:example> @@ -983,7 +1074,7 @@ <maml:relatedLinks> </maml:relatedLinks> </command:command> -<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10"> +<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> <!--Generated by PS Cmdlet Help Editor--> <command:details> <command:name>Add-AzureLoadBalancerRuleConfig</command:name> @@ -998,7 +1089,6 @@ <dev:version /> </command:details> <maml:description> - <!--This is the Description section--> <maml:para>Add a new Load Balancer Rule to an Azure Load Balancer</maml:para> </maml:description> <command:syntax> @@ -1007,44 +1097,43 @@ <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>Name</maml:name> <maml:description> - <maml:para>The name of the Load Balancer Rule</maml:para> + <maml:para>The name of the Load Balancer Rule.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue)" position="named"> <maml:name>LoadBalancer</maml:name> <maml:description> - <maml:para>The Load Balancer in which this Load Balancer Rule will be created</maml:para> + <maml:para>The Load Balancer in which this Load Balancer Rule will be created.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">PSLoadBalancer</command:parameterValue> </command:parameter> - <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"> - <maml:name>FrontendIPConfigurationId</maml:name> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>FrontendIpConfigurationId</maml:name> <maml:description> - <maml:para>A list of Frontend Ip ID to associate with this Load Balancer Rule</maml:para> + <maml:para>A list of Frontend Ip Id to associate with this Load Balancer Rule.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="true">List`1[String]</command:parameterValue> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>BackendAddressPoolId</maml:name> <maml:description> - <maml:para>The ID of a BackendAddressPool to associate with this Load Balancer Rule</maml:para> + <maml:para>The Id of a Backend Address Pool to associate with this Load Balancer Rule.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>ProbeId</maml:name> <maml:description> - <maml:para>The ID of the Probe to associate with this Load Balancer Rule</maml:para> + <maml:para>The Id of the probe to associate with this Load Balancer Rule.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>Protocol</maml:name> <maml:description> - <maml:para>The Protocol matched by this Load Balancer Rule. - - Options: Tcp or Udp.</maml:para> + <maml:para>The protocol matched by this Load Balancer Rule.</maml:para> + <maml:para> Options: Tcp or Udp.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> @@ -1069,57 +1158,74 @@ </maml:description> <command:parameterValue required="true" variableLength="false">Int32</command:parameterValue> </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>LoadDistribution</maml:name> + <maml:description> + <maml:para>Specifies the load balancing distribution type to be used by the Load Balancer. +Possible values are +Default – The load balancer is configured to use a 5 tuple hash to map traffic to available servers +SourceIP – The load balancer is configured to use a 2 tuple hash to map traffic to available servers +SourceIPProtocol– The load balancer is configured to use a 3 tuple hash to map traffic to available servers</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>EnableFloatingIP</maml:name> <maml:description> - <maml:para></maml:para> + <maml:para>Floating IP is pertinent to failover scenarios: a “floating” IP is reassigned to a secondary server in case the primary server fails. Floating IP is required for SQL AlwaysOn.</maml:para> </maml:description> <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + </command:parameter> </command:syntaxItem> <command:syntaxItem> <maml:name>Add-AzureLoadBalancerRuleConfig</maml:name> <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>Name</maml:name> <maml:description> - <maml:para>The name of the Load Balancer Rule</maml:para> + <maml:para>The name of the Load Balancer Rule.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue)" position="named"> <maml:name>LoadBalancer</maml:name> <maml:description> - <maml:para>The Load Balancer in which this Load Balancer Rule will be created</maml:para> + <maml:para>The Load Balancer in which this Load Balancer Rule will be created.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">PSLoadBalancer</command:parameterValue> </command:parameter> - <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>FrontendIpConfiguration</maml:name> <maml:description> - <maml:para>A list of Frontend Ips to associate with this Load Balancer Rule</maml:para> + <maml:para>A list of Frontend Ips to associate with this Load Balancer Rule.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="true">List`1[PSFrontendIpConfiguration]</command:parameterValue> + <command:parameterValue required="true" variableLength="false">PSFrontendIPConfiguration</command:parameterValue> </command:parameter> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>BackendAddressPool</maml:name> <maml:description> - <maml:para>The Backend Address Pool to associate with this Load Balancer Rule</maml:para> + <maml:para>The Backend Address Pool to associate with this Load Balancer Rule.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">PSBackendAddressPool</command:parameterValue> </command:parameter> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>Probe</maml:name> <maml:description> - <maml:para></maml:para> + <maml:para>The probe object to be used for this Load Balancer Rule.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">PSProbe</command:parameterValue> </command:parameter> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>Protocol</maml:name> <maml:description> - <maml:para>The Protocol matched by this Load Balancer Rule. - - Options: Tcp or Udp.</maml:para> + <maml:para>The protocol matched by this Load Balancer Rule.</maml:para> + <maml:para> Options: Tcp or Udp.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> @@ -1144,20 +1250,38 @@ </maml:description> <command:parameterValue required="true" variableLength="false">Int32</command:parameterValue> </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>LoadDistribution</maml:name> + <maml:description> + <maml:para>Specifies the load balancing distribution type to be used by the Load Balancer. +Possible values are +Default – The load balancer is configured to use a 5 tuple hash to map traffic to available servers +SourceIP – The load balancer is configured to use a 2 tuple hash to map traffic to available servers +SourceIPProtocol– The load balancer is configured to use a 3 tuple hash to map traffic to available servers</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>EnableFloatingIP</maml:name> <maml:description> - <maml:para></maml:para> + <maml:para>Floating IP is pertinent to failover scenarios: a “floating” IP is reassigned to a secondary server in case the primary server fails. Floating IP is required for SQL AlwaysOn.</maml:para> </maml:description> <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + </command:parameter> </command:syntaxItem> </command:syntax> <command:parameters> <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>Name</maml:name> <maml:description> - <maml:para>The name of the Load Balancer Rule</maml:para> + <maml:para>The name of the Load Balancer Rule.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -1169,7 +1293,7 @@ <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue)" position="named"> <maml:name>LoadBalancer</maml:name> <maml:description> - <maml:para>The Load Balancer in which this Load Balancer Rule will be created</maml:para> + <maml:para>The Load Balancer in which this Load Balancer Rule will be created.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">PSLoadBalancer</command:parameterValue> <dev:type> @@ -1178,14 +1302,14 @@ </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"> - <maml:name>FrontendIPConfigurationId</maml:name> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>FrontendIpConfigurationId</maml:name> <maml:description> - <maml:para>A list of Frontend Ip ID to associate with this Load Balancer Rule</maml:para> + <maml:para>A list of Frontend Ip Id to associate with this Load Balancer Rule.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="true">List`1[String]</command:parameterValue> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> - <maml:name>List`1[String]</maml:name> + <maml:name>String</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> @@ -1193,7 +1317,7 @@ <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>BackendAddressPoolId</maml:name> <maml:description> - <maml:para>The ID of a BackendAddressPool to associate with this Load Balancer Rule</maml:para> + <maml:para>The Id of a Backend Address Pool to associate with this Load Balancer Rule.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -1205,7 +1329,7 @@ <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>ProbeId</maml:name> <maml:description> - <maml:para>The ID of the Probe to associate with this Load Balancer Rule</maml:para> + <maml:para>The Id of the probe to associate with this Load Balancer Rule.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -1217,9 +1341,8 @@ <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>Protocol</maml:name> <maml:description> - <maml:para>The Protocol matched by this Load Balancer Rule. - - Options: Tcp or Udp.</maml:para> + <maml:para>The protocol matched by this Load Balancer Rule.</maml:para> + <maml:para> Options: Tcp or Udp.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -1264,10 +1387,26 @@ </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>LoadDistribution</maml:name> + <maml:description> + <maml:para>Specifies the load balancing distribution type to be used by the Load Balancer. +Possible values are +Default – The load balancer is configured to use a 5 tuple hash to map traffic to available servers +SourceIP – The load balancer is configured to use a 2 tuple hash to map traffic to available servers +SourceIPProtocol– The load balancer is configured to use a 3 tuple hash to map traffic to available servers</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>EnableFloatingIP</maml:name> <maml:description> - <maml:para></maml:para> + <maml:para>Floating IP is pertinent to failover scenarios: a “floating” IP is reassigned to a secondary server in case the primary server fails. Floating IP is required for SQL AlwaysOn.</maml:para> </maml:description> <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> <dev:type> @@ -1276,14 +1415,26 @@ </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + <dev:type> + <maml:name>AzureProfile</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>FrontendIpConfiguration</maml:name> <maml:description> - <maml:para>A list of Frontend Ips to associate with this Load Balancer Rule</maml:para> + <maml:para>A list of Frontend Ips to associate with this Load Balancer Rule.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="true">List`1[PSFrontendIpConfiguration]</command:parameterValue> + <command:parameterValue required="true" variableLength="false">PSFrontendIPConfiguration</command:parameterValue> <dev:type> - <maml:name>List`1[PSFrontendIpConfiguration]</maml:name> + <maml:name>PSFrontendIPConfiguration</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> @@ -1291,7 +1442,7 @@ <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>BackendAddressPool</maml:name> <maml:description> - <maml:para>The Backend Address Pool to associate with this Load Balancer Rule</maml:para> + <maml:para>The Backend Address Pool to associate with this Load Balancer Rule.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">PSBackendAddressPool</command:parameterValue> <dev:type> @@ -1303,7 +1454,7 @@ <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>Probe</maml:name> <maml:description> - <maml:para></maml:para> + <maml:para>The probe object to be used for this Load Balancer Rule.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">PSProbe</command:parameterValue> <dev:type> @@ -1317,49 +1468,56 @@ <command:inputType> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> + <maml:description> + <maml:para> +</maml:para> + </maml:description> </command:inputType> </command:inputTypes> <command:returnValues> <command:returnValue> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> - </command:returnValue> - </command:returnValues> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:returnValue> + </command:returnValues> <command:terminatingErrors></command:terminatingErrors> <command:nonTerminatingErrors></command:nonTerminatingErrors> <maml:alertSet> <maml:title></maml:title> <maml:alert> - <maml:para></maml:para> + <maml:para /> </maml:alert> </maml:alertSet> <command:examples> <command:example> <maml:title>-------------------------- Example 1 --------------------------</maml:title> <maml:introduction> - <maml:para></maml:para> + <maml:paragraph>PS C:\&gt;</maml:paragraph> </maml:introduction> <dev:code>PS C:\&gt; $lb = Get-AzureLoadBalancer -Name &quot;myLb&quot; -ResourceGroupName &quot;myRg&quot; - $lb | Add-AzureLoadBalancerRuleConfig -Name &quot;lbruleName&quot; -FrontendIPConfiguration $lb.Properties.FrontendIPConfigurations[0] -BackendAddressPool $lb.Properties.BackendAddressPools[0] -Probe $lb.Properties.Probes[0] -Protocol Tcp -FrontendPort 80 -BackendPort 80 -IdleTimeoutInSeconds 15 -EnableFloatingIP | Set-AzureLoadBalancer</dev:code> + $lb | Add-AzureLoadBalancerRuleConfig -Name &quot;lbruleName&quot; -FrontendIPConfiguration $lb.FrontendIPConfigurations[0] -BackendAddressPool $lb.BackendAddressPools[0] -Probe $lb.Probes[0] -Protocol Tcp -FrontendPort 80 -BackendPort 80 -IdleTimeoutInSeconds 15 -EnableFloatingIP | Set-AzureLoadBalancer</dev:code> <dev:remarks> + <maml:para /> + <maml:para /> + <maml:para /> <maml:para></maml:para> </dev:remarks> <command:commandLines> <command:commandLine> - <command:commandText></command:commandText> + <command:commandText> + <maml:para /> + </command:commandText> </command:commandLine> </command:commandLines> </command:example> @@ -1367,86 +1525,141 @@ <maml:relatedLinks> </maml:relatedLinks> </command:command> -<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10"> +<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> <!--Generated by PS Cmdlet Help Editor--> <command:details> - <command:name>Add-AzureVirtualNetworkSubnetConfig</command:name> + <command:name>Add-AzureNetworkSecurityRuleConfig</command:name> <maml:description> - <maml:para>Creates a new Subnet with an existing Virtual Network</maml:para> + <maml:para>Add a new Network Security Rule to a Network Security Group</maml:para> </maml:description> <maml:copyright> <maml:para /> </maml:copyright> <command:verb>Add</command:verb> - <command:noun>AzureVirtualNetworkSubnetConfig</command:noun> + <command:noun>AzureNetworkSecurityRuleConfig</command:noun> <dev:version /> </command:details> <maml:description> - <!--This is the Description section--> - <maml:para>Creates a new Subnet with an existing Virtual Network</maml:para> + <maml:para>Add a new Network Security Rule to a Network Security Group</maml:para> </maml:description> <command:syntax> <command:syntaxItem> - <maml:name>Add-AzureVirtualNetworkSubnetConfig</maml:name> + <maml:name>Add-AzureNetworkSecurityRuleConfig</maml:name> <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>Name</maml:name> <maml:description> - <maml:para>The name of the Subnet.</maml:para> + <maml:para>The name of the Network Security Rule.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue)" position="named"> - <maml:name>VirtualNetwork</maml:name> + <maml:name>NetworkSecurityGroup</maml:name> <maml:description> - <maml:para>The Virtual Network object in which this subnet should be created</maml:para> + <maml:para>The Network Security Group object to which this Network Security Rule will be added.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="false">PSVirtualNetwork</command:parameterValue> + <command:parameterValue required="true" variableLength="false">PSNetworkSecurityGroup</command:parameterValue> </command:parameter> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>AddressPrefix</maml:name> + <maml:name>Description</maml:name> <maml:description> - <maml:para>The IP range covered by this Subnet</maml:para> + <maml:para>The description of the Network Security Rule.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> - <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"> - <maml:name>DnsServer</maml:name> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Protocol</maml:name> <maml:description> - <maml:para>The DNS Servers to be used for performing DNS lookups from this Subnet.</maml:para> + <maml:para>Network protocol this rule applies to. Can be Tcp, Udp or * to match both.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="true">List`1[String]</command:parameterValue> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> - </command:syntaxItem> - </command:syntax> - <command:parameters> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>Name</maml:name> - <maml:description> - <maml:para>The name of the Subnet.</maml:para> - </maml:description> - <command:parameterValue required="true" variableLength="false">String</command:parameterValue> - <dev:type> - <maml:name>String</maml:name> - <maml:uri/> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>SourcePortRange</maml:name> + <maml:description> + <maml:para>Source Port or Range. Integer or range between 0 and 65535 or * to match any.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>DestinationPortRange</maml:name> + <maml:description> + <maml:para>Destination Port or Range. Integer or range between 0 and 65535 or * to match any.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>SourceAddressPrefix</maml:name> + <maml:description> + <maml:para>CIDR or source IP range or * to match any IP. Tags such as ‘VirtualNetwork’, ‘AzureLoadBalancer’ and ‘Internet’ can also be used.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>DestinationAddressPrefix</maml:name> + <maml:description> + <maml:para>CIDR or destination IP range or * to match any IP. Tags such as ‘VirtualNetwork’, ‘AzureLoadBalancer’ and ‘Internet’ can also be used. </maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Access</maml:name> + <maml:description> + <maml:para>Specifies whether network traffic is allowed or denied. Possible values are “Allow” and “Deny”</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Priority</maml:name> + <maml:description> + <maml:para>Specifies the priority of the rule. The value can be between 100 and 4096. The priority number must be unique for each rule in the collection. The lower the priority number, the higher the priority of the rule.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">Int32</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Direction</maml:name> + <maml:description> + <maml:para>The direction specifies if rule will be evaluated on incoming or outgoing traffic. Possible values are “Inbound” and “Outbound”.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + </command:parameter> + </command:syntaxItem> + </command:syntax> + <command:parameters> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Name</maml:name> + <maml:description> + <maml:para>The name of the Network Security Rule.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue)" position="named"> - <maml:name>VirtualNetwork</maml:name> + <maml:name>NetworkSecurityGroup</maml:name> <maml:description> - <maml:para>The Virtual Network object in which this subnet should be created</maml:para> + <maml:para>The Network Security Group object to which this Network Security Rule will be added.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="false">PSVirtualNetwork</command:parameterValue> + <command:parameterValue required="true" variableLength="false">PSNetworkSecurityGroup</command:parameterValue> <dev:type> - <maml:name>PSVirtualNetwork</maml:name> + <maml:name>PSNetworkSecurityGroup</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>AddressPrefix</maml:name> + <maml:name>Description</maml:name> <maml:description> - <maml:para>The IP range covered by this Subnet</maml:para> + <maml:para>The description of the Network Security Rule.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -1455,93 +1668,46 @@ </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"> - <maml:name>DnsServer</maml:name> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Protocol</maml:name> <maml:description> - <maml:para>The DNS Servers to be used for performing DNS lookups from this Subnet.</maml:para> + <maml:para>Network protocol this rule applies to. Can be Tcp, Udp or * to match both.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="true">List`1[String]</command:parameterValue> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> - <maml:name>List`1[String]</maml:name> + <maml:name>String</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - </command:parameters> - <command:inputTypes> - <command:inputType> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>SourcePortRange</maml:name> + <maml:description> + <maml:para>Source Port or Range. Integer or range between 0 and 65535 or * to match any.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> - <maml:name></maml:name> + <maml:name>String</maml:name> <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> </dev:type> - <maml:description></maml:description> - </command:inputType> - </command:inputTypes> - <command:returnValues> - <command:returnValue> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>DestinationPortRange</maml:name> + <maml:description> + <maml:para>Destination Port or Range. Integer or range between 0 and 65535 or * to match any.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> - <maml:name></maml:name> + <maml:name>String</maml:name> <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> </dev:type> - <maml:description></maml:description> - </command:returnValue> - </command:returnValues> - <command:terminatingErrors></command:terminatingErrors> - <command:nonTerminatingErrors></command:nonTerminatingErrors> - <maml:alertSet> - <maml:title></maml:title> - <maml:alert> - <maml:para></maml:para> - </maml:alert> - </maml:alertSet> - <command:examples> - </command:examples> - <maml:relatedLinks> - </maml:relatedLinks> -</command:command> -<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10"> -<!--Generated by PS Cmdlet Help Editor--> - <command:details> - <command:name>Get-AzureCheckDnsAvailability</command:name> - <maml:description> - <maml:para>Checks whether a domain name in the cloudapp.net zone is available for use</maml:para> - </maml:description> - <maml:copyright> - <maml:para /> - </maml:copyright> - <command:verb>Get</command:verb> - <command:noun>AzureCheckDnsAvailability</command:noun> - <dev:version /> - </command:details> - <maml:description> - <!--This is the Description section--> - <maml:para>Checks whether a domain name in the cloudapp.net zone is available for use</maml:para> - </maml:description> - <command:syntax> - <command:syntaxItem> - <maml:name>Get-AzureCheckDnsAvailability</maml:name> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>DomainQualifiedName</maml:name> - <maml:description> - <maml:para>The domain name to be verified. - It must conform to the following regular expression: ^[a-z][a-z0-9-]{1,61}[a-z0-9]$.</maml:para> - </maml:description> - <command:parameterValue required="true" variableLength="false">String</command:parameterValue> - </command:parameter> - </command:syntaxItem> - </command:syntax> - <command:parameters> + <dev:defaultValue></dev:defaultValue> + </command:parameter> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>DomainQualifiedName</maml:name> + <maml:name>SourceAddressPrefix</maml:name> <maml:description> - <maml:para>The domain name to be verified. - It must conform to the following regular expression: ^[a-z][a-z0-9-]{1,61}[a-z0-9]$.</maml:para> + <maml:para>CIDR or source IP range or * to match any IP. Tags such as ‘VirtualNetwork’, ‘AzureLoadBalancer’ and ‘Internet’ can also be used.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -1550,98 +1716,46 @@ </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - </command:parameters> - <command:inputTypes> - <command:inputType> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>DestinationAddressPrefix</maml:name> + <maml:description> + <maml:para>CIDR or destination IP range or * to match any IP. Tags such as ‘VirtualNetwork’, ‘AzureLoadBalancer’ and ‘Internet’ can also be used. </maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> - <maml:name></maml:name> + <maml:name>String</maml:name> <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> </dev:type> - <maml:description></maml:description> - </command:inputType> - </command:inputTypes> - <command:returnValues> - <command:returnValue> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Access</maml:name> + <maml:description> + <maml:para>Specifies whether network traffic is allowed or denied. Possible values are “Allow” and “Deny”</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> - <maml:name></maml:name> + <maml:name>String</maml:name> <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> </dev:type> - <maml:description></maml:description> - </command:returnValue> - </command:returnValues> - <command:terminatingErrors></command:terminatingErrors> - <command:nonTerminatingErrors></command:nonTerminatingErrors> - <maml:alertSet> - <maml:title></maml:title> - <maml:alert> - <maml:para></maml:para> - </maml:alert> - </maml:alertSet> - <command:examples> - </command:examples> - <maml:relatedLinks> - </maml:relatedLinks> -</command:command> -<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10"> -<!--Generated by PS Cmdlet Help Editor--> - <command:details> - <command:name>Get-AzureLoadBalancer</command:name> - <maml:description> - <maml:para>Retrieve a single Load Balancer or a list of Load Balancers within a Resource Group</maml:para> - </maml:description> - <maml:copyright> - <maml:para /> - </maml:copyright> - <command:verb>Get</command:verb> - <command:noun>AzureLoadBalancer</command:noun> - <dev:version /> - </command:details> - <maml:description> - <!--This is the Description section--> - <maml:para>Retrieve a single Load Balancer or a list of Load Balancers within a Resource Group</maml:para> - </maml:description> - <command:syntax> - <command:syntaxItem> - <maml:name>Get-AzureLoadBalancer</maml:name> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>Name</maml:name> - <maml:description> - <maml:para>The name of the Load Balancer to retrieve</maml:para> - </maml:description> - <command:parameterValue required="true" variableLength="false">String</command:parameterValue> - </command:parameter> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>ResourceGroupName</maml:name> - <maml:description> - <maml:para>The name of the Resource Group containing the Load Balancer</maml:para> - </maml:description> - <command:parameterValue required="true" variableLength="false">String</command:parameterValue> - </command:parameter> - </command:syntaxItem> - </command:syntax> - <command:parameters> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>Name</maml:name> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Priority</maml:name> <maml:description> - <maml:para>The name of the Load Balancer to retrieve</maml:para> + <maml:para>Specifies the priority of the rule. The value can be between 100 and 4096. The priority number must be unique for each rule in the collection. The lower the priority number, the higher the priority of the rule.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <command:parameterValue required="true" variableLength="false">Int32</command:parameterValue> <dev:type> - <maml:name>String</maml:name> + <maml:name>Int32</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>ResourceGroupName</maml:name> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Direction</maml:name> <maml:description> - <maml:para>The name of the Resource Group containing the Load Balancer</maml:para> + <maml:para>The direction specifies if rule will be evaluated on incoming or outgoing traffic. Possible values are “Inbound” and “Outbound”.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -1650,37 +1764,49 @@ </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + <dev:type> + <maml:name>AzureProfile</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> </command:parameters> <command:inputTypes> <command:inputType> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> + <maml:description> +<maml:para /> + </maml:description> </command:inputType> </command:inputTypes> <command:returnValues> <command:returnValue> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> - </command:returnValue> - </command:returnValues> + <maml:description> +<maml:para /> + </maml:description> + </command:returnValue> + </command:returnValues> <command:terminatingErrors></command:terminatingErrors> <command:nonTerminatingErrors></command:nonTerminatingErrors> <maml:alertSet> <maml:title></maml:title> <maml:alert> - <maml:para></maml:para> + <maml:para /> </maml:alert> </maml:alertSet> <command:examples> @@ -1688,48 +1814,106 @@ <maml:relatedLinks> </maml:relatedLinks> </command:command> -<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10"> +<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> <!--Generated by PS Cmdlet Help Editor--> <command:details> - <command:name>Get-AzureLoadBalancerBackendAddressPoolConfig</command:name> + <command:name>Add-AzureVirtualNetworkSubnetConfig</command:name> <maml:description> - <maml:para>Retrieve a single Backend Address Pool or a list of Backend Address Pools within a Load Balancer</maml:para> + <maml:para>Creates a new Subnet with an existing Virtual Network</maml:para> </maml:description> <maml:copyright> <maml:para /> </maml:copyright> - <command:verb>Get</command:verb> - <command:noun>AzureLoadBalancerBackendAddressPoolConfig</command:noun> + <command:verb>Add</command:verb> + <command:noun>AzureVirtualNetworkSubnetConfig</command:noun> <dev:version /> </command:details> <maml:description> - <!--This is the Description section--> - <maml:para>Retrieve a single Backend Address Pool or a list of Backend Address Pools within a Load Balancer</maml:para> + <maml:para>Creates a new Subnet with an existing Virtual Network</maml:para> </maml:description> <command:syntax> <command:syntaxItem> - <maml:name>Get-AzureLoadBalancerBackendAddressPoolConfig</maml:name> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Add-AzureVirtualNetworkSubnetConfig</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>Name</maml:name> <maml:description> - <maml:para>The name of the LoadBalancer containing the Backend Address Pool</maml:para> + <maml:para>The name of the Subnet.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue)" position="named"> - <maml:name>LoadBalancer</maml:name> + <maml:name>VirtualNetwork</maml:name> <maml:description> - <maml:para>The name of the Backend Address Pool to retrieve.</maml:para> + <maml:para>The Virtual Network object in which this subnet should be created.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="false">PSLoadBalancer</command:parameterValue> + <command:parameterValue required="true" variableLength="false">PSVirtualNetwork</command:parameterValue> </command:parameter> - </command:syntaxItem> - </command:syntax> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>AddressPrefix</maml:name> + <maml:description> + <maml:para>The Ip range covered by this Subnet.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>NetworkSecurityGroup</maml:name> + <maml:description> + <maml:para>The Network Security Group object containing ACLs that will apply to this Subnet.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">PSNetworkSecurityGroup</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + </command:parameter> + </command:syntaxItem> + <command:syntaxItem> + <maml:name>Add-AzureVirtualNetworkSubnetConfig</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Name</maml:name> + <maml:description> + <maml:para>The name of the Subnet.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue)" position="named"> + <maml:name>VirtualNetwork</maml:name> + <maml:description> + <maml:para>The Virtual Network object in which this subnet should be created.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">PSVirtualNetwork</command:parameterValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>AddressPrefix</maml:name> + <maml:description> + <maml:para>The Ip range covered by this Subnet.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>NetworkSecurityGroupId</maml:name> + <maml:description> + <maml:para>A reference to the Network Security Group containing ACLs that will apply to this Subnet.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + </command:parameter> + </command:syntaxItem> + </command:syntax> <command:parameters> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>Name</maml:name> <maml:description> - <maml:para>The name of the LoadBalancer containing the Backend Address Pool</maml:para> + <maml:para>The name of the Subnet.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -1739,13 +1923,73 @@ <dev:defaultValue></dev:defaultValue> </command:parameter> <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue)" position="named"> - <maml:name>LoadBalancer</maml:name> + <maml:name>VirtualNetwork</maml:name> <maml:description> - <maml:para>The name of the Backend Address Pool to retrieve.</maml:para> + <maml:para>The Virtual Network object in which this subnet should be created.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="false">PSLoadBalancer</command:parameterValue> + <command:parameterValue required="true" variableLength="false">PSVirtualNetwork</command:parameterValue> <dev:type> - <maml:name>PSLoadBalancer</maml:name> + <maml:name>PSVirtualNetwork</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>AddressPrefix</maml:name> + <maml:description> + <maml:para>The Ip range covered by this Subnet.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>NetworkSecurityGroup</maml:name> + <maml:description> + <maml:para>The Network Security Group object containing ACLs that will apply to this Subnet.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">PSNetworkSecurityGroup</command:parameterValue> + <dev:type> + <maml:name>PSNetworkSecurityGroup</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + <dev:type> + <maml:name>AzureProfile</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>NetworkSecurityGroupId</maml:name> + <maml:description> + <maml:para>A reference to the Network Security Group containing ACLs that will apply to this Subnet.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>DnsServer</maml:name> + <maml:description> + <maml:para>The Dns servers to be used for performing Dns lookups from this Subnet.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">list`1[string]</command:parameterValue> + <dev:type> + <maml:name>list`1[string]</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> @@ -1755,32 +1999,34 @@ <command:inputType> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> + <maml:description> + <maml:para> +</maml:para> + </maml:description> </command:inputType> </command:inputTypes> <command:returnValues> <command:returnValue> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> - </command:returnValue> - </command:returnValues> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:returnValue> + </command:returnValues> <command:terminatingErrors></command:terminatingErrors> <command:nonTerminatingErrors></command:nonTerminatingErrors> <maml:alertSet> <maml:title></maml:title> <maml:alert> - <maml:para></maml:para> + <maml:para /> </maml:alert> </maml:alertSet> <command:examples> @@ -1788,48 +2034,57 @@ <maml:relatedLinks> </maml:relatedLinks> </command:command> -<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10"> + +<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> <!--Generated by PS Cmdlet Help Editor--> <command:details> - <command:name>Get-AzureLoadBalancerFrontendIpConfig</command:name> + <command:name>Get-AzureCheckDnsAvailability</command:name> <maml:description> - <maml:para>Retrieve a single Frontend Ip or a list of Frontend Ips within a Load Balancer</maml:para> + <maml:para>Checks whether a domain name in the cloudapp.net zone is available for use</maml:para> </maml:description> <maml:copyright> <maml:para /> </maml:copyright> <command:verb>Get</command:verb> - <command:noun>AzureLoadBalancerFrontendIpConfig</command:noun> + <command:noun>AzureCheckDnsAvailability</command:noun> <dev:version /> </command:details> <maml:description> - <!--This is the Description section--> - <maml:para>Retrieve a single Frontend Ip or a list of Frontend Ips within a Load Balancer</maml:para> + <maml:para>Checks whether a domain name in the {region}.cloudapp.azure.com zone is available for use</maml:para> </maml:description> <command:syntax> <command:syntaxItem> - <maml:name>Get-AzureLoadBalancerFrontendIpConfig</maml:name> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>Name</maml:name> + <maml:name>Get-AzureCheckDnsAvailability</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>DomainQualifiedName</maml:name> <maml:description> - <maml:para>The name of the LoadBalancer containing the Frontend Ip</maml:para> + <maml:para>The domain name to be verified. + It must conform to the following regular expression: ^[a-z][a-z0-9-]{1,61}[a-z0-9]$.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue)" position="named"> - <maml:name>LoadBalancer</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Location</maml:name> <maml:description> - <maml:para>The Load Balancer with which this Frontend Ip config will be associated</maml:para> + <maml:para>The Azure Region in which you wish to check for availability.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="false">PSLoadBalancer</command:parameterValue> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> </command:parameter> </command:syntaxItem> </command:syntax> <command:parameters> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>Name</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>DomainQualifiedName</maml:name> <maml:description> - <maml:para>The name of the LoadBalancer containing the Frontend Ip</maml:para> + <maml:para>The domain name to be verified. + It must conform to the following regular expression: ^[a-z][a-z0-9-]{1,61}[a-z0-9]$.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -1838,14 +2093,26 @@ </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue)" position="named"> - <maml:name>LoadBalancer</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Location</maml:name> <maml:description> - <maml:para>The Load Balancer with which this Frontend Ip config will be associated</maml:para> + <maml:para>The Azure Region in which you wish to check for availability.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="false">PSLoadBalancer</command:parameterValue> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> - <maml:name>PSLoadBalancer</maml:name> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + <dev:type> + <maml:name>AzureProfile</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> @@ -1855,32 +2122,34 @@ <command:inputType> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> + <maml:description> + <maml:para> +</maml:para> + </maml:description> </command:inputType> </command:inputTypes> <command:returnValues> <command:returnValue> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> - </command:returnValue> - </command:returnValues> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:returnValue> + </command:returnValues> <command:terminatingErrors></command:terminatingErrors> <command:nonTerminatingErrors></command:nonTerminatingErrors> <maml:alertSet> <maml:title></maml:title> <maml:alert> - <maml:para></maml:para> + <maml:para /> </maml:alert> </maml:alertSet> <command:examples> @@ -1888,48 +2157,55 @@ <maml:relatedLinks> </maml:relatedLinks> </command:command> -<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10"> + +<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> <!--Generated by PS Cmdlet Help Editor--> <command:details> - <command:name>Get-AzureLoadBalancerInboundNatRuleConfig</command:name> + <command:name>Get-AzureLoadBalancer</command:name> <maml:description> - <maml:para>Retrieve a single Inbound NAT Rule or a list of Inbound NAT Rules within a Load Balancer</maml:para> + <maml:para>Retrieve a single Load Balancer or a list of Load Balancers within a Resource Group</maml:para> </maml:description> <maml:copyright> <maml:para /> </maml:copyright> <command:verb>Get</command:verb> - <command:noun>AzureLoadBalancerInboundNatRuleConfig</command:noun> + <command:noun>AzureLoadBalancer</command:noun> <dev:version /> </command:details> <maml:description> - <!--This is the Description section--> - <maml:para>Retrieve a single Inbound NAT Rule or a list of Inbound NAT Rules within a Load Balancer</maml:para> + <maml:para>Retrieve a single Load Balancer or a list of Load Balancers within a Resource Group</maml:para> </maml:description> <command:syntax> <command:syntaxItem> - <maml:name>Get-AzureLoadBalancerInboundNatRuleConfig</maml:name> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Get-AzureLoadBalancer</maml:name> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> <maml:name>Name</maml:name> <maml:description> - <maml:para>The name of the Inbound NAT Rule to retrieve.</maml:para> + <maml:para>The name of the Load Balancer to retrieve.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue)" position="named"> - <maml:name>LoadBalancer</maml:name> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>ResourceGroupName</maml:name> <maml:description> - <maml:para>The name of the Load Balancer containing the Inbound NAT Rule</maml:para> + <maml:para>The name of the Resource Group containing the Load Balancer.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="false">PSLoadBalancer</command:parameterValue> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> </command:parameter> </command:syntaxItem> </command:syntax> <command:parameters> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> <maml:name>Name</maml:name> <maml:description> - <maml:para>The name of the Inbound NAT Rule to retrieve.</maml:para> + <maml:para>The name of the Load Balancer to retrieve.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -1938,14 +2214,26 @@ </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue)" position="named"> - <maml:name>LoadBalancer</maml:name> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>ResourceGroupName</maml:name> <maml:description> - <maml:para>The name of the Load Balancer containing the Inbound NAT Rule</maml:para> + <maml:para>The name of the Resource Group containing the Load Balancer.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="false">PSLoadBalancer</command:parameterValue> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> - <maml:name>PSLoadBalancer</maml:name> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + <dev:type> + <maml:name>AzureProfile</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> @@ -1955,32 +2243,34 @@ <command:inputType> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> + <maml:description> + <maml:para> +</maml:para> + </maml:description> </command:inputType> </command:inputTypes> <command:returnValues> <command:returnValue> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> - </command:returnValue> - </command:returnValues> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:returnValue> + </command:returnValues> <command:terminatingErrors></command:terminatingErrors> <command:nonTerminatingErrors></command:nonTerminatingErrors> <maml:alertSet> <maml:title></maml:title> <maml:alert> - <maml:para></maml:para> + <maml:para /> </maml:alert> </maml:alertSet> <command:examples> @@ -1988,48 +2278,54 @@ <maml:relatedLinks> </maml:relatedLinks> </command:command> -<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10"> +<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> <!--Generated by PS Cmdlet Help Editor--> <command:details> - <command:name>Get-AzureLoadBalancerProbeConfig</command:name> + <command:name>Get-AzureLoadBalancerBackendAddressPoolConfig</command:name> <maml:description> - <maml:para>Retrieve a single Probe configuration or a list of Probe configurations within a Load Balancer</maml:para> + <maml:para>Retrieve a single Backend Address Pool or a list of Backend Address Pools within a Load Balancer</maml:para> </maml:description> <maml:copyright> <maml:para /> </maml:copyright> <command:verb>Get</command:verb> - <command:noun>AzureLoadBalancerProbeConfig</command:noun> + <command:noun>AzureLoadBalancerBackendAddressPoolConfig</command:noun> <dev:version /> </command:details> <maml:description> - <!--This is the Description section--> - <maml:para>Retrieve a single Probe configuration or a list of Probe configurations within a Load Balancer</maml:para> + <maml:para>Retrieve a single Backend Address Pool or a list of Backend Address Pools within a Load Balancer</maml:para> </maml:description> <command:syntax> <command:syntaxItem> - <maml:name>Get-AzureLoadBalancerProbeConfig</maml:name> + <maml:name>Get-AzureLoadBalancerBackendAddressPoolConfig</maml:name> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>Name</maml:name> <maml:description> - <maml:para>The name of the Probe configuration to retrieve.</maml:para> + <maml:para>The name of the Load Balancer containing the Backend Address Pool.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue)" position="named"> <maml:name>LoadBalancer</maml:name> <maml:description> - <maml:para>The name of the LoadBalancer containing the Probe configuration</maml:para> + <maml:para>The name of the Backend Address Pool to retrieve.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">PSLoadBalancer</command:parameterValue> </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + </command:parameter> </command:syntaxItem> </command:syntax> <command:parameters> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>Name</maml:name> <maml:description> - <maml:para>The name of the Probe configuration to retrieve.</maml:para> + <maml:para>The name of the Load Balancer containing the Backend Address Pool.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -2041,7 +2337,7 @@ <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue)" position="named"> <maml:name>LoadBalancer</maml:name> <maml:description> - <maml:para>The name of the LoadBalancer containing the Probe configuration</maml:para> + <maml:para>The name of the Backend Address Pool to retrieve.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">PSLoadBalancer</command:parameterValue> <dev:type> @@ -2050,37 +2346,51 @@ </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + <dev:type> + <maml:name>AzureProfile</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> </command:parameters> <command:inputTypes> <command:inputType> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> + <maml:description> + <maml:para> +</maml:para> + </maml:description> </command:inputType> </command:inputTypes> <command:returnValues> <command:returnValue> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> - </command:returnValue> - </command:returnValues> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:returnValue> + </command:returnValues> <command:terminatingErrors></command:terminatingErrors> <command:nonTerminatingErrors></command:nonTerminatingErrors> <maml:alertSet> <maml:title></maml:title> <maml:alert> - <maml:para></maml:para> + <maml:para /> </maml:alert> </maml:alertSet> <command:examples> @@ -2088,48 +2398,54 @@ <maml:relatedLinks> </maml:relatedLinks> </command:command> -<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10"> +<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> <!--Generated by PS Cmdlet Help Editor--> <command:details> - <command:name>Get-AzureLoadBalancerRuleConfig</command:name> + <command:name>Get-AzureLoadBalancerFrontendIpConfig</command:name> <maml:description> - <maml:para>Retrieve a single Load Balancer Rule or a list of Load Balancer Rules within a Load Balancer</maml:para> + <maml:para>Retrieve a single Frontend Ip or a list of Frontend Ips within a Load Balancer</maml:para> </maml:description> <maml:copyright> <maml:para /> </maml:copyright> <command:verb>Get</command:verb> - <command:noun>AzureLoadBalancerRuleConfig</command:noun> + <command:noun>AzureLoadBalancerFrontendIpConfig</command:noun> <dev:version /> </command:details> <maml:description> - <!--This is the Description section--> - <maml:para>Retrieve a single Load Balancer Rule or a list of Load Balancer Rules within a Load Balancer</maml:para> + <maml:para>Retrieve a single Frontend Ip or a list of Frontend Ips within a Load Balancer</maml:para> </maml:description> <command:syntax> <command:syntaxItem> - <maml:name>Get-AzureLoadBalancerRuleConfig</maml:name> + <maml:name>Get-AzureLoadBalancerFrontendIpConfig</maml:name> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>Name</maml:name> <maml:description> - <maml:para>The name of the Load Balancer Rule to retrieve</maml:para> + <maml:para>The name of the Load Balancer containing the Frontend Ip.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue)" position="named"> <maml:name>LoadBalancer</maml:name> <maml:description> - <maml:para>The name of the LoadBalancer containing the Load Balancer Rule</maml:para> + <maml:para>The Load Balancer with which this Frontend Ip config will be associated.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">PSLoadBalancer</command:parameterValue> </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + </command:parameter> </command:syntaxItem> </command:syntax> <command:parameters> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>Name</maml:name> <maml:description> - <maml:para>The name of the Load Balancer Rule to retrieve</maml:para> + <maml:para>The name of the Load Balancer containing the Frontend Ip.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -2141,7 +2457,7 @@ <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue)" position="named"> <maml:name>LoadBalancer</maml:name> <maml:description> - <maml:para>The name of the LoadBalancer containing the Load Balancer Rule</maml:para> + <maml:para>The Load Balancer with which this Frontend Ip config will be associated.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">PSLoadBalancer</command:parameterValue> <dev:type> @@ -2150,37 +2466,51 @@ </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + <dev:type> + <maml:name>AzureProfile</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> </command:parameters> <command:inputTypes> <command:inputType> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> + <maml:description> + <maml:para> +</maml:para> + </maml:description> </command:inputType> </command:inputTypes> <command:returnValues> <command:returnValue> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> - </command:returnValue> - </command:returnValues> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:returnValue> + </command:returnValues> <command:terminatingErrors></command:terminatingErrors> <command:nonTerminatingErrors></command:nonTerminatingErrors> <maml:alertSet> <maml:title></maml:title> <maml:alert> - <maml:para></maml:para> + <maml:para /> </maml:alert> </maml:alertSet> <command:examples> @@ -2188,48 +2518,54 @@ <maml:relatedLinks> </maml:relatedLinks> </command:command> -<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10"> +<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> <!--Generated by PS Cmdlet Help Editor--> <command:details> - <command:name>Get-AzureNetworkInterface</command:name> + <command:name>Get-AzureLoadBalancerInboundNatRuleConfig</command:name> <maml:description> - <maml:para>Retrieve a single Network Interface or a list of Network Interfaces within a Resource Group</maml:para> + <maml:para>Retrieve a single Inbound NAT Rule or a list of Inbound NAT Rules within a Load Balancer</maml:para> </maml:description> <maml:copyright> <maml:para /> </maml:copyright> <command:verb>Get</command:verb> - <command:noun>AzureNetworkInterface</command:noun> + <command:noun>AzureLoadBalancerInboundNatRuleConfig</command:noun> <dev:version /> </command:details> <maml:description> - <!--This is the Description section--> - <maml:para>Retrieve a single Network Interface or a list of Network Interfaces within a Resource Group</maml:para> + <maml:para>Retrieve a single Inbound NAT Rule or a list of Inbound NAT Rules within a Load Balancer</maml:para> </maml:description> <command:syntax> <command:syntaxItem> - <maml:name>Get-AzureNetworkInterface</maml:name> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>Get-AzureLoadBalancerInboundNatRuleConfig</maml:name> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>Name</maml:name> <maml:description> - <maml:para>The name of the Network Interface to retrieve.</maml:para> + <maml:para>The name of the Inbound NAT Rule to retrieve.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>ResourceGroupName</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue)" position="named"> + <maml:name>LoadBalancer</maml:name> <maml:description> - <maml:para>The name of the Resource Group containing the Network Interface</maml:para> + <maml:para>The name of the Load Balancer containing the Inbound NAT Rule.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <command:parameterValue required="true" variableLength="false">PSLoadBalancer</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> </command:parameter> </command:syntaxItem> </command:syntax> <command:parameters> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>Name</maml:name> <maml:description> - <maml:para>The name of the Network Interface to retrieve.</maml:para> + <maml:para>The name of the Inbound NAT Rule to retrieve.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -2238,14 +2574,26 @@ </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>ResourceGroupName</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue)" position="named"> + <maml:name>LoadBalancer</maml:name> <maml:description> - <maml:para>The name of the Resource Group containing the Network Interface</maml:para> + <maml:para>The name of the Load Balancer containing the Inbound NAT Rule.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <command:parameterValue required="true" variableLength="false">PSLoadBalancer</command:parameterValue> <dev:type> - <maml:name>String</maml:name> + <maml:name>PSLoadBalancer</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + <dev:type> + <maml:name>AzureProfile</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> @@ -2255,32 +2603,34 @@ <command:inputType> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> + <maml:description> + <maml:para> +</maml:para> + </maml:description> </command:inputType> </command:inputTypes> <command:returnValues> <command:returnValue> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> - </command:returnValue> - </command:returnValues> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:returnValue> + </command:returnValues> <command:terminatingErrors></command:terminatingErrors> <command:nonTerminatingErrors></command:nonTerminatingErrors> <maml:alertSet> <maml:title></maml:title> <maml:alert> - <maml:para></maml:para> + <maml:para /> </maml:alert> </maml:alertSet> <command:examples> @@ -2288,48 +2638,54 @@ <maml:relatedLinks> </maml:relatedLinks> </command:command> -<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10"> +<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> <!--Generated by PS Cmdlet Help Editor--> <command:details> - <command:name>Get-AzurePublicIpAddress</command:name> + <command:name>Get-AzureLoadBalancerProbeConfig</command:name> <maml:description> - <maml:para>Retrieve a single Public Ip Address or a list of Public Ip Addresses within a Resource Group</maml:para> + <maml:para>Retrieve a single Probe configuration or a list of Probe configurations within a Load Balancer</maml:para> </maml:description> <maml:copyright> <maml:para /> </maml:copyright> <command:verb>Get</command:verb> - <command:noun>AzurePublicIpAddress</command:noun> + <command:noun>AzureLoadBalancerProbeConfig</command:noun> <dev:version /> </command:details> <maml:description> - <!--This is the Description section--> - <maml:para>Retrieve a single Public Ip Address or a list of Public Ip Addresses within a Resource Group</maml:para> + <maml:para>Retrieve a single Probe configuration or a list of Probe configurations within a Load Balancer</maml:para> </maml:description> <command:syntax> <command:syntaxItem> - <maml:name>Get-AzurePublicIpAddress</maml:name> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>Get-AzureLoadBalancerProbeConfig</maml:name> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>Name</maml:name> <maml:description> - <maml:para>The name of the Public Ip Address to retrieve.</maml:para> + <maml:para>The name of the probe configuration to retrieve.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>ResourceGroupName</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue)" position="named"> + <maml:name>LoadBalancer</maml:name> <maml:description> - <maml:para>The name of the Resource Group containing the Public Ip Address</maml:para> + <maml:para>The name of the Load Balancer containing the probe configuration.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <command:parameterValue required="true" variableLength="false">PSLoadBalancer</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> </command:parameter> </command:syntaxItem> </command:syntax> <command:parameters> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>Name</maml:name> <maml:description> - <maml:para>The name of the Public Ip Address to retrieve.</maml:para> + <maml:para>The name of the probe configuration to retrieve.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -2338,14 +2694,26 @@ </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>ResourceGroupName</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue)" position="named"> + <maml:name>LoadBalancer</maml:name> <maml:description> - <maml:para>The name of the Resource Group containing the Public Ip Address</maml:para> + <maml:para>The name of the Load Balancer containing the probe configuration.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <command:parameterValue required="true" variableLength="false">PSLoadBalancer</command:parameterValue> <dev:type> - <maml:name>String</maml:name> + <maml:name>PSLoadBalancer</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + <dev:type> + <maml:name>AzureProfile</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> @@ -2355,32 +2723,34 @@ <command:inputType> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> + <maml:description> + <maml:para> +</maml:para> + </maml:description> </command:inputType> </command:inputTypes> <command:returnValues> <command:returnValue> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> - </command:returnValue> - </command:returnValues> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:returnValue> + </command:returnValues> <command:terminatingErrors></command:terminatingErrors> <command:nonTerminatingErrors></command:nonTerminatingErrors> <maml:alertSet> <maml:title></maml:title> <maml:alert> - <maml:para></maml:para> + <maml:para /> </maml:alert> </maml:alertSet> <command:examples> @@ -2388,48 +2758,54 @@ <maml:relatedLinks> </maml:relatedLinks> </command:command> -<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10"> +<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> <!--Generated by PS Cmdlet Help Editor--> <command:details> - <command:name>Get-AzureVirtualNetwork</command:name> + <command:name>Get-AzureLoadBalancerRuleConfig</command:name> <maml:description> - <maml:para>Retrieve a single Virtual Network or a list of Virtual Networks within a Resource Group</maml:para> + <maml:para>Retrieve a single Load Balancer Rule or a list of Load Balancer Rules within a Load Balancer</maml:para> </maml:description> <maml:copyright> <maml:para /> </maml:copyright> <command:verb>Get</command:verb> - <command:noun>AzureVirtualNetwork</command:noun> + <command:noun>AzureLoadBalancerRuleConfig</command:noun> <dev:version /> </command:details> <maml:description> - <!--This is the Description section--> - <maml:para>Retrieve a single Virtual Network or a list of Virtual Networks within a Resource Group</maml:para> + <maml:para>Retrieve a single Load Balancer Rule or a list of Load Balancer Rules within a Load Balancer</maml:para> </maml:description> <command:syntax> <command:syntaxItem> - <maml:name>Get-AzureVirtualNetwork</maml:name> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>Get-AzureLoadBalancerRuleConfig</maml:name> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>Name</maml:name> <maml:description> - <maml:para>The name of the Virtual Network to retrieve.</maml:para> + <maml:para>The name of the Load Balancer Rule to retrieve.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>ResourceGroupName</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue)" position="named"> + <maml:name>LoadBalancer</maml:name> <maml:description> - <maml:para>The name of the Resource Group containing the Virtual Network</maml:para> + <maml:para>The name of the Load Balancer containing the Load Balancer Rule.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <command:parameterValue required="true" variableLength="false">PSLoadBalancer</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> </command:parameter> </command:syntaxItem> </command:syntax> <command:parameters> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>Name</maml:name> <maml:description> - <maml:para>The name of the Virtual Network to retrieve.</maml:para> + <maml:para>The name of the Load Balancer Rule to retrieve.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -2438,14 +2814,26 @@ </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>ResourceGroupName</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue)" position="named"> + <maml:name>LoadBalancer</maml:name> <maml:description> - <maml:para>The name of the Resource Group containing the Virtual Network</maml:para> + <maml:para>The name of the Load Balancer containing the Load Balancer Rule.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <command:parameterValue required="true" variableLength="false">PSLoadBalancer</command:parameterValue> <dev:type> - <maml:name>String</maml:name> + <maml:name>PSLoadBalancer</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + <dev:type> + <maml:name>AzureProfile</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> @@ -2455,32 +2843,34 @@ <command:inputType> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> + <maml:description> + <maml:para> +</maml:para> + </maml:description> </command:inputType> </command:inputTypes> <command:returnValues> <command:returnValue> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> - </command:returnValue> - </command:returnValues> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:returnValue> + </command:returnValues> <command:terminatingErrors></command:terminatingErrors> <command:nonTerminatingErrors></command:nonTerminatingErrors> <maml:alertSet> <maml:title></maml:title> <maml:alert> - <maml:para></maml:para> + <maml:para /> </maml:alert> </maml:alertSet> <command:examples> @@ -2488,48 +2878,54 @@ <maml:relatedLinks> </maml:relatedLinks> </command:command> -<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10"> +<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> <!--Generated by PS Cmdlet Help Editor--> <command:details> - <command:name>Get-AzureVirtualNetworkSubnetConfig</command:name> + <command:name>Get-AzureNetworkInterface</command:name> <maml:description> - <maml:para>Retrieve a single Subnet or a list of Subnets within a Virtual Network</maml:para> + <maml:para>Retrieve a single Network Interface or a list of Network Interfaces within a Resource Group</maml:para> </maml:description> <maml:copyright> <maml:para /> </maml:copyright> <command:verb>Get</command:verb> - <command:noun>AzureVirtualNetworkSubnetConfig</command:noun> + <command:noun>AzureNetworkInterface</command:noun> <dev:version /> </command:details> <maml:description> - <!--This is the Description section--> - <maml:para>Retrieve a single Subnet or a list of Subnets within a Virtual Network</maml:para> + <maml:para>Retrieve a single Network Interface or a list of Network Interfaces within a Resource Group</maml:para> </maml:description> <command:syntax> <command:syntaxItem> - <maml:name>Get-AzureVirtualNetworkSubnetConfig</maml:name> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Get-AzureNetworkInterface</maml:name> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> <maml:name>Name</maml:name> <maml:description> - <maml:para>The name of the Subnet to retrieve.</maml:para> + <maml:para>The name of the Network Interface to retrieve.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue)" position="named"> - <maml:name>VirtualNetwork</maml:name> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>ResourceGroupName</maml:name> <maml:description> - <maml:para>The Virtual Network containing the Subnet</maml:para> + <maml:para>The name of the Resource Group containing the Network Interface</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="false">PSVirtualNetwork</command:parameterValue> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> </command:parameter> </command:syntaxItem> </command:syntax> <command:parameters> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> <maml:name>Name</maml:name> <maml:description> - <maml:para>The name of the Subnet to retrieve.</maml:para> + <maml:para>The name of the Network Interface to retrieve.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -2538,14 +2934,26 @@ </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue)" position="named"> - <maml:name>VirtualNetwork</maml:name> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>ResourceGroupName</maml:name> <maml:description> - <maml:para>The Virtual Network containing the Subnet</maml:para> + <maml:para>The name of the Resource Group containing the Network Interface</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="false">PSVirtualNetwork</command:parameterValue> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> - <maml:name>PSVirtualNetwork</maml:name> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + <dev:type> + <maml:name>AzureProfile</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> @@ -2555,32 +2963,34 @@ <command:inputType> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> + <maml:description> + <maml:para> +</maml:para> + </maml:description> </command:inputType> </command:inputTypes> <command:returnValues> <command:returnValue> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> - </command:returnValue> - </command:returnValues> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:returnValue> + </command:returnValues> <command:terminatingErrors></command:terminatingErrors> <command:nonTerminatingErrors></command:nonTerminatingErrors> <maml:alertSet> <maml:title></maml:title> <maml:alert> - <maml:para></maml:para> + <maml:para /> </maml:alert> </maml:alertSet> <command:examples> @@ -2588,58 +2998,54 @@ <maml:relatedLinks> </maml:relatedLinks> </command:command> -<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10"> +<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> <!--Generated by PS Cmdlet Help Editor--> <command:details> - <command:name>Join-AzureCoreResourceProvider</command:name> + <command:name>Get-AzureNetworkSecurityGroup</command:name> <maml:description> - <maml:para>Registers the subscription with ARM and the Resource Provider</maml:para> + <maml:para>Get an existing Network Security Group.</maml:para> </maml:description> <maml:copyright> <maml:para /> </maml:copyright> - <command:verb>Join</command:verb> - <command:noun>AzureCoreResourceProvider</command:noun> + <command:verb>Get</command:verb> + <command:noun>AzureNetworkSecurityGroup</command:noun> <dev:version /> </command:details> <maml:description> - <!--This is the Description section--> - <maml:para>Registers the subscription with ARM and the Resource Provider</maml:para> + <maml:para>Get an existing Network Security Group.</maml:para> </maml:description> <command:syntax> <command:syntaxItem> - <maml:name>Join-AzureCoreResourceProvider</maml:name> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Get-AzureNetworkSecurityGroup</maml:name> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> <maml:name>Name</maml:name> <maml:description> - <maml:para>The name of the resource provider</maml:para> + <maml:para>The name of the Network Security Group to retrieve.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>Environment</maml:name> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>ResourceGroupName</maml:name> <maml:description> - <maml:para>The ARM environment you want the subscription to be registered with</maml:para> + <maml:para>The name of the Resource Group containing the Network Security Group.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>All</maml:name> + <maml:name>Profile</maml:name> <maml:description> - <maml:para>Registers the subscription with the following resource provider - Microsoft.Network - Microsoft.Compute - Microsoft.Storage</maml:para> + <maml:para /> </maml:description> - <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> </command:parameter> </command:syntaxItem> </command:syntax> <command:parameters> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> <maml:name>Name</maml:name> <maml:description> - <maml:para>The name of the resource provider</maml:para> + <maml:para>The name of the Network Security Group to retrieve.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -2648,10 +3054,10 @@ </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>Environment</maml:name> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>ResourceGroupName</maml:name> <maml:description> - <maml:para>The ARM environment you want the subscription to be registered with</maml:para> + <maml:para>The name of the Resource Group containing the Network Security Group.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -2661,16 +3067,13 @@ <dev:defaultValue></dev:defaultValue> </command:parameter> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>All</maml:name> + <maml:name>Profile</maml:name> <maml:description> - <maml:para>Registers the subscription with the following resource provider - Microsoft.Network - Microsoft.Compute - Microsoft.Storage</maml:para> + <maml:para /> </maml:description> - <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> <dev:type> - <maml:name>SwitchParameter</maml:name> + <maml:name>AzureProfile</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> @@ -2680,32 +3083,32 @@ <command:inputType> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> + <maml:description> +<maml:para /> + </maml:description> </command:inputType> </command:inputTypes> <command:returnValues> <command:returnValue> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> - </command:returnValue> - </command:returnValues> + <maml:description> +<maml:para /> + </maml:description> + </command:returnValue> + </command:returnValues> <command:terminatingErrors></command:terminatingErrors> <command:nonTerminatingErrors></command:nonTerminatingErrors> <maml:alertSet> <maml:title></maml:title> <maml:alert> - <maml:para></maml:para> + <maml:para /> </maml:alert> </maml:alertSet> <command:examples> @@ -2713,128 +3116,61 @@ <maml:relatedLinks> </maml:relatedLinks> </command:command> -<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10"> +<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> <!--Generated by PS Cmdlet Help Editor--> <command:details> - <command:name>New-AzureLoadBalancer</command:name> + <command:name>Get-AzureNetworkSecurityRuleConfig</command:name> <maml:description> - <maml:para>Create a new Azure Load Balancer</maml:para> + <maml:para>Get an existing Network Security Rule within a Network Security Group.</maml:para> </maml:description> <maml:copyright> <maml:para /> </maml:copyright> - <command:verb>New</command:verb> - <command:noun>AzureLoadBalancer</command:noun> + <command:verb>Get</command:verb> + <command:noun>AzureNetworkSecurityRuleConfig</command:noun> <dev:version /> </command:details> <maml:description> - <!--This is the Description section--> - <maml:para>Create a new Azure Load Balancer</maml:para> + <maml:para>Get an existing Network Security Rule within a Network Security Group.</maml:para> </maml:description> <command:syntax> <command:syntaxItem> - <maml:name>New-AzureLoadBalancer</maml:name> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>Get-AzureNetworkSecurityRuleConfig</maml:name> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>Name</maml:name> <maml:description> - <maml:para>The name of the Load Balancer</maml:para> - </maml:description> - <command:parameterValue required="true" variableLength="false">String</command:parameterValue> - </command:parameter> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>ResourceGroupName</maml:name> - <maml:description> - <maml:para>The name of the Resource Group in which this Load Balancer will be created</maml:para> - </maml:description> - <command:parameterValue required="true" variableLength="false">String</command:parameterValue> - </command:parameter> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>Location</maml:name> - <maml:description> - <maml:para>The Region in which this Load Balancer will be created</maml:para> + <maml:para>The name of the Network Security Rule to retrieve.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> - <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>FrontendIpConfiguration</maml:name> - <maml:description> - <maml:para>A list of Frontend Ips to associate with this Load Balancer.</maml:para> - </maml:description> - <command:parameterValue required="true" variableLength="true">List`1[PSFrontendIpConfiguration]</command:parameterValue> - </command:parameter> - <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>BackendAddressPool</maml:name> - <maml:description> - <maml:para>A list of Backend Address Pool to associate with this Load Balance</maml:para> - </maml:description> - <command:parameterValue required="true" variableLength="true">List`1[PSBackendAddressPool]</command:parameterValue> - </command:parameter> - <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>Probe</maml:name> - <maml:description> - <maml:para>A list of Probes to associate with this Load Balancer</maml:para> - </maml:description> - <command:parameterValue required="true" variableLength="true">List`1[PSProbe]</command:parameterValue> - </command:parameter> - <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>InboundNatRule</maml:name> - <maml:description> - <maml:para>A list of Inbound NAT Rules to associated with this Load Balancer</maml:para> - </maml:description> - <command:parameterValue required="true" variableLength="true">List`1[PSInboundNatRule]</command:parameterValue> - </command:parameter> - <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>LoadBalancingRule</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue)" position="named"> + <maml:name>NetworkSecurityGroup</maml:name> <maml:description> - <maml:para>A list of Load Balancing Rules to associate with this Load Balancer</maml:para> + <maml:para>The Network Security Group object containing the Network Security Rule to retrieve.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="true">List`1[PSLoadBalancingRule]</command:parameterValue> + <command:parameterValue required="true" variableLength="false">PSNetworkSecurityGroup</command:parameterValue> </command:parameter> - <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>Tag</maml:name> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>DefaultRules</maml:name> <maml:description> - <maml:para>A dictionary of tags to be associated with this Load Balancer.</maml:para> + <maml:para>Switch on whether to get user-created rules, or default rules.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="true">Hashtable[]</command:parameterValue> + <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> </command:parameter> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>Force</maml:name> + <maml:name>Profile</maml:name> <maml:description> - <maml:para>Forces the creation of the Load Balancer even if a Load Balancer with the same name already exists</maml:para> + <maml:para /> </maml:description> - <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> </command:parameter> </command:syntaxItem> </command:syntax> <command:parameters> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>Name</maml:name> <maml:description> - <maml:para>The name of the Load Balancer</maml:para> - </maml:description> - <command:parameterValue required="true" variableLength="false">String</command:parameterValue> - <dev:type> - <maml:name>String</maml:name> - <maml:uri/> - </dev:type> - <dev:defaultValue></dev:defaultValue> - </command:parameter> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>ResourceGroupName</maml:name> - <maml:description> - <maml:para>The name of the Resource Group in which this Load Balancer will be created</maml:para> - </maml:description> - <command:parameterValue required="true" variableLength="false">String</command:parameterValue> - <dev:type> - <maml:name>String</maml:name> - <maml:uri/> - </dev:type> - <dev:defaultValue></dev:defaultValue> - </command:parameter> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>Location</maml:name> - <maml:description> - <maml:para>The Region in which this Load Balancer will be created</maml:para> + <maml:para>The name of the Network Security Rule to retrieve.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -2843,86 +3179,38 @@ </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>FrontendIpConfiguration</maml:name> - <maml:description> - <maml:para>A list of Frontend Ips to associate with this Load Balancer.</maml:para> - </maml:description> - <command:parameterValue required="true" variableLength="true">List`1[PSFrontendIpConfiguration]</command:parameterValue> - <dev:type> - <maml:name>List`1[PSFrontendIpConfiguration]</maml:name> - <maml:uri/> - </dev:type> - <dev:defaultValue></dev:defaultValue> - </command:parameter> - <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>BackendAddressPool</maml:name> - <maml:description> - <maml:para>A list of Backend Address Pool to associate with this Load Balance</maml:para> - </maml:description> - <command:parameterValue required="true" variableLength="true">List`1[PSBackendAddressPool]</command:parameterValue> - <dev:type> - <maml:name>List`1[PSBackendAddressPool]</maml:name> - <maml:uri/> - </dev:type> - <dev:defaultValue></dev:defaultValue> - </command:parameter> - <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>Probe</maml:name> - <maml:description> - <maml:para>A list of Probes to associate with this Load Balancer</maml:para> - </maml:description> - <command:parameterValue required="true" variableLength="true">List`1[PSProbe]</command:parameterValue> - <dev:type> - <maml:name>List`1[PSProbe]</maml:name> - <maml:uri/> - </dev:type> - <dev:defaultValue></dev:defaultValue> - </command:parameter> - <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>InboundNatRule</maml:name> - <maml:description> - <maml:para>A list of Inbound NAT Rules to associated with this Load Balancer</maml:para> - </maml:description> - <command:parameterValue required="true" variableLength="true">List`1[PSInboundNatRule]</command:parameterValue> - <dev:type> - <maml:name>List`1[PSInboundNatRule]</maml:name> - <maml:uri/> - </dev:type> - <dev:defaultValue></dev:defaultValue> - </command:parameter> - <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>LoadBalancingRule</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue)" position="named"> + <maml:name>NetworkSecurityGroup</maml:name> <maml:description> - <maml:para>A list of Load Balancing Rules to associate with this Load Balancer</maml:para> + <maml:para>The Network Security Group object containing the Network Security Rule to retrieve.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="true">List`1[PSLoadBalancingRule]</command:parameterValue> + <command:parameterValue required="true" variableLength="false">PSNetworkSecurityGroup</command:parameterValue> <dev:type> - <maml:name>List`1[PSLoadBalancingRule]</maml:name> + <maml:name>PSNetworkSecurityGroup</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>Tag</maml:name> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>DefaultRules</maml:name> <maml:description> - <maml:para>A dictionary of tags to be associated with this Load Balancer.</maml:para> + <maml:para>Switch on whether to get user-created rules, or default rules.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="true">Hashtable[]</command:parameterValue> + <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> <dev:type> - <maml:name>Hashtable[]</maml:name> + <maml:name>SwitchParameter</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>Force</maml:name> + <maml:name>Profile</maml:name> <maml:description> - <maml:para>Forces the creation of the Load Balancer even if a Load Balancer with the same name already exists</maml:para> + <maml:para /> </maml:description> - <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> <dev:type> - <maml:name>SwitchParameter</maml:name> + <maml:name>AzureProfile</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> @@ -2932,32 +3220,32 @@ <command:inputType> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> + <maml:description> +<maml:para /> + </maml:description> </command:inputType> </command:inputTypes> <command:returnValues> <command:returnValue> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> - </command:returnValue> - </command:returnValues> + <maml:description> +<maml:para /> + </maml:description> + </command:returnValue> + </command:returnValues> <command:terminatingErrors></command:terminatingErrors> <command:nonTerminatingErrors></command:nonTerminatingErrors> <maml:alertSet> <maml:title></maml:title> <maml:alert> - <maml:para></maml:para> + <maml:para /> </maml:alert> </maml:alertSet> <command:examples> @@ -2965,55 +3253,54 @@ <maml:relatedLinks> </maml:relatedLinks> </command:command> -<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10"> +<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> <!--Generated by PS Cmdlet Help Editor--> <command:details> - <command:name>New-AzureLoadBalancerBackendAddressPoolConfig</command:name> + <command:name>Get-AzurePublicIpAddress</command:name> <maml:description> - <maml:para>Create a new Backend Address Pool for an Azure Load Balancer</maml:para> + <maml:para>Retrieve a single Public Ip Address or a list of Public Ip Addresses within a Resource Group</maml:para> </maml:description> <maml:copyright> <maml:para /> </maml:copyright> - <command:verb>New</command:verb> - <command:noun>AzureLoadBalancerBackendAddressPoolConfig</command:noun> + <command:verb>Get</command:verb> + <command:noun>AzurePublicIpAddress</command:noun> <dev:version /> </command:details> <maml:description> - <!--This is the Description section--> - <maml:para>Create a new Backend Address Pool for an Azure Load Balancer</maml:para> + <maml:para>Retrieve a single Public Ip Address or a list of Public Ip Addresses within a Resource Group</maml:para> </maml:description> <command:syntax> <command:syntaxItem> - <maml:name>New-AzureLoadBalancerBackendAddressPoolConfig</maml:name> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Get-AzurePublicIpAddress</maml:name> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> <maml:name>Name</maml:name> <maml:description> - <maml:para>The name of the Backend Address Pool</maml:para> + <maml:para>The name of the Public Ip Address to retrieve.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> - <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"> - <maml:name>BackendIpConfigurationId</maml:name> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>ResourceGroupName</maml:name> <maml:description> - <maml:para>A list of Backend Ip config ID&#39;s to associate with this.</maml:para> + <maml:para>The name of the Resource Group containing the Public Ip Address.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="true">List`1[String]</command:parameterValue> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> - <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"> - <maml:name>BackendIpConfiguration</maml:name> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> <maml:description> - <maml:para>A list of IPs to associate with the Backend Address Pool.</maml:para> + <maml:para /> </maml:description> - <command:parameterValue required="true" variableLength="true">List`1[PSNetworkInterfaceIpConfiguration]</command:parameterValue> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> </command:parameter> </command:syntaxItem> </command:syntax> <command:parameters> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> <maml:name>Name</maml:name> <maml:description> - <maml:para>The name of the Backend Address Pool</maml:para> + <maml:para>The name of the Public Ip Address to retrieve.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -3022,26 +3309,26 @@ </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"> - <maml:name>BackendIpConfigurationId</maml:name> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>ResourceGroupName</maml:name> <maml:description> - <maml:para>A list of Backend Ip config ID&#39;s to associate with this.</maml:para> + <maml:para>The name of the Resource Group containing the Public Ip Address.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="true">List`1[String]</command:parameterValue> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> - <maml:name>List`1[String]</maml:name> + <maml:name>String</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"> - <maml:name>BackendIpConfiguration</maml:name> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> <maml:description> - <maml:para>A list of IPs to associate with the Backend Address Pool.</maml:para> + <maml:para /> </maml:description> - <command:parameterValue required="true" variableLength="true">List`1[PSNetworkInterfaceIpConfiguration]</command:parameterValue> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> <dev:type> - <maml:name>List`1[PSNetworkInterfaceIpConfiguration]</maml:name> + <maml:name>AzureProfile</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> @@ -3051,32 +3338,34 @@ <command:inputType> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> + <maml:description> + <maml:para> +</maml:para> + </maml:description> </command:inputType> </command:inputTypes> <command:returnValues> <command:returnValue> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> - </command:returnValue> - </command:returnValues> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:returnValue> + </command:returnValues> <command:terminatingErrors></command:terminatingErrors> <command:nonTerminatingErrors></command:nonTerminatingErrors> <maml:alertSet> <maml:title></maml:title> <maml:alert> - <maml:para></maml:para> + <maml:para /> </maml:alert> </maml:alertSet> <command:examples> @@ -3084,95 +3373,2102 @@ <maml:relatedLinks> </maml:relatedLinks> </command:command> -<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10"> +<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> <!--Generated by PS Cmdlet Help Editor--> <command:details> - <command:name>New-AzureLoadBalancerFrontendIpConfig</command:name> + <command:name>Get-AzureVirtualNetwork</command:name> <maml:description> - <maml:para>Create a new Frontend Ip Config for an Azure Load Balancer</maml:para> + <maml:para>Retrieve a single Virtual Network or a list of Virtual Networks within a Resource Group</maml:para> </maml:description> <maml:copyright> <maml:para /> </maml:copyright> - <command:verb>New</command:verb> - <command:noun>AzureLoadBalancerFrontendIpConfig</command:noun> + <command:verb>Get</command:verb> + <command:noun>AzureVirtualNetwork</command:noun> <dev:version /> </command:details> <maml:description> - <!--This is the Description section--> - <maml:para>Create a new Frontend Ip Config for an Azure Load Balancer</maml:para> + <maml:para>Retrieve a single Virtual Network or a list of Virtual Networks within a Resource Group</maml:para> </maml:description> <command:syntax> <command:syntaxItem> - <maml:name>New-AzureLoadBalancerFrontendIpConfig</maml:name> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Get-AzureVirtualNetwork</maml:name> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> <maml:name>Name</maml:name> <maml:description> - <maml:para>The name of the Frontend Ip.</maml:para> - </maml:description> - <command:parameterValue required="true" variableLength="false">String</command:parameterValue> - </command:parameter> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>PrivateIpAddress</maml:name> - <maml:description> - <maml:para>The private ip address of the load balancer. - This can be specified only if a subnet is specified</maml:para> + <maml:para>The name of the Virtual Network to retrieve.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>SubnetId</maml:name> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>ResourceGroupName</maml:name> <maml:description> - <maml:para>The ID of the Subnet in which this Frontend Ip will be created</maml:para> + <maml:para>The name of the Resource Group containing the Virtual Network</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>PublicIpAddressId</maml:name> + <maml:name>Profile</maml:name> <maml:description> - <maml:para>The ID of the PublicIpAddress to associate with this Frontend Ip.</maml:para> + <maml:para /> </maml:description> - <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> </command:parameter> </command:syntaxItem> - <command:syntaxItem> - <maml:name>New-AzureLoadBalancerFrontendIpConfig</maml:name> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>Name</maml:name> + </command:syntax> + <command:parameters> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>Name</maml:name> + <maml:description> + <maml:para>The name of the Virtual Network to retrieve.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>ResourceGroupName</maml:name> + <maml:description> + <maml:para>The name of the Resource Group containing the Virtual Network</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + <dev:type> + <maml:name>AzureProfile</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + </command:parameters> + <command:inputTypes> + <command:inputType> + <dev:type> + <maml:name></maml:name> + <maml:uri></maml:uri> + <maml:description/> + </dev:type> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:inputType> + </command:inputTypes> + <command:returnValues> + <command:returnValue> + <dev:type> + <maml:name></maml:name> + <maml:uri></maml:uri> + <maml:description/> + </dev:type> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:returnValue> + </command:returnValues> + <command:terminatingErrors></command:terminatingErrors> + <command:nonTerminatingErrors></command:nonTerminatingErrors> + <maml:alertSet> + <maml:title></maml:title> + <maml:alert> + <maml:para /> + </maml:alert> + </maml:alertSet> + <command:examples> + </command:examples> + <maml:relatedLinks> + </maml:relatedLinks> +</command:command> +<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> +<!--Generated by PS Cmdlet Help Editor--> + <command:details> + <command:name>Get-AzureVirtualNetworkSubnetConfig</command:name> + <maml:description> + <maml:para>Retrieve a single Subnet or a list of Subnets within a Virtual Network</maml:para> + </maml:description> + <maml:copyright> + <maml:para /> + </maml:copyright> + <command:verb>Get</command:verb> + <command:noun>AzureVirtualNetworkSubnetConfig</command:noun> + <dev:version /> + </command:details> + <maml:description> + <maml:para>Retrieve a single Subnet or a list of Subnets within a Virtual Network</maml:para> + </maml:description> + <command:syntax> + <command:syntaxItem> + <maml:name>Get-AzureVirtualNetworkSubnetConfig</maml:name> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Name</maml:name> + <maml:description> + <maml:para>The name of the Subnet to retrieve.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue)" position="named"> + <maml:name>VirtualNetwork</maml:name> + <maml:description> + <maml:para>The Virtual Network containing the Subnet.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">PSVirtualNetwork</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + </command:parameter> + </command:syntaxItem> + </command:syntax> + <command:parameters> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Name</maml:name> + <maml:description> + <maml:para>The name of the Subnet to retrieve.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue)" position="named"> + <maml:name>VirtualNetwork</maml:name> + <maml:description> + <maml:para>The Virtual Network containing the Subnet.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">PSVirtualNetwork</command:parameterValue> + <dev:type> + <maml:name>PSVirtualNetwork</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + <dev:type> + <maml:name>AzureProfile</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + </command:parameters> + <command:inputTypes> + <command:inputType> + <dev:type> + <maml:name></maml:name> + <maml:uri></maml:uri> + <maml:description/> + </dev:type> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:inputType> + </command:inputTypes> + <command:returnValues> + <command:returnValue> + <dev:type> + <maml:name></maml:name> + <maml:uri></maml:uri> + <maml:description/> + </dev:type> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:returnValue> + </command:returnValues> + <command:terminatingErrors></command:terminatingErrors> + <command:nonTerminatingErrors></command:nonTerminatingErrors> + <maml:alertSet> + <maml:title></maml:title> + <maml:alert> + <maml:para /> + </maml:alert> + </maml:alertSet> + <command:examples> + </command:examples> + <maml:relatedLinks> + </maml:relatedLinks> +</command:command> + +<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> +<!--Generated by PS Cmdlet Help Editor--> + <command:details> + <command:name>New-AzureLoadBalancer</command:name> + <maml:description> + <maml:para>Create a new Azure Load Balancer</maml:para> + </maml:description> + <maml:copyright> + <maml:para /> + </maml:copyright> + <command:verb>New</command:verb> + <command:noun>AzureLoadBalancer</command:noun> + <dev:version /> + </command:details> + <maml:description> + <maml:para>Create a new Azure Load Balancer</maml:para> + </maml:description> + <command:syntax> + <command:syntaxItem> + <maml:name>New-AzureLoadBalancer</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>Name</maml:name> + <maml:description> + <maml:para>The name of the Load Balancer.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>ResourceGroupName</maml:name> + <maml:description> + <maml:para>The name of the Resource Group in which this Load Balancer will be created.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>Location</maml:name> + <maml:description> + <maml:para>The Region in which this Load Balancer will be created.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>FrontendIpConfiguration</maml:name> + <maml:description> + <maml:para>A list of Frontend Ips objects to associate with this Load Balancer.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="true">List`1[PSFrontendIPConfiguration]</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>BackendAddressPool</maml:name> + <maml:description> + <maml:para>A list of Backend Address Pool objects to associate with this Load Balancer</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="true">List`1[PSBackendAddressPool]</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>Probe</maml:name> + <maml:description> + <maml:para>A list of Probe objects to associate with this Load Balancer.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="true">List`1[PSProbe]</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>InboundNatRule</maml:name> + <maml:description> + <maml:para>A list of Inbound NAT Rules objects to associated with this Load Balancer.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="true">List`1[PSInboundNatRule]</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>LoadBalancingRule</maml:name> + <maml:description> + <maml:para>A list of Load Balancing Rule objects to associate with this Load Balancer.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="true">List`1[PSLoadBalancingRule]</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>Tag</maml:name> + <maml:description> + <maml:para>A dictionary of tags to be associated with this Load Balancer.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="true">Hashtable[]</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Force</maml:name> + <maml:description> + <maml:para>Forces the creation of the Load Balancer even if a Load Balancer with the same name already exists.</maml:para> + </maml:description> + <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + </command:parameter> + </command:syntaxItem> + </command:syntax> + <command:parameters> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>Name</maml:name> + <maml:description> + <maml:para>The name of the Load Balancer.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>ResourceGroupName</maml:name> + <maml:description> + <maml:para>The name of the Resource Group in which this Load Balancer will be created.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>Location</maml:name> + <maml:description> + <maml:para>The Region in which this Load Balancer will be created.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>FrontendIpConfiguration</maml:name> + <maml:description> + <maml:para>A list of Frontend Ips objects to associate with this Load Balancer.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="true">List`1[PSFrontendIPConfiguration]</command:parameterValue> + <dev:type> + <maml:name>List`1[PSFrontendIPConfiguration]</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>BackendAddressPool</maml:name> + <maml:description> + <maml:para>A list of Backend Address Pool objects to associate with this Load Balancer</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="true">List`1[PSBackendAddressPool]</command:parameterValue> + <dev:type> + <maml:name>List`1[PSBackendAddressPool]</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>Probe</maml:name> + <maml:description> + <maml:para>A list of Probe objects to associate with this Load Balancer.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="true">List`1[PSProbe]</command:parameterValue> + <dev:type> + <maml:name>List`1[PSProbe]</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>InboundNatRule</maml:name> + <maml:description> + <maml:para>A list of Inbound NAT Rules objects to associated with this Load Balancer.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="true">List`1[PSInboundNatRule]</command:parameterValue> + <dev:type> + <maml:name>List`1[PSInboundNatRule]</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>LoadBalancingRule</maml:name> + <maml:description> + <maml:para>A list of Load Balancing Rule objects to associate with this Load Balancer.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="true">List`1[PSLoadBalancingRule]</command:parameterValue> + <dev:type> + <maml:name>List`1[PSLoadBalancingRule]</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>Tag</maml:name> + <maml:description> + <maml:para>A dictionary of tags to be associated with this Load Balancer.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="true">Hashtable[]</command:parameterValue> + <dev:type> + <maml:name>Hashtable[]</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Force</maml:name> + <maml:description> + <maml:para>Forces the creation of the Load Balancer even if a Load Balancer with the same name already exists.</maml:para> + </maml:description> + <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> + <dev:type> + <maml:name>SwitchParameter</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + <dev:type> + <maml:name>AzureProfile</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + </command:parameters> + <command:inputTypes> + <command:inputType> + <dev:type> + <maml:name></maml:name> + <maml:uri></maml:uri> + <maml:description/> + </dev:type> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:inputType> + </command:inputTypes> + <command:returnValues> + <command:returnValue> + <dev:type> + <maml:name></maml:name> + <maml:uri></maml:uri> + <maml:description/> + </dev:type> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:returnValue> + </command:returnValues> + <command:terminatingErrors></command:terminatingErrors> + <command:nonTerminatingErrors></command:nonTerminatingErrors> + <maml:alertSet> + <maml:title></maml:title> + <maml:alert> + <maml:para /> + </maml:alert> + </maml:alertSet> + <command:examples> + <command:example> + <maml:title>-------------------------- Example 1 --------------------------</maml:title> + <maml:introduction> + <maml:paragraph>PS C:\&gt;</maml:paragraph> + </maml:introduction> + <dev:code>New-AzureResourceGroup ` + -Name &apos;SampleRG&apos; ` + -Location &quot;West US&quot; + +$backendSubnet = New-AzureVirtualNetworkSubnetConfig -Name LB-Subnet-BE -AddressPrefix 10.0.2.0/24 + +$vnet = New-AzurevirtualNetwork ` + -Name SampleVNet ` + -ResourceGroupName SampleRG ` + -Location &quot;West US&quot; ` + -AddressPrefix 10.0.0.0/16 ` + -Subnet $frontendSubnet,$backendSubnet + +$backendNic = New-AzureNetworkInterface ` + -Name LB-Nic-BE ` + -ResourceGroupName SampleRG ` + -Location &quot;West US&quot; ` + -PrivateIpAddress 10.0.2.4 ` + -Subnet $backendSubnet + +$backendNic2 = New-AzureNetworkInterface ` + -Name LB-Nic2-BE ` + -ResourceGroupName SampleRG ` + -Location &quot;West US&quot; ` + -PrivateIpAddress 10.0.2.5 ` + -Subnet $backendSubnet + +$publicIP = New-AzurePublicIpAddress ` + -Name PublicIp ` + -ResourceGroupName SampleRG ` + -Location &quot;West US&quot; ` + –AllocationMethod Dynamic ` + -DomainNameLabel samplelbip + +$frontendIP = New-AzureLoadBalancerFrontendIpConfig ` + -Name LB-Frontend ` + -PublicIpAddress $publicIP + +$backendAddressPool = New-AzureLoadBalancerBackendAddressPoolConfig ` + -Name LB-BEPool ` + +$inboundNatRule = New-AzureLoadBalancerInboundNatRuleConfig ` + -Name LB-InboundNATRule ` + -FrontendIPConfiguration $frontendIP ` + -Protocol Tcp ` + -FrontendPort 3389 ` + -BackendPort 3389 ` + -IdleTimeoutInMinutes 15 + +$probe = New-AzureLoadBalancerProbeConfig ` + -Name LB-Probe ` + -RequestPath healthcheck.aspx ` + -Protocol http ` + -Port 80 ` + -IntervalInSeconds 15 ` + -ProbeCount 2 + +$lbrule = New-AzureLoadBalancerRuleConfig ` + -Name LB-LBRule ` + -FrontendIPConfiguration $frontendIP ` + -BackendAddressPool $backendAddressPool ` + -Probe $probe ` + -Protocol Tcp ` + -FrontendPort 80 ` + -BackendPort 80 ` + -IdleTimeoutInMinutes 15 + +New-AzureLoadBalancer ` + -Name LB ` + -ResourceGroupName SampleRG ` + -Location &quot;West US&quot; ` + -FrontendIpConfiguration $frontendIP ` + -BackendAddressPool $backendAddressPool ` + -Probe $probe ` + -InboundNatRule $inboundNatRule ` + -LoadBalancingRule $lbrule</dev:code> + <dev:remarks> + <maml:para /> + <maml:para /> + <maml:para /> + <maml:para></maml:para> + </dev:remarks> + <command:commandLines> + <command:commandLine> + <command:commandText> + <maml:para /> + </command:commandText> + </command:commandLine> + </command:commandLines> + </command:example> + </command:examples> + <maml:relatedLinks> + </maml:relatedLinks> +</command:command> +<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> +<!--Generated by PS Cmdlet Help Editor--> + <command:details> + <command:name>New-AzureLoadBalancerBackendAddressPoolConfig</command:name> + <maml:description> + <maml:para>Create a new Backend Address Pool for an Azure Load Balancer</maml:para> + </maml:description> + <maml:copyright> + <maml:para /> + </maml:copyright> + <command:verb>New</command:verb> + <command:noun>AzureLoadBalancerBackendAddressPoolConfig</command:noun> + <dev:version /> + </command:details> + <maml:description> + <maml:para>Create a new Backend Address Pool for an Azure Load Balancer</maml:para> + </maml:description> + <command:syntax> + <command:syntaxItem> + <maml:name>New-AzureLoadBalancerBackendAddressPoolConfig</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Name</maml:name> + <maml:description> + <maml:para>The name of the Backend Address Pool.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + </command:parameter> + </command:syntaxItem> + </command:syntax> + <command:parameters> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Name</maml:name> + <maml:description> + <maml:para>The name of the Backend Address Pool.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + <dev:type> + <maml:name>AzureProfile</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>BackendIpConfigurationId</maml:name> + <maml:description> + <maml:para>A list of Backend Ip config Id&#39;s to associate with this.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">list`1[string]</command:parameterValue> + <dev:type> + <maml:name>list`1[string]</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>BackendIpConfiguration</maml:name> + <maml:description> + <maml:para>A list of Ips to associate with the Backend Address Pool.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">list`1[psnetworkinterfaceipconfiguration]</command:parameterValue> + <dev:type> + <maml:name>list`1[psnetworkinterfaceipconfiguration]</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + </command:parameters> + <command:inputTypes> + <command:inputType> + <dev:type> + <maml:name></maml:name> + <maml:uri></maml:uri> + <maml:description/> + </dev:type> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:inputType> + </command:inputTypes> + <command:returnValues> + <command:returnValue> + <dev:type> + <maml:name></maml:name> + <maml:uri></maml:uri> + <maml:description/> + </dev:type> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:returnValue> + </command:returnValues> + <command:terminatingErrors></command:terminatingErrors> + <command:nonTerminatingErrors></command:nonTerminatingErrors> + <maml:alertSet> + <maml:title></maml:title> + <maml:alert> + <maml:para /> + </maml:alert> + </maml:alertSet> + <command:examples> + </command:examples> + <maml:relatedLinks> + </maml:relatedLinks> +</command:command> +<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> +<!--Generated by PS Cmdlet Help Editor--> + <command:details> + <command:name>New-AzureLoadBalancerFrontendIpConfig</command:name> + <maml:description> + <maml:para>Create a new Frontend Ip Config for an Azure Load Balancer</maml:para> + </maml:description> + <maml:copyright> + <maml:para /> + </maml:copyright> + <command:verb>New</command:verb> + <command:noun>AzureLoadBalancerFrontendIpConfig</command:noun> + <dev:version /> + </command:details> + <maml:description> + <maml:para>Create a new Frontend Ip Config for an Azure Load Balancer</maml:para> + </maml:description> + <command:syntax> + <command:syntaxItem> + <maml:name>New-AzureLoadBalancerFrontendIpConfig</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Name</maml:name> + <maml:description> + <maml:para>The name of the Frontend Ip.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>PrivateIpAddress</maml:name> + <maml:description> + <maml:para>The private Ip address of the load balancer. + This can be specified only if a subnet is specified</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>SubnetId</maml:name> + <maml:description> + <maml:para>The Id of the Subnet in which this Frontend Ip will be created.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>PublicIpAddressId</maml:name> + <maml:description> + <maml:para>The Id of the Public Ip Address to associate with this Frontend Ip.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + </command:parameter> + </command:syntaxItem> + <command:syntaxItem> + <maml:name>New-AzureLoadBalancerFrontendIpConfig</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Name</maml:name> + <maml:description> + <maml:para>The name of the Frontend Ip.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>PrivateIpAddress</maml:name> + <maml:description> + <maml:para>The private Ip address of the load balancer. + This can be specified only if a subnet is specified</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Subnet</maml:name> + <maml:description> + <maml:para>The Subnet object within which this Frontend Ip will be created.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">PSSubnet</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>PublicIpAddress</maml:name> + <maml:description> + <maml:para>The Public Ip Address object to associate with this Frontend Ip.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">PSPublicIpAddress</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + </command:parameter> + </command:syntaxItem> + </command:syntax> + <command:parameters> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Name</maml:name> + <maml:description> + <maml:para>The name of the Frontend Ip.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>PrivateIpAddress</maml:name> + <maml:description> + <maml:para>The private Ip address of the load balancer. + This can be specified only if a subnet is specified</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>SubnetId</maml:name> + <maml:description> + <maml:para>The Id of the Subnet in which this Frontend Ip will be created.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>PublicIpAddressId</maml:name> + <maml:description> + <maml:para>The Id of the Public Ip Address to associate with this Frontend Ip.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + <dev:type> + <maml:name>AzureProfile</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Subnet</maml:name> + <maml:description> + <maml:para>The Subnet object within which this Frontend Ip will be created.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">PSSubnet</command:parameterValue> + <dev:type> + <maml:name>PSSubnet</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>PublicIpAddress</maml:name> + <maml:description> + <maml:para>The Public Ip Address object to associate with this Frontend Ip.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">PSPublicIpAddress</command:parameterValue> + <dev:type> + <maml:name>PSPublicIpAddress</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + </command:parameters> + <command:inputTypes> + <command:inputType> + <dev:type> + <maml:name></maml:name> + <maml:uri></maml:uri> + <maml:description/> + </dev:type> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:inputType> + </command:inputTypes> + <command:returnValues> + <command:returnValue> + <dev:type> + <maml:name></maml:name> + <maml:uri></maml:uri> + <maml:description/> + </dev:type> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:returnValue> + </command:returnValues> + <command:terminatingErrors></command:terminatingErrors> + <command:nonTerminatingErrors></command:nonTerminatingErrors> + <maml:alertSet> + <maml:title></maml:title> + <maml:alert> + <maml:para /> + </maml:alert> + </maml:alertSet> + <command:examples> + </command:examples> + <maml:relatedLinks> + </maml:relatedLinks> +</command:command> +<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> +<!--Generated by PS Cmdlet Help Editor--> + <command:details> + <command:name>New-AzureLoadBalancerInboundNatRuleConfig</command:name> + <maml:description> + <maml:para>Create a new Inbound NAT rule for an Azure Load Balancer</maml:para> + </maml:description> + <maml:copyright> + <maml:para /> + </maml:copyright> + <command:verb>New</command:verb> + <command:noun>AzureLoadBalancerInboundNatRuleConfig</command:noun> + <dev:version /> + </command:details> + <maml:description> + <maml:para>Create a new Inbound NAT rule for an Azure Load Balancer</maml:para> + </maml:description> + <command:syntax> + <command:syntaxItem> + <maml:name>New-AzureLoadBalancerInboundNatRuleConfig</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Name</maml:name> + <maml:description> + <maml:para>The name of the Frontend Ip configuration to remove.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>FrontendIpConfigurationId</maml:name> + <maml:description> + <maml:para>A list of Frontend Ip Id&#39;s to associate with this Inbound NAT Rule.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Protocol</maml:name> + <maml:description> + <maml:para>The protocol matched by this Inbound NAT Rule.</maml:para> + <maml:para> Options: Tcp or Udp.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>FrontendPort</maml:name> + <maml:description> + <maml:para>The frontend port matched by this rule.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">Int32</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>BackendPort</maml:name> + <maml:description> + <maml:para>The backend port for traffic matched by this rule.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">Int32</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>IdleTimeoutInMinutes</maml:name> + <maml:description> + <maml:para>The length of time in minutes for which state of conversations is maintained within the Load Balancer.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">Int32</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>EnableFloatingIP</maml:name> + <maml:description> + <maml:para>Enables Direct Server Return for this Load Balancer NAT Rule.</maml:para> + </maml:description> + <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + </command:parameter> + </command:syntaxItem> + <command:syntaxItem> + <maml:name>New-AzureLoadBalancerInboundNatRuleConfig</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Name</maml:name> + <maml:description> + <maml:para>The name of the Frontend Ip configuration to remove.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>FrontendIpConfiguration</maml:name> + <maml:description> + <maml:para>A list of Frontend Ips to associate with this Inbound NAT Rule.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">PSFrontendIPConfiguration</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Protocol</maml:name> + <maml:description> + <maml:para>The protocol matched by this Inbound NAT Rule.</maml:para> + <maml:para> Options: Tcp or Udp.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>FrontendPort</maml:name> + <maml:description> + <maml:para>The frontend port matched by this rule.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">Int32</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>BackendPort</maml:name> + <maml:description> + <maml:para>The backend port for traffic matched by this rule.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">Int32</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>IdleTimeoutInMinutes</maml:name> + <maml:description> + <maml:para>The length of time in minutes for which state of conversations is maintained within the Load Balancer.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">Int32</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>EnableFloatingIP</maml:name> + <maml:description> + <maml:para>Enables Direct Server Return for this Load Balancer NAT Rule.</maml:para> + </maml:description> + <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + </command:parameter> + </command:syntaxItem> + </command:syntax> + <command:parameters> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Name</maml:name> + <maml:description> + <maml:para>The name of the Frontend Ip configuration to remove.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>FrontendIpConfigurationId</maml:name> + <maml:description> + <maml:para>A list of Frontend Ip Id&#39;s to associate with this Inbound NAT Rule.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Protocol</maml:name> + <maml:description> + <maml:para>The protocol matched by this Inbound NAT Rule.</maml:para> + <maml:para> Options: Tcp or Udp.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>FrontendPort</maml:name> + <maml:description> + <maml:para>The frontend port matched by this rule.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">Int32</command:parameterValue> + <dev:type> + <maml:name>Int32</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>BackendPort</maml:name> + <maml:description> + <maml:para>The backend port for traffic matched by this rule.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">Int32</command:parameterValue> + <dev:type> + <maml:name>Int32</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>IdleTimeoutInMinutes</maml:name> + <maml:description> + <maml:para>The length of time in minutes for which state of conversations is maintained within the Load Balancer.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">Int32</command:parameterValue> + <dev:type> + <maml:name>Int32</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>EnableFloatingIP</maml:name> + <maml:description> + <maml:para>Enables Direct Server Return for this Load Balancer NAT Rule.</maml:para> + </maml:description> + <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> + <dev:type> + <maml:name>SwitchParameter</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + <dev:type> + <maml:name>AzureProfile</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>FrontendIpConfiguration</maml:name> + <maml:description> + <maml:para>A list of Frontend Ips to associate with this Inbound NAT Rule.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">PSFrontendIPConfiguration</command:parameterValue> + <dev:type> + <maml:name>PSFrontendIPConfiguration</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>BackendIpConfigurationId</maml:name> + <maml:description> + <maml:para>The Id of a Backend Ip Configuration to associate with this Inbound NAT Rule.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">string</command:parameterValue> + <dev:type> + <maml:name>string</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>BackendIpConfiguration</maml:name> + <maml:description> + <maml:para>The Backend Ip Configuration to associate with this Inbound NAT Rule.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">psnetworkinterfaceipconfiguration</command:parameterValue> + <dev:type> + <maml:name>psnetworkinterfaceipconfiguration</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + </command:parameters> + <command:inputTypes> + <command:inputType> + <dev:type> + <maml:name></maml:name> + <maml:uri></maml:uri> + <maml:description/> + </dev:type> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:inputType> + </command:inputTypes> + <command:returnValues> + <command:returnValue> + <dev:type> + <maml:name></maml:name> + <maml:uri></maml:uri> + <maml:description/> + </dev:type> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:returnValue> + </command:returnValues> + <command:terminatingErrors></command:terminatingErrors> + <command:nonTerminatingErrors></command:nonTerminatingErrors> + <maml:alertSet> + <maml:title></maml:title> + <maml:alert> + <maml:para /> + </maml:alert> + </maml:alertSet> + <command:examples> + </command:examples> + <maml:relatedLinks> + </maml:relatedLinks> +</command:command> +<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> +<!--Generated by PS Cmdlet Help Editor--> + <command:details> + <command:name>New-AzureLoadBalancerProbeConfig</command:name> + <maml:description> + <maml:para>Create a new Probe Configuration for an Azure Load Balancer</maml:para> + </maml:description> + <maml:copyright> + <maml:para /> + </maml:copyright> + <command:verb>New</command:verb> + <command:noun>AzureLoadBalancerProbeConfig</command:noun> + <dev:version /> + </command:details> + <maml:description> + <maml:para>Create a new Probe Configuration for an Azure Load Balancer</maml:para> + </maml:description> + <command:syntax> + <command:syntaxItem> + <maml:name>New-AzureLoadBalancerProbeConfig</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Name</maml:name> + <maml:description> + <maml:para>The name of the Probe configuration.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>RequestPath</maml:name> + <maml:description> + <maml:para>The path within the load balanced service to probe to determine health.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Protocol</maml:name> + <maml:description> + <maml:para>The protocol to use for the probing.</maml:para> + <maml:para> Options: Tcp or Http.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Port</maml:name> + <maml:description> + <maml:para>The port on which probes should connect to the load balanced service.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">Int32</command:parameterValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>IntervalInSeconds</maml:name> + <maml:description> + <maml:para>The interval between probes to each instance of the load balanced service.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">Int32</command:parameterValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>ProbeCount</maml:name> + <maml:description> + <maml:para>The number of per-instance consecutive failures for an instance to be considered unhealthy.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">Int32</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + </command:parameter> + </command:syntaxItem> + </command:syntax> + <command:parameters> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Name</maml:name> + <maml:description> + <maml:para>The name of the Probe configuration.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>RequestPath</maml:name> + <maml:description> + <maml:para>The path within the load balanced service to probe to determine health.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Protocol</maml:name> + <maml:description> + <maml:para>The protocol to use for the probing.</maml:para> + <maml:para> Options: Tcp or Http.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Port</maml:name> + <maml:description> + <maml:para>The port on which probes should connect to the load balanced service.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">Int32</command:parameterValue> + <dev:type> + <maml:name>Int32</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>IntervalInSeconds</maml:name> + <maml:description> + <maml:para>The interval between probes to each instance of the load balanced service.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">Int32</command:parameterValue> + <dev:type> + <maml:name>Int32</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>ProbeCount</maml:name> + <maml:description> + <maml:para>The number of per-instance consecutive failures for an instance to be considered unhealthy.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">Int32</command:parameterValue> + <dev:type> + <maml:name>Int32</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + <dev:type> + <maml:name>AzureProfile</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + </command:parameters> + <command:inputTypes> + <command:inputType> + <dev:type> + <maml:name></maml:name> + <maml:uri></maml:uri> + <maml:description/> + </dev:type> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:inputType> + </command:inputTypes> + <command:returnValues> + <command:returnValue> + <dev:type> + <maml:name></maml:name> + <maml:uri></maml:uri> + <maml:description/> + </dev:type> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:returnValue> + </command:returnValues> + <command:terminatingErrors></command:terminatingErrors> + <command:nonTerminatingErrors></command:nonTerminatingErrors> + <maml:alertSet> + <maml:title></maml:title> + <maml:alert> + <maml:para /> + </maml:alert> + </maml:alertSet> + <command:examples> + </command:examples> + <maml:relatedLinks> + </maml:relatedLinks> +</command:command> +<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> +<!--Generated by PS Cmdlet Help Editor--> + <command:details> + <command:name>New-AzureLoadBalancerRuleConfig</command:name> + <maml:description> + <maml:para>Create a new Load Balancing Rule for an Azure Load Balancer</maml:para> + </maml:description> + <maml:copyright> + <maml:para /> + </maml:copyright> + <command:verb>New</command:verb> + <command:noun>AzureLoadBalancerRuleConfig</command:noun> + <dev:version /> + </command:details> + <maml:description> + <maml:para>Create a new Load Balancing Rule for an Azure Load Balancer</maml:para> + </maml:description> + <command:syntax> + <command:syntaxItem> + <maml:name>New-AzureLoadBalancerRuleConfig</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Name</maml:name> + <maml:description> + <maml:para>The name of the Load Balancing Rule.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>FrontendIpConfigurationId</maml:name> + <maml:description> + <maml:para>A list of Frontend Ip Id&#39;s to associate with this Load Balancer Rule.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>BackendAddressPoolId</maml:name> + <maml:description> + <maml:para>The Id of a Backend Address Pool to associate with this Load Balancer Rule.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>ProbeId</maml:name> + <maml:description> + <maml:para>The Id of the Probe to associate with this Load Balancer Rule.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Protocol</maml:name> + <maml:description> + <maml:para>The protocol matched by this Load Balancer Rule.</maml:para> + <maml:para> Options: Tcp or Udp</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>FrontendPort</maml:name> + <maml:description> + <maml:para>The frontend port matched by this Load Balancer Rule.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">Int32</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>BackendPort</maml:name> + <maml:description> + <maml:para>The backend port for traffic matched by this Load Balancer Rule.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">Int32</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>IdleTimeoutInMinutes</maml:name> + <maml:description> + <maml:para>The length of time in minutes for which state of conversations is maintained within the Load Balancer.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">Int32</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>LoadDistribution</maml:name> + <maml:description> + <maml:para>Specifies the load balancing distribution type to be used by the Load Balancer. +Possible values are +Default – The load balancer is configured to use a 5 tuple hash to map traffic to available servers +SourceIP – The load balancer is configured to use a 2 tuple hash to map traffic to available servers +SourceIPProtocol– The load balancer is configured to use a 3 tuple hash to map traffic to available servers</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>EnableFloatingIP</maml:name> + <maml:description> + <maml:para>Floating IP is pertinent to failover scenarios: a “floating” IP is reassigned to a secondary server in case the primary server fails. Floating IP is required for SQL AlwaysOn.</maml:para> + </maml:description> + <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + </command:parameter> + </command:syntaxItem> + <command:syntaxItem> + <maml:name>New-AzureLoadBalancerRuleConfig</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Name</maml:name> + <maml:description> + <maml:para>The name of the Load Balancing Rule.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>FrontendIpConfiguration</maml:name> + <maml:description> + <maml:para>A list of Frontend Ips to associate with this Load Balancer Rule.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">PSFrontendIPConfiguration</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>BackendAddressPool</maml:name> + <maml:description> + <maml:para>The Backend Address Pool to associate with this Load Balancer Rule.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">PSBackendAddressPool</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Probe</maml:name> + <maml:description> + <maml:para>The Probe to associate with this Load Balancer Rule.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">PSProbe</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Protocol</maml:name> + <maml:description> + <maml:para>The protocol matched by this Load Balancer Rule.</maml:para> + <maml:para> Options: Tcp or Udp</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>FrontendPort</maml:name> + <maml:description> + <maml:para>The frontend port matched by this Load Balancer Rule.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">Int32</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>BackendPort</maml:name> + <maml:description> + <maml:para>The backend port for traffic matched by this Load Balancer Rule.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">Int32</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>IdleTimeoutInMinutes</maml:name> + <maml:description> + <maml:para>The length of time in minutes for which state of conversations is maintained within the Load Balancer.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">Int32</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>LoadDistribution</maml:name> + <maml:description> + <maml:para>Specifies the load balancing distribution type to be used by the Load Balancer. +Possible values are +Default – The load balancer is configured to use a 5 tuple hash to map traffic to available servers +SourceIP – The load balancer is configured to use a 2 tuple hash to map traffic to available servers +SourceIPProtocol– The load balancer is configured to use a 3 tuple hash to map traffic to available servers</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>EnableFloatingIP</maml:name> + <maml:description> + <maml:para>Floating IP is pertinent to failover scenarios: a “floating” IP is reassigned to a secondary server in case the primary server fails. Floating IP is required for SQL AlwaysOn.</maml:para> + </maml:description> + <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + </command:parameter> + </command:syntaxItem> + </command:syntax> + <command:parameters> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Name</maml:name> + <maml:description> + <maml:para>The name of the Load Balancing Rule.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>FrontendIpConfigurationId</maml:name> + <maml:description> + <maml:para>A list of Frontend Ip Id&#39;s to associate with this Load Balancer Rule.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>BackendAddressPoolId</maml:name> + <maml:description> + <maml:para>The Id of a Backend Address Pool to associate with this Load Balancer Rule.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>ProbeId</maml:name> + <maml:description> + <maml:para>The Id of the Probe to associate with this Load Balancer Rule.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Protocol</maml:name> + <maml:description> + <maml:para>The protocol matched by this Load Balancer Rule.</maml:para> + <maml:para> Options: Tcp or Udp</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>FrontendPort</maml:name> + <maml:description> + <maml:para>The frontend port matched by this Load Balancer Rule.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">Int32</command:parameterValue> + <dev:type> + <maml:name>Int32</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>BackendPort</maml:name> + <maml:description> + <maml:para>The backend port for traffic matched by this Load Balancer Rule.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">Int32</command:parameterValue> + <dev:type> + <maml:name>Int32</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>IdleTimeoutInMinutes</maml:name> + <maml:description> + <maml:para>The length of time in minutes for which state of conversations is maintained within the Load Balancer.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">Int32</command:parameterValue> + <dev:type> + <maml:name>Int32</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>LoadDistribution</maml:name> + <maml:description> + <maml:para>Specifies the load balancing distribution type to be used by the Load Balancer. +Possible values are +Default – The load balancer is configured to use a 5 tuple hash to map traffic to available servers +SourceIP – The load balancer is configured to use a 2 tuple hash to map traffic to available servers +SourceIPProtocol– The load balancer is configured to use a 3 tuple hash to map traffic to available servers</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>EnableFloatingIP</maml:name> + <maml:description> + <maml:para>Floating IP is pertinent to failover scenarios: a “floating” IP is reassigned to a secondary server in case the primary server fails. Floating IP is required for SQL AlwaysOn.</maml:para> + </maml:description> + <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> + <dev:type> + <maml:name>SwitchParameter</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + <dev:type> + <maml:name>AzureProfile</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>FrontendIpConfiguration</maml:name> + <maml:description> + <maml:para>A list of Frontend Ips to associate with this Load Balancer Rule.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">PSFrontendIPConfiguration</command:parameterValue> + <dev:type> + <maml:name>PSFrontendIPConfiguration</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>BackendAddressPool</maml:name> + <maml:description> + <maml:para>The Backend Address Pool to associate with this Load Balancer Rule.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">PSBackendAddressPool</command:parameterValue> + <dev:type> + <maml:name>PSBackendAddressPool</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Probe</maml:name> + <maml:description> + <maml:para>The Probe to associate with this Load Balancer Rule.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">PSProbe</command:parameterValue> + <dev:type> + <maml:name>PSProbe</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + </command:parameters> + <command:inputTypes> + <command:inputType> + <dev:type> + <maml:name></maml:name> + <maml:uri></maml:uri> + <maml:description/> + </dev:type> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:inputType> + </command:inputTypes> + <command:returnValues> + <command:returnValue> + <dev:type> + <maml:name></maml:name> + <maml:uri></maml:uri> + <maml:description/> + </dev:type> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:returnValue> + </command:returnValues> + <command:terminatingErrors></command:terminatingErrors> + <command:nonTerminatingErrors></command:nonTerminatingErrors> + <maml:alertSet> + <maml:title></maml:title> + <maml:alert> + <maml:para /> + </maml:alert> + </maml:alertSet> + <command:examples> + </command:examples> + <maml:relatedLinks> + </maml:relatedLinks> +</command:command> +<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> +<!--Generated by PS Cmdlet Help Editor--> + <command:details> + <command:name>New-AzureNetworkInterface</command:name> + <maml:description> + <maml:para>Create a new Network Interface</maml:para> + </maml:description> + <maml:copyright> + <maml:para /> + </maml:copyright> + <command:verb>New</command:verb> + <command:noun>AzureNetworkInterface</command:noun> + <dev:version /> + </command:details> + <maml:description> + <maml:para>Create a new Network Interface</maml:para> + </maml:description> + <command:syntax> + <command:syntaxItem> + <maml:name>New-AzureNetworkInterface</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>Name</maml:name> + <maml:description> + <maml:para>The name of the Network Interface.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>ResourceGroupName</maml:name> <maml:description> - <maml:para>The name of the Frontend Ip.</maml:para> + <maml:para>The name of the Resource Group in which this Network Interface will be created.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>Location</maml:name> + <maml:description> + <maml:para>The Region in which this Network Interface will be created.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> <maml:name>PrivateIpAddress</maml:name> <maml:description> - <maml:para>The private ip address of the load balancer. - This can be specified only if a subnet is specified</maml:para> + <maml:para>The static Ipv4 Ip address to be assigned to this Network Interface. Optional</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>SubnetId</maml:name> + <maml:description> + <maml:para>The Id of the Subnet resource in which this Network Interface will be created.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>PublicIpAddressId</maml:name> + <maml:description> + <maml:para>The Id of the Public Ip Address resource to assign to this Network Interface.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>NetworkSecurityGroupId</maml:name> + <maml:description> + <maml:para>The Network Security Group object containing ACLs that will apply to this NIC.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>LoadBalancerBackendAddressPoolId</maml:name> + <maml:description> + <maml:para>A reference to a Load Balancer Address Pool to which this NIC will be added.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="true">List`1[String]</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>LoadBalancerInboundNatRuleId</maml:name> + <maml:description> + <maml:para>A reference to a Load Balancer Inbound Nat Rule to which this NIC will be added.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="true">List`1[String]</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>IpConfigurationName</maml:name> + <maml:description> + <maml:para>The name of Ip Configuration.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> + <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>DnsServer</maml:name> + <maml:description> + <maml:para>The Dns servers to be used for performing Dns lookups from this NIC.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="true">List`1[String]</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>Tag</maml:name> + <maml:description> + <maml:para>A dictionary of tags to be associated with this Network Interface.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="true">Hashtable[]</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Force</maml:name> + <maml:description> + <maml:para>Forces the creation of the Network Interface even if a Network Interface with the same name already exists.</maml:para> + </maml:description> + <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> + </command:parameter> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + </command:parameter> + </command:syntaxItem> + <command:syntaxItem> + <maml:name>New-AzureNetworkInterface</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>Name</maml:name> + <maml:description> + <maml:para>The name of the Network Interface.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>ResourceGroupName</maml:name> + <maml:description> + <maml:para>The name of the Resource Group in which this Network Interface will be created.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>Location</maml:name> + <maml:description> + <maml:para>The Region in which this Network Interface will be created.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>PrivateIpAddress</maml:name> + <maml:description> + <maml:para>The static Ipv4 Ip address to be assigned to this Network Interface. Optional</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> <maml:name>Subnet</maml:name> <maml:description> - <maml:para>The Subnet object within which this Frontend Ip will be created.</maml:para> + <maml:para>The Subnet object in which this Network Interface will be created.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">PSSubnet</command:parameterValue> </command:parameter> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> <maml:name>PublicIpAddress</maml:name> <maml:description> - <maml:para>The PublicIpAddress object to associate with this Frontend Ip.</maml:para> + <maml:para>The Public Ip Address object to assign to this Network Interface.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">PSPublicIpAddress</command:parameterValue> </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>NetworkSecurityGroup</maml:name> + <maml:description> + <maml:para>A reference to a Network Security Group object containing ACLs that will apply to this NIC.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">PSNetworkSecurityGroup</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>LoadBalancerBackendAddressPool</maml:name> + <maml:description> + <maml:para>A Load Balancer Address Pool object to which this NIC will be added.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="true">List`1[PSBackendAddressPool]</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>LoadBalancerInboundNatRule</maml:name> + <maml:description> + <maml:para>A Load Balancer Inbound Nat Rule object to which this NIC will be added.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="true">List`1[PSInboundNatRule]</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>IpConfigurationName</maml:name> + <maml:description> + <maml:para>The name of Ip Configuration.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>DnsServer</maml:name> + <maml:description> + <maml:para>The Dns servers to be used for performing Dns lookups from this NIC.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="true">List`1[String]</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>Tag</maml:name> + <maml:description> + <maml:para>A dictionary of tags to be associated with this Network Interface.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="true">Hashtable[]</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Force</maml:name> + <maml:description> + <maml:para>Forces the creation of the Network Interface even if a Network Interface with the same name already exists.</maml:para> + </maml:description> + <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + </command:parameter> </command:syntaxItem> </command:syntax> <command:parameters> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> <maml:name>Name</maml:name> <maml:description> - <maml:para>The name of the Frontend Ip.</maml:para> + <maml:para>The name of the Network Interface.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -3181,47 +5477,166 @@ </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>ResourceGroupName</maml:name> + <maml:description> + <maml:para>The name of the Resource Group in which this Network Interface will be created.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>Location</maml:name> + <maml:description> + <maml:para>The Region in which this Network Interface will be created.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> <maml:name>PrivateIpAddress</maml:name> <maml:description> - <maml:para>The private ip address of the load balancer. - This can be specified only if a subnet is specified</maml:para> + <maml:para>The static Ipv4 Ip address to be assigned to this Network Interface. Optional</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>SubnetId</maml:name> + <maml:description> + <maml:para>The Id of the Subnet resource in which this Network Interface will be created.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>PublicIpAddressId</maml:name> + <maml:description> + <maml:para>The Id of the Public Ip Address resource to assign to this Network Interface.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>NetworkSecurityGroupId</maml:name> + <maml:description> + <maml:para>The Network Security Group object containing ACLs that will apply to this NIC.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>LoadBalancerBackendAddressPoolId</maml:name> + <maml:description> + <maml:para>A reference to a Load Balancer Address Pool to which this NIC will be added.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="true">List`1[String]</command:parameterValue> + <dev:type> + <maml:name>List`1[String]</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>LoadBalancerInboundNatRuleId</maml:name> + <maml:description> + <maml:para>A reference to a Load Balancer Inbound Nat Rule to which this NIC will be added.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="true">List`1[String]</command:parameterValue> + <dev:type> + <maml:name>List`1[String]</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>IpConfigurationName</maml:name> + <maml:description> + <maml:para>The name of Ip Configuration.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>DnsServer</maml:name> + <maml:description> + <maml:para>The Dns servers to be used for performing Dns lookups from this NIC.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="true">List`1[String]</command:parameterValue> + <dev:type> + <maml:name>List`1[String]</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>Tag</maml:name> + <maml:description> + <maml:para>A dictionary of tags to be associated with this Network Interface.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <command:parameterValue required="true" variableLength="true">Hashtable[]</command:parameterValue> <dev:type> - <maml:name>String</maml:name> + <maml:name>Hashtable[]</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>SubnetId</maml:name> + <maml:name>Force</maml:name> <maml:description> - <maml:para>The ID of the Subnet in which this Frontend Ip will be created</maml:para> + <maml:para>Forces the creation of the Network Interface even if a Network Interface with the same name already exists.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> <dev:type> - <maml:name>String</maml:name> + <maml:name>SwitchParameter</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>PublicIpAddressId</maml:name> + <maml:name>Profile</maml:name> <maml:description> - <maml:para>The ID of the PublicIpAddress to associate with this Frontend Ip.</maml:para> + <maml:para /> </maml:description> - <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> <dev:type> - <maml:name>String</maml:name> + <maml:name>AzureProfile</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> <maml:name>Subnet</maml:name> <maml:description> - <maml:para>The Subnet object within which this Frontend Ip will be created.</maml:para> + <maml:para>The Subnet object in which this Network Interface will be created.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">PSSubnet</command:parameterValue> <dev:type> @@ -3230,10 +5645,10 @@ </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> <maml:name>PublicIpAddress</maml:name> <maml:description> - <maml:para>The PublicIpAddress object to associate with this Frontend Ip.</maml:para> + <maml:para>The Public Ip Address object to assign to this Network Interface.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">PSPublicIpAddress</command:parameterValue> <dev:type> @@ -3242,187 +5657,208 @@ </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>NetworkSecurityGroup</maml:name> + <maml:description> + <maml:para>A reference to a Network Security Group object containing ACLs that will apply to this NIC.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">PSNetworkSecurityGroup</command:parameterValue> + <dev:type> + <maml:name>PSNetworkSecurityGroup</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>LoadBalancerBackendAddressPool</maml:name> + <maml:description> + <maml:para>A Load Balancer Address Pool object to which this NIC will be added.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="true">List`1[PSBackendAddressPool]</command:parameterValue> + <dev:type> + <maml:name>List`1[PSBackendAddressPool]</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>LoadBalancerInboundNatRule</maml:name> + <maml:description> + <maml:para>A Load Balancer Inbound Nat Rule object to which this NIC will be added.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="true">List`1[PSInboundNatRule]</command:parameterValue> + <dev:type> + <maml:name>List`1[PSInboundNatRule]</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="named"> + <maml:name>AllocationMethod</maml:name> + <maml:description> + <maml:para>How Ips are assigned to this Network Interface. Options: Static or Dynamic</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">string</command:parameterValue> + <dev:type> + <maml:name>string</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> </command:parameters> <command:inputTypes> <command:inputType> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> + <maml:description> + <maml:para> +</maml:para> + </maml:description> </command:inputType> </command:inputTypes> <command:returnValues> <command:returnValue> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> - </command:returnValue> - </command:returnValues> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:returnValue> + </command:returnValues> <command:terminatingErrors></command:terminatingErrors> <command:nonTerminatingErrors></command:nonTerminatingErrors> <maml:alertSet> <maml:title></maml:title> <maml:alert> - <maml:para></maml:para> + <maml:para /> </maml:alert> </maml:alertSet> <command:examples> + <command:example> + <maml:title>-------------------------- Example 1 --------------------------</maml:title> + <maml:introduction> + <maml:paragraph>PS C:\&gt;</maml:paragraph> + </maml:introduction> + <dev:code>New-AzureResourceGroup ` + -Name &apos;SampleRG&apos; ` + -Location &quot;West US&quot; + +$backendSubnet = New-AzureVirtualNetworkSubnetConfig -Name LB-Subnet-BE -AddressPrefix 10.0.2.0/24 + +$vnet = New-AzurevirtualNetwork ` + -Name SampleVNet ` + -ResourceGroupName SampleRG ` + -Location &quot;West US&quot; ` + -AddressPrefix 10.0.0.0/16 ` + -Subnet $frontendSubnet,$backendSubnet + +$backendNic = New-AzureNetworkInterface ` + -Name LB-Nic-BE ` + -ResourceGroupName SampleRG ` + -Location &quot;West US&quot; ` + -PrivateIpAddress 10.0.2.4 ` + -Subnet $backendSubnet</dev:code> + <dev:remarks> + <maml:para /> + <maml:para /> + <maml:para /> + <maml:para></maml:para> + </dev:remarks> + <command:commandLines> + <command:commandLine> + <command:commandText> + <maml:para /> + </command:commandText> + </command:commandLine> + </command:commandLines> + </command:example> </command:examples> <maml:relatedLinks> </maml:relatedLinks> </command:command> -<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10"> +<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> <!--Generated by PS Cmdlet Help Editor--> <command:details> - <command:name>New-AzureLoadBalancerInboundNatRuleConfig</command:name> + <command:name>New-AzureNetworkSecurityGroup</command:name> <maml:description> - <maml:para>Create a new Inbound NAT rule for an Azure Load Balancer</maml:para> + <maml:para>Create a new Network Security Group</maml:para> </maml:description> <maml:copyright> <maml:para /> </maml:copyright> <command:verb>New</command:verb> - <command:noun>AzureLoadBalancerInboundNatRuleConfig</command:noun> + <command:noun>AzureNetworkSecurityGroup</command:noun> <dev:version /> </command:details> <maml:description> - <!--This is the Description section--> - <maml:para>Create a new Inbound NAT rule for an Azure Load Balancer</maml:para> + <maml:para>Create a new Network Security Group</maml:para> </maml:description> <command:syntax> <command:syntaxItem> - <maml:name>New-AzureLoadBalancerInboundNatRuleConfig</maml:name> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>New-AzureNetworkSecurityGroup</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> <maml:name>Name</maml:name> <maml:description> - <maml:para>The name of the Frontend Ip configuration to remove.</maml:para> + <maml:para>The name of the Network Security Group.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> - <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"> - <maml:name>FrontendIPConfigurationId</maml:name> - <maml:description> - <maml:para></maml:para> - </maml:description> - <command:parameterValue required="true" variableLength="true">List`1[String]</command:parameterValue> - </command:parameter> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>BackendIpConfigurationId</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>ResourceGroupName</maml:name> <maml:description> - <maml:para></maml:para> + <maml:para>The name of the Resource Group in which this Network Security Group will be created.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>Protocol</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>Location</maml:name> <maml:description> - <maml:para></maml:para> + <maml:para>The Region in which this Network Security Group will be created.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>FrontendPort</maml:name> - <maml:description> - <maml:para></maml:para> - </maml:description> - <command:parameterValue required="true" variableLength="false">Int32</command:parameterValue> - </command:parameter> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>BackendPort</maml:name> + <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>SecurityRules</maml:name> <maml:description> - <maml:para></maml:para> + <maml:para>A list of Network Security Rule objects to create within this Network Security Group.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="false">Int32</command:parameterValue> + <command:parameterValue required="true" variableLength="true">List`1[PSSecurityRule]</command:parameterValue> </command:parameter> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>IdleTimeoutInMinutes</maml:name> + <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>Tag</maml:name> <maml:description> - <maml:para></maml:para> + <maml:para>A dictionary of tags to be associated with this Network Security Group.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="false">Int32</command:parameterValue> + <command:parameterValue required="true" variableLength="true">Hashtable[]</command:parameterValue> </command:parameter> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>EnableFloatingIP</maml:name> + <maml:name>Force</maml:name> <maml:description> - <maml:para></maml:para> + <maml:para>Forces the creation of the Network Security Group even if a Network Security Group with the same name already exists.</maml:para> </maml:description> <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> </command:parameter> - </command:syntaxItem> - <command:syntaxItem> - <maml:name>New-AzureLoadBalancerInboundNatRuleConfig</maml:name> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>Name</maml:name> - <maml:description> - <maml:para>The name of the Frontend Ip configuration to remove.</maml:para> - </maml:description> - <command:parameterValue required="true" variableLength="false">String</command:parameterValue> - </command:parameter> - <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"> - <maml:name>FrontendIpConfiguration</maml:name> - <maml:description> - <maml:para></maml:para> - </maml:description> - <command:parameterValue required="true" variableLength="true">List`1[PSFrontendIpConfiguration]</command:parameterValue> - </command:parameter> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>BackendIpConfiguration</maml:name> - <maml:description> - <maml:para></maml:para> - </maml:description> - <command:parameterValue required="true" variableLength="false">PSNetworkInterfaceIpConfiguration</command:parameterValue> - </command:parameter> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>Protocol</maml:name> - <maml:description> - <maml:para></maml:para> - </maml:description> - <command:parameterValue required="true" variableLength="false">String</command:parameterValue> - </command:parameter> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>FrontendPort</maml:name> - <maml:description> - <maml:para></maml:para> - </maml:description> - <command:parameterValue required="true" variableLength="false">Int32</command:parameterValue> - </command:parameter> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>BackendPort</maml:name> - <maml:description> - <maml:para></maml:para> - </maml:description> - <command:parameterValue required="true" variableLength="false">Int32</command:parameterValue> - </command:parameter> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>IdleTimeoutInMinutes</maml:name> - <maml:description> - <maml:para></maml:para> - </maml:description> - <command:parameterValue required="true" variableLength="false">Int32</command:parameterValue> - </command:parameter> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>EnableFloatingIP</maml:name> + <maml:name>Profile</maml:name> <maml:description> - <maml:para></maml:para> + <maml:para /> </maml:description> - <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> </command:parameter> </command:syntaxItem> </command:syntax> <command:parameters> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> <maml:name>Name</maml:name> <maml:description> - <maml:para>The name of the Frontend Ip configuration to remove.</maml:para> + <maml:para>The name of the Network Security Group.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -3431,22 +5867,10 @@ </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"> - <maml:name>FrontendIPConfigurationId</maml:name> - <maml:description> - <maml:para></maml:para> - </maml:description> - <command:parameterValue required="true" variableLength="true">List`1[String]</command:parameterValue> - <dev:type> - <maml:name>List`1[String]</maml:name> - <maml:uri/> - </dev:type> - <dev:defaultValue></dev:defaultValue> - </command:parameter> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>BackendIpConfigurationId</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>ResourceGroupName</maml:name> <maml:description> - <maml:para></maml:para> + <maml:para>The name of the Resource Group in which this Network Security Group will be created.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -3455,10 +5879,10 @@ </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>Protocol</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>Location</maml:name> <maml:description> - <maml:para></maml:para> + <maml:para>The Region in which this Network Security Group will be created.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -3467,46 +5891,34 @@ </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>FrontendPort</maml:name> - <maml:description> - <maml:para></maml:para> - </maml:description> - <command:parameterValue required="true" variableLength="false">Int32</command:parameterValue> - <dev:type> - <maml:name>Int32</maml:name> - <maml:uri/> - </dev:type> - <dev:defaultValue></dev:defaultValue> - </command:parameter> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>BackendPort</maml:name> + <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>SecurityRules</maml:name> <maml:description> - <maml:para></maml:para> + <maml:para>A list of Network Security Rule objects to create within this Network Security Group.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="false">Int32</command:parameterValue> + <command:parameterValue required="true" variableLength="true">List`1[PSSecurityRule]</command:parameterValue> <dev:type> - <maml:name>Int32</maml:name> + <maml:name>List`1[PSSecurityRule]</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>IdleTimeoutInMinutes</maml:name> + <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>Tag</maml:name> <maml:description> - <maml:para></maml:para> + <maml:para>A dictionary of tags to be associated with this Network Security Group.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="false">Int32</command:parameterValue> + <command:parameterValue required="true" variableLength="true">Hashtable[]</command:parameterValue> <dev:type> - <maml:name>Int32</maml:name> + <maml:name>Hashtable[]</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>EnableFloatingIP</maml:name> + <maml:name>Force</maml:name> <maml:description> - <maml:para></maml:para> + <maml:para>Forces the creation of the Network Security Group even if a Network Security Group with the same name already exists.</maml:para> </maml:description> <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> <dev:type> @@ -3515,26 +5927,14 @@ </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"> - <maml:name>FrontendIpConfiguration</maml:name> - <maml:description> - <maml:para></maml:para> - </maml:description> - <command:parameterValue required="true" variableLength="true">List`1[PSFrontendIpConfiguration]</command:parameterValue> - <dev:type> - <maml:name>List`1[PSFrontendIpConfiguration]</maml:name> - <maml:uri/> - </dev:type> - <dev:defaultValue></dev:defaultValue> - </command:parameter> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>BackendIpConfiguration</maml:name> + <maml:name>Profile</maml:name> <maml:description> - <maml:para></maml:para> + <maml:para /> </maml:description> - <command:parameterValue required="true" variableLength="false">PSNetworkInterfaceIpConfiguration</command:parameterValue> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> <dev:type> - <maml:name>PSNetworkInterfaceIpConfiguration</maml:name> + <maml:name>AzureProfile</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> @@ -3544,32 +5944,32 @@ <command:inputType> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> + <maml:description> +<maml:para /> + </maml:description> </command:inputType> </command:inputTypes> <command:returnValues> <command:returnValue> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> - </command:returnValue> - </command:returnValues> + <maml:description> +<maml:para /> + </maml:description> + </command:returnValue> + </command:returnValues> <command:terminatingErrors></command:terminatingErrors> <command:nonTerminatingErrors></command:nonTerminatingErrors> <maml:alertSet> <maml:title></maml:title> <maml:alert> - <maml:para></maml:para> + <maml:para /> </maml:alert> </maml:alertSet> <command:examples> @@ -3577,78 +5977,110 @@ <maml:relatedLinks> </maml:relatedLinks> </command:command> -<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10"> +<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> <!--Generated by PS Cmdlet Help Editor--> <command:details> - <command:name>New-AzureLoadBalancerProbeConfig</command:name> + <command:name>New-AzureNetworkSecurityRuleConfig</command:name> <maml:description> - <maml:para>Create a new Probe Configuration for an Azure Load Balancer</maml:para> + <maml:para>Create a new Network Security Rule within a Network Security Group</maml:para> </maml:description> <maml:copyright> <maml:para /> </maml:copyright> <command:verb>New</command:verb> - <command:noun>AzureLoadBalancerProbeConfig</command:noun> + <command:noun>AzureNetworkSecurityRuleConfig</command:noun> <dev:version /> </command:details> <maml:description> - <!--This is the Description section--> - <maml:para>Create a new Probe Configuration for an Azure Load Balancer</maml:para> + <maml:para>Create a new Network Security Rule within a Network Security Group</maml:para> </maml:description> <command:syntax> <command:syntaxItem> - <maml:name>New-AzureLoadBalancerProbeConfig</maml:name> + <maml:name>New-AzureNetworkSecurityRuleConfig</maml:name> <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>Name</maml:name> <maml:description> - <maml:para>The name of the Probe configuration.</maml:para> + <maml:para>The name of the Network Security Rule.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Description</maml:name> + <maml:description> + <maml:para>The description of the Network Security Rule.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Protocol</maml:name> + <maml:description> + <maml:para>Network protocol this rule applies to. Can be Tcp, Udp or * to match both.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>SourcePortRange</maml:name> + <maml:description> + <maml:para>Source Port or Range. Integer or range between 0 and 65535 or * to match any.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>RequestPath</maml:name> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>DestinationPortRange</maml:name> <maml:description> - <maml:para>The path within the load balanced service to probe to determine health</maml:para> + <maml:para>Destination Port or Range. Integer or range between 0 and 65535 or * to match any.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>Protocol</maml:name> + <maml:name>SourceAddressPrefix</maml:name> <maml:description> - <maml:para>The Protocol to use for the probing. - - Options: Tcp or Http.</maml:para> + <maml:para>CIDR or source IP range or * to match any IP. Tags such as ‘VirtualNetwork’, ‘AzureLoadBalancer’ and ‘Internet’ can also be used.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>Port</maml:name> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>DestinationAddressPrefix</maml:name> <maml:description> - <maml:para>The port on which probes should connect to the load balanced service</maml:para> + <maml:para>CIDR or destination IP range or * to match any IP. Tags such as ‘VirtualNetwork’, ‘AzureLoadBalancer’ and ‘Internet’ can also be used. </maml:para> </maml:description> - <command:parameterValue required="true" variableLength="false">Int32</command:parameterValue> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>IntervalInSeconds</maml:name> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Access</maml:name> <maml:description> - <maml:para>The interval between probes to each instance of the load balanced service</maml:para> + <maml:para>Specifies whether network traffic is allowed or denied. Possible values are “Allow” and “Deny”.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="false">Int32</command:parameterValue> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>ProbeCount</maml:name> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Priority</maml:name> <maml:description> - <maml:para>The number of per-instance consecutive failures for an instance to be considered unhealthy</maml:para> + <maml:para>Specifies the priority of the rule. The value can be between 100 and 4096. The priority number must be unique for each rule in the collection. The lower the priority number, the higher the priority of the rule.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">Int32</command:parameterValue> </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Direction</maml:name> + <maml:description> + <maml:para>The direction specifies if rule will be evaluated on incoming or outgoing traffic. Possible values are “Inbound” and “Outbound”.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + </command:parameter> </command:syntaxItem> </command:syntax> <command:parameters> <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>Name</maml:name> <maml:description> - <maml:para>The name of the Probe configuration.</maml:para> + <maml:para>The name of the Network Security Rule.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -3657,10 +6089,10 @@ </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>RequestPath</maml:name> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Description</maml:name> <maml:description> - <maml:para>The path within the load balanced service to probe to determine health</maml:para> + <maml:para>The description of the Network Security Rule.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -3672,9 +6104,7 @@ <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>Protocol</maml:name> <maml:description> - <maml:para>The Protocol to use for the probing. - - Options: Tcp or Http.</maml:para> + <maml:para>Network protocol this rule applies to. Can be Tcp, Udp or * to match both.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -3683,34 +6113,70 @@ </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>Port</maml:name> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>SourcePortRange</maml:name> <maml:description> - <maml:para>The port on which probes should connect to the load balanced service</maml:para> + <maml:para>Source Port or Range. Integer or range between 0 and 65535 or * to match any.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="false">Int32</command:parameterValue> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> - <maml:name>Int32</maml:name> + <maml:name>String</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>IntervalInSeconds</maml:name> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>DestinationPortRange</maml:name> <maml:description> - <maml:para>The interval between probes to each instance of the load balanced service</maml:para> + <maml:para>Destination Port or Range. Integer or range between 0 and 65535 or * to match any.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="false">Int32</command:parameterValue> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> - <maml:name>Int32</maml:name> + <maml:name>String</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>ProbeCount</maml:name> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>SourceAddressPrefix</maml:name> + <maml:description> + <maml:para>CIDR or source IP range or * to match any IP. Tags such as ‘VirtualNetwork’, ‘AzureLoadBalancer’ and ‘Internet’ can also be used.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>DestinationAddressPrefix</maml:name> + <maml:description> + <maml:para>CIDR or destination IP range or * to match any IP. Tags such as ‘VirtualNetwork’, ‘AzureLoadBalancer’ and ‘Internet’ can also be used. </maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Access</maml:name> + <maml:description> + <maml:para>Specifies whether network traffic is allowed or denied. Possible values are “Allow” and “Deny”.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Priority</maml:name> <maml:description> - <maml:para>The number of per-instance consecutive failures for an instance to be considered unhealthy</maml:para> + <maml:para>Specifies the priority of the rule. The value can be between 100 and 4096. The priority number must be unique for each rule in the collection. The lower the priority number, the higher the priority of the rule.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">Int32</command:parameterValue> <dev:type> @@ -3719,37 +6185,61 @@ </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Direction</maml:name> + <maml:description> + <maml:para>The direction specifies if rule will be evaluated on incoming or outgoing traffic. Possible values are “Inbound” and “Outbound”.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + <dev:type> + <maml:name>AzureProfile</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> </command:parameters> <command:inputTypes> <command:inputType> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> + <maml:description> +<maml:para /> + </maml:description> </command:inputType> </command:inputTypes> <command:returnValues> <command:returnValue> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> - </command:returnValue> - </command:returnValues> + <maml:description> +<maml:para /> + </maml:description> + </command:returnValue> + </command:returnValues> <command:terminatingErrors></command:terminatingErrors> <command:nonTerminatingErrors></command:nonTerminatingErrors> <maml:alertSet> <maml:title></maml:title> <maml:alert> - <maml:para></maml:para> + <maml:para /> </maml:alert> </maml:alertSet> <command:examples> @@ -3757,167 +6247,104 @@ <maml:relatedLinks> </maml:relatedLinks> </command:command> -<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10"> +<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> <!--Generated by PS Cmdlet Help Editor--> <command:details> - <command:name>New-AzureLoadBalancerRuleConfig</command:name> + <command:name>New-AzurePublicIpAddress</command:name> <maml:description> - <maml:para>Create a new Load Balancing Rule for an Azure Load Balancer</maml:para> + <maml:para>Create a new Public Ip Address</maml:para> </maml:description> <maml:copyright> <maml:para /> </maml:copyright> <command:verb>New</command:verb> - <command:noun>AzureLoadBalancerRuleConfig</command:noun> + <command:noun>AzurePublicIpAddress</command:noun> <dev:version /> </command:details> <maml:description> - <!--This is the Description section--> - <maml:para>Create a new Load Balancing Rule for an Azure Load Balancer</maml:para> + <maml:para>Create a new Public Ip Address</maml:para> </maml:description> <command:syntax> <command:syntaxItem> - <maml:name>New-AzureLoadBalancerRuleConfig</maml:name> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>New-AzurePublicIpAddress</maml:name> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> <maml:name>Name</maml:name> <maml:description> - <maml:para>The name of the load balancing rule</maml:para> + <maml:para>The name of the Public Ip Address.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> - <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"> - <maml:name>FrontendIPConfigurationId</maml:name> - <maml:description> - <maml:para>A list of Frontend Ip ID&#39;s to associate with this Load Balancer Rule</maml:para> - </maml:description> - <command:parameterValue required="true" variableLength="true">List`1[String]</command:parameterValue> - </command:parameter> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>BackendAddressPoolId</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>ResourceGroupName</maml:name> <maml:description> - <maml:para>The ID of a BackendAddressPool to associate with this Load Balancer Rule</maml:para> + <maml:para>The name of the Resource Group in which this Public Ip Address will be created.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>ProbeId</maml:name> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>Location</maml:name> <maml:description> - <maml:para>The ID of the Probe to associate with this Load Balancer Rule</maml:para> + <maml:para>The Region in which this Public Ip Address will be created.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>Protocol</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>AllocationMethod</maml:name> <maml:description> - <maml:para>The Protocol matched by this Load Balancer Rule. - - Options: Tcp or Udp</maml:para> + <maml:para>How Ips are assigned to this Public Ip Address.</maml:para> + <maml:para> Options: Static or Dynamic</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>FrontendPort</maml:name> - <maml:description> - <maml:para>The frontend port matched by this Load Balancer Rule.</maml:para> - </maml:description> - <command:parameterValue required="true" variableLength="false">Int32</command:parameterValue> - </command:parameter> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>BackendPort</maml:name> - <maml:description> - <maml:para>The backend port for traffic matched by this Load Balancer Rule</maml:para> - </maml:description> - <command:parameterValue required="true" variableLength="false">Int32</command:parameterValue> - </command:parameter> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>IdleTimeoutInMinutes</maml:name> - <maml:description> - <maml:para>The length of time in minutes for which state of conversations is maintained within the Load Balancer.</maml:para> - </maml:description> - <command:parameterValue required="true" variableLength="false">Int32</command:parameterValue> - </command:parameter> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>EnableFloatingIP</maml:name> - <maml:description> - <maml:para></maml:para> - </maml:description> - <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> - </command:parameter> - </command:syntaxItem> - <command:syntaxItem> - <maml:name>New-AzureLoadBalancerRuleConfig</maml:name> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>Name</maml:name> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>DomainNameLabel</maml:name> <maml:description> - <maml:para>The name of the load balancing rule</maml:para> + <maml:para>The relative Dns name for this Public Ip Address.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> - <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"> - <maml:name>FrontendIpConfiguration</maml:name> - <maml:description> - <maml:para>A list of Frontend Ips to associate with this Load Balancer Rule</maml:para> - </maml:description> - <command:parameterValue required="true" variableLength="true">List`1[PSFrontendIpConfiguration]</command:parameterValue> - </command:parameter> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>BackendAddressPool</maml:name> - <maml:description> - <maml:para>The Backend Address Pool to associate with this Load Balancer Rule</maml:para> - </maml:description> - <command:parameterValue required="true" variableLength="false">PSBackendAddressPool</command:parameterValue> - </command:parameter> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>Probe</maml:name> - <maml:description> - <maml:para>The Probe to associate with this Load Balancer Rule.</maml:para> - </maml:description> - <command:parameterValue required="true" variableLength="false">PSProbe</command:parameterValue> - </command:parameter> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>Protocol</maml:name> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>ReverseFqdn</maml:name> <maml:description> - <maml:para>The Protocol matched by this Load Balancer Rule. - - Options: Tcp or Udp</maml:para> + <maml:para>The Dns Fqdn that you wish to associate with this Public Ip Address.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>FrontendPort</maml:name> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>IdleTimeoutInMinutes</maml:name> <maml:description> - <maml:para>The frontend port matched by this Load Balancer Rule.</maml:para> + <maml:para>Specifies the timeout for the Tcp idle connection</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">Int32</command:parameterValue> </command:parameter> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>BackendPort</maml:name> + <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>Tag</maml:name> <maml:description> - <maml:para>The backend port for traffic matched by this Load Balancer Rule</maml:para> + <maml:para>A dictionary of tags to be associated with this Public Ip Address.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="false">Int32</command:parameterValue> + <command:parameterValue required="true" variableLength="true">Hashtable[]</command:parameterValue> </command:parameter> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>IdleTimeoutInMinutes</maml:name> + <maml:name>Force</maml:name> <maml:description> - <maml:para>The length of time in minutes for which state of conversations is maintained within the Load Balancer.</maml:para> + <maml:para>Force the creation of this Public Ip Address possibly overwriting an existing Public Ip Address.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="false">Int32</command:parameterValue> + <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> </command:parameter> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>EnableFloatingIP</maml:name> + <maml:name>Profile</maml:name> <maml:description> - <maml:para></maml:para> + <maml:para /> </maml:description> - <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> </command:parameter> </command:syntaxItem> </command:syntax> <command:parameters> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> <maml:name>Name</maml:name> <maml:description> - <maml:para>The name of the load balancing rule</maml:para> + <maml:para>The name of the Public Ip Address.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -3926,22 +6353,10 @@ </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"> - <maml:name>FrontendIPConfigurationId</maml:name> - <maml:description> - <maml:para>A list of Frontend Ip ID&#39;s to associate with this Load Balancer Rule</maml:para> - </maml:description> - <command:parameterValue required="true" variableLength="true">List`1[String]</command:parameterValue> - <dev:type> - <maml:name>List`1[String]</maml:name> - <maml:uri/> - </dev:type> - <dev:defaultValue></dev:defaultValue> - </command:parameter> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>BackendAddressPoolId</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>ResourceGroupName</maml:name> <maml:description> - <maml:para>The ID of a BackendAddressPool to associate with this Load Balancer Rule</maml:para> + <maml:para>The name of the Resource Group in which this Public Ip Address will be created.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -3950,10 +6365,10 @@ </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>ProbeId</maml:name> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>Location</maml:name> <maml:description> - <maml:para>The ID of the Probe to associate with this Load Balancer Rule</maml:para> + <maml:para>The Region in which this Public Ip Address will be created.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -3962,12 +6377,11 @@ </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>Protocol</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>AllocationMethod</maml:name> <maml:description> - <maml:para>The Protocol matched by this Load Balancer Rule. - - Options: Tcp or Udp</maml:para> + <maml:para>How Ips are assigned to this Public Ip Address.</maml:para> + <maml:para> Options: Static or Dynamic</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -3976,86 +6390,74 @@ </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>FrontendPort</maml:name> - <maml:description> - <maml:para>The frontend port matched by this Load Balancer Rule.</maml:para> - </maml:description> - <command:parameterValue required="true" variableLength="false">Int32</command:parameterValue> - <dev:type> - <maml:name>Int32</maml:name> - <maml:uri/> - </dev:type> - <dev:defaultValue></dev:defaultValue> - </command:parameter> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>BackendPort</maml:name> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>DomainNameLabel</maml:name> <maml:description> - <maml:para>The backend port for traffic matched by this Load Balancer Rule</maml:para> + <maml:para>The relative Dns name for this Public Ip Address.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="false">Int32</command:parameterValue> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> - <maml:name>Int32</maml:name> + <maml:name>String</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>IdleTimeoutInMinutes</maml:name> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>ReverseFqdn</maml:name> <maml:description> - <maml:para>The length of time in minutes for which state of conversations is maintained within the Load Balancer.</maml:para> + <maml:para>The Dns Fqdn that you wish to associate with this Public Ip Address.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="false">Int32</command:parameterValue> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> - <maml:name>Int32</maml:name> + <maml:name>String</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>EnableFloatingIP</maml:name> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>IdleTimeoutInMinutes</maml:name> <maml:description> - <maml:para></maml:para> + <maml:para>Specifies the timeout for the Tcp idle connection</maml:para> </maml:description> - <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> + <command:parameterValue required="true" variableLength="false">Int32</command:parameterValue> <dev:type> - <maml:name>SwitchParameter</maml:name> + <maml:name>Int32</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"> - <maml:name>FrontendIpConfiguration</maml:name> + <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>Tag</maml:name> <maml:description> - <maml:para>A list of Frontend Ips to associate with this Load Balancer Rule</maml:para> + <maml:para>A dictionary of tags to be associated with this Public Ip Address.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="true">List`1[PSFrontendIpConfiguration]</command:parameterValue> + <command:parameterValue required="true" variableLength="true">Hashtable[]</command:parameterValue> <dev:type> - <maml:name>List`1[PSFrontendIpConfiguration]</maml:name> + <maml:name>Hashtable[]</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>BackendAddressPool</maml:name> + <maml:name>Force</maml:name> <maml:description> - <maml:para>The Backend Address Pool to associate with this Load Balancer Rule</maml:para> + <maml:para>Force the creation of this Public Ip Address possibly overwriting an existing Public Ip Address.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="false">PSBackendAddressPool</command:parameterValue> + <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> <dev:type> - <maml:name>PSBackendAddressPool</maml:name> + <maml:name>SwitchParameter</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>Probe</maml:name> + <maml:name>Profile</maml:name> <maml:description> - <maml:para>The Probe to associate with this Load Balancer Rule.</maml:para> + <maml:para /> </maml:description> - <command:parameterValue required="true" variableLength="false">PSProbe</command:parameterValue> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> <dev:type> - <maml:name>PSProbe</maml:name> + <maml:name>AzureProfile</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> @@ -4065,202 +6467,152 @@ <command:inputType> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> + <maml:description> + <maml:para> +</maml:para> + </maml:description> </command:inputType> </command:inputTypes> <command:returnValues> <command:returnValue> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> - </command:returnValue> - </command:returnValues> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:returnValue> + </command:returnValues> <command:terminatingErrors></command:terminatingErrors> <command:nonTerminatingErrors></command:nonTerminatingErrors> <maml:alertSet> <maml:title></maml:title> <maml:alert> - <maml:para></maml:para> + <maml:para /> </maml:alert> </maml:alertSet> <command:examples> + <command:example> + <maml:title>-------------------------- Example 1 --------------------------</maml:title> + <maml:introduction> + <maml:paragraph>PS C:\&gt;</maml:paragraph> + </maml:introduction> + <dev:code>New-AzureResourceGroup ` + -Name &apos;SampleRG&apos; ` + -Location &quot;West US&quot; + +$publicIP = New-AzurePublicIpAddress ` + -Name PublicIp ` + -ResourceGroupName SampleRG ` + -Location &quot;West US&quot; ` + –AllocationMethod Dynamic ` + -DomainNameLabel samplelbip</dev:code> + <dev:remarks> + <maml:para /> + <maml:para /> + <maml:para /> + <maml:para></maml:para> + </dev:remarks> + <command:commandLines> + <command:commandLine> + <command:commandText> + <maml:para /> + </command:commandText> + </command:commandLine> + </command:commandLines> + </command:example> </command:examples> <maml:relatedLinks> </maml:relatedLinks> </command:command> -<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10"> +<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> <!--Generated by PS Cmdlet Help Editor--> <command:details> - <command:name>New-AzureNetworkInterface</command:name> + <command:name>New-AzureVirtualNetwork</command:name> <maml:description> - <maml:para>Create a new Network Interface</maml:para> + <maml:para>Create a new Virtual Network</maml:para> </maml:description> <maml:copyright> <maml:para /> </maml:copyright> <command:verb>New</command:verb> - <command:noun>AzureNetworkInterface</command:noun> + <command:noun>AzureVirtualNetwork</command:noun> <dev:version /> </command:details> <maml:description> - <!--This is the Description section--> - <maml:para>Create a new Network Interface</maml:para> + <maml:para>Create a new Virtual Network</maml:para> </maml:description> <command:syntax> <command:syntaxItem> - <maml:name>New-AzureNetworkInterface</maml:name> + <maml:name>New-AzureVirtualNetwork</maml:name> <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> <maml:name>Name</maml:name> <maml:description> - <maml:para>The name of the Network Interface</maml:para> + <maml:para>The name of the Virtual Network.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> <maml:name>ResourceGroupName</maml:name> <maml:description> - <maml:para>The name of the Resource Group in which this Network Interface will be created</maml:para> + <maml:para>The name of the Resource Group containing the Virtual Network.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> <maml:name>Location</maml:name> <maml:description> - <maml:para>The Region in which this Network Interface will be created</maml:para> - </maml:description> - <command:parameterValue required="true" variableLength="false">String</command:parameterValue> - </command:parameter> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>AllocationMethod</maml:name> - <maml:description> - <maml:para>How IPs are assigned to this Network Interface. Options: Static or Dynamic</maml:para> - </maml:description> - <command:parameterValue required="true" variableLength="false">String</command:parameterValue> - </command:parameter> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>PrivateIpAddress</maml:name> - <maml:description> - <maml:para>The static IPv4 IP address to be assigned to this Network Interface. Optional</maml:para> + <maml:para>The Region in which this Virtual Network will be created.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>SubnetId</maml:name> + <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>AddressPrefix</maml:name> <maml:description> - <maml:para>The Id of the subnet Resource in which this Network Interface will be created</maml:para> + <maml:para>A list of Ip ranges covered by this Virtual Network.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <command:parameterValue required="true" variableLength="true">List`1[String]</command:parameterValue> </command:parameter> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>PublicIpAddressId</maml:name> + <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>DnsServer</maml:name> <maml:description> - <maml:para>The ID of the PublicIP resource to assign to this Network Interface.</maml:para> + <maml:para>The Dns servers to be used for performing Dns lookups from this Virtual Network.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <command:parameterValue required="true" variableLength="true">List`1[String]</command:parameterValue> </command:parameter> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>IpConfigurationName</maml:name> + <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>Subnet</maml:name> <maml:description> - <maml:para>The name of IP Configuration</maml:para> + <maml:para>A list of Subnets associated with this Virtual Network.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <command:parameterValue required="true" variableLength="true">List`1[PSSubnet]</command:parameterValue> </command:parameter> <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> <maml:name>Tag</maml:name> <maml:description> - <maml:para>A dictionary of tags to be associated with this Network Interface.</maml:para> + <maml:para>A dictionary of tags to be associated with this Virtual Network.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="true">Hashtable[]</command:parameterValue> </command:parameter> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>Force</maml:name> <maml:description> - <maml:para>Forces the creation of the Network Interface even if a Network Interface with the same name already exists.</maml:para> + <maml:para>Force the creation of this Virtual Network possibly overwriting an existing Virtual Network.</maml:para> </maml:description> <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> </command:parameter> - </command:syntaxItem> - <command:syntaxItem> - <maml:name>New-AzureNetworkInterface</maml:name> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>Name</maml:name> - <maml:description> - <maml:para>The name of the Network Interface</maml:para> - </maml:description> - <command:parameterValue required="true" variableLength="false">String</command:parameterValue> - </command:parameter> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>ResourceGroupName</maml:name> - <maml:description> - <maml:para>The name of the Resource Group in which this Network Interface will be created</maml:para> - </maml:description> - <command:parameterValue required="true" variableLength="false">String</command:parameterValue> - </command:parameter> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>Location</maml:name> - <maml:description> - <maml:para>The Region in which this Network Interface will be created</maml:para> - </maml:description> - <command:parameterValue required="true" variableLength="false">String</command:parameterValue> - </command:parameter> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>AllocationMethod</maml:name> - <maml:description> - <maml:para>How IPs are assigned to this Network Interface. Options: Static or Dynamic</maml:para> - </maml:description> - <command:parameterValue required="true" variableLength="false">String</command:parameterValue> - </command:parameter> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>PrivateIpAddress</maml:name> - <maml:description> - <maml:para>The static IPv4 IP address to be assigned to this Network Interface. Optional</maml:para> - </maml:description> - <command:parameterValue required="true" variableLength="false">String</command:parameterValue> - </command:parameter> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>Subnet</maml:name> - <maml:description> - <maml:para></maml:para> - </maml:description> - <command:parameterValue required="true" variableLength="false">PSSubnet</command:parameterValue> - </command:parameter> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>PublicIpAddress</maml:name> - <maml:description> - <maml:para>The PublicIP object to assign to this Network Interface.</maml:para> - </maml:description> - <command:parameterValue required="true" variableLength="false">PSPublicIpAddress</command:parameterValue> - </command:parameter> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>IpConfigurationName</maml:name> - <maml:description> - <maml:para>The name of IP Configuration</maml:para> - </maml:description> - <command:parameterValue required="true" variableLength="false">String</command:parameterValue> - </command:parameter> - <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>Tag</maml:name> - <maml:description> - <maml:para>A dictionary of tags to be associated with this Network Interface.</maml:para> - </maml:description> - <command:parameterValue required="true" variableLength="true">Hashtable[]</command:parameterValue> - </command:parameter> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>Force</maml:name> + <maml:name>Profile</maml:name> <maml:description> - <maml:para>Forces the creation of the Network Interface even if a Network Interface with the same name already exists.</maml:para> + <maml:para /> </maml:description> - <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> </command:parameter> </command:syntaxItem> </command:syntax> @@ -4268,7 +6620,7 @@ <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> <maml:name>Name</maml:name> <maml:description> - <maml:para>The name of the Network Interface</maml:para> + <maml:para>The name of the Virtual Network.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -4280,7 +6632,7 @@ <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> <maml:name>ResourceGroupName</maml:name> <maml:description> - <maml:para>The name of the Resource Group in which this Network Interface will be created</maml:para> + <maml:para>The name of the Resource Group containing the Virtual Network.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -4292,31 +6644,7 @@ <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> <maml:name>Location</maml:name> <maml:description> - <maml:para>The Region in which this Network Interface will be created</maml:para> - </maml:description> - <command:parameterValue required="true" variableLength="false">String</command:parameterValue> - <dev:type> - <maml:name>String</maml:name> - <maml:uri/> - </dev:type> - <dev:defaultValue></dev:defaultValue> - </command:parameter> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>AllocationMethod</maml:name> - <maml:description> - <maml:para>How IPs are assigned to this Network Interface. Options: Static or Dynamic</maml:para> - </maml:description> - <command:parameterValue required="true" variableLength="false">String</command:parameterValue> - <dev:type> - <maml:name>String</maml:name> - <maml:uri/> - </dev:type> - <dev:defaultValue></dev:defaultValue> - </command:parameter> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>PrivateIpAddress</maml:name> - <maml:description> - <maml:para>The static IPv4 IP address to be assigned to this Network Interface. Optional</maml:para> + <maml:para>The Region in which this Virtual Network will be created.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -4325,38 +6653,38 @@ </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>SubnetId</maml:name> + <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>AddressPrefix</maml:name> <maml:description> - <maml:para>The Id of the subnet Resource in which this Network Interface will be created</maml:para> + <maml:para>A list of Ip ranges covered by this Virtual Network.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <command:parameterValue required="true" variableLength="true">List`1[String]</command:parameterValue> <dev:type> - <maml:name>String</maml:name> + <maml:name>List`1[String]</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>PublicIpAddressId</maml:name> + <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>DnsServer</maml:name> <maml:description> - <maml:para>The ID of the PublicIP resource to assign to this Network Interface.</maml:para> + <maml:para>The Dns servers to be used for performing Dns lookups from this Virtual Network.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <command:parameterValue required="true" variableLength="true">List`1[String]</command:parameterValue> <dev:type> - <maml:name>String</maml:name> + <maml:name>List`1[String]</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>IpConfigurationName</maml:name> + <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>Subnet</maml:name> <maml:description> - <maml:para>The name of IP Configuration</maml:para> + <maml:para>A list of Subnets associated with this Virtual Network.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <command:parameterValue required="true" variableLength="true">List`1[PSSubnet]</command:parameterValue> <dev:type> - <maml:name>String</maml:name> + <maml:name>List`1[PSSubnet]</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> @@ -4364,7 +6692,7 @@ <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> <maml:name>Tag</maml:name> <maml:description> - <maml:para>A dictionary of tags to be associated with this Network Interface.</maml:para> + <maml:para>A dictionary of tags to be associated with this Virtual Network.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="true">Hashtable[]</command:parameterValue> <dev:type> @@ -4376,7 +6704,7 @@ <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>Force</maml:name> <maml:description> - <maml:para>Forces the creation of the Network Interface even if a Network Interface with the same name already exists.</maml:para> + <maml:para>Force the creation of this Virtual Network possibly overwriting an existing Virtual Network.</maml:para> </maml:description> <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> <dev:type> @@ -4385,26 +6713,14 @@ </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>Subnet</maml:name> - <maml:description> - <maml:para></maml:para> - </maml:description> - <command:parameterValue required="true" variableLength="false">PSSubnet</command:parameterValue> - <dev:type> - <maml:name>PSSubnet</maml:name> - <maml:uri/> - </dev:type> - <dev:defaultValue></dev:defaultValue> - </command:parameter> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>PublicIpAddress</maml:name> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> <maml:description> - <maml:para>The PublicIP object to assign to this Network Interface.</maml:para> + <maml:para /> </maml:description> - <command:parameterValue required="true" variableLength="false">PSPublicIpAddress</command:parameterValue> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> <dev:type> - <maml:name>PSPublicIpAddress</maml:name> + <maml:name>AzureProfile</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> @@ -4414,125 +6730,158 @@ <command:inputType> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> + <maml:description> + <maml:para> +</maml:para> + </maml:description> </command:inputType> </command:inputTypes> <command:returnValues> <command:returnValue> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> - </command:returnValue> - </command:returnValues> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:returnValue> + </command:returnValues> <command:terminatingErrors></command:terminatingErrors> <command:nonTerminatingErrors></command:nonTerminatingErrors> <maml:alertSet> <maml:title></maml:title> <maml:alert> - <maml:para></maml:para> + <maml:para /> </maml:alert> </maml:alertSet> <command:examples> + <command:example> + <maml:title>-------------------------- Example 1 --------------------------</maml:title> + <maml:introduction> + <maml:paragraph>PS C:\&gt;</maml:paragraph> + </maml:introduction> + <dev:code>New-AzureResourceGroup ` + -Name &apos;SampleRG&apos; ` + -Location &quot;West US&quot; + +$backendSubnet = New-AzureVirtualNetworkSubnetConfig -Name LB-Subnet-BE -AddressPrefix 10.0.2.0/24 + +$vnet = New-AzurevirtualNetwork ` + -Name SampleVNet ` + -ResourceGroupName SampleRG ` + -Location &quot;West US&quot; ` + -AddressPrefix 10.0.0.0/16 ` + -Subnet $frontendSubnet,$backendSubnet</dev:code> + <dev:remarks> + <maml:para /> + <maml:para /> + <maml:para /> + <maml:para></maml:para> + </dev:remarks> + <command:commandLines> + <command:commandLine> + <command:commandText> + <maml:para /> + </command:commandText> + </command:commandLine> + </command:commandLines> + </command:example> </command:examples> <maml:relatedLinks> </maml:relatedLinks> </command:command> -<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10"> +<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> <!--Generated by PS Cmdlet Help Editor--> <command:details> - <command:name>New-AzurePublicIpAddress</command:name> + <command:name>New-AzureVirtualNetworkSubnetConfig</command:name> <maml:description> - <maml:para>Create a new Public Ip Address</maml:para> + <maml:para>Create a new Virtual Network Subnet</maml:para> </maml:description> <maml:copyright> <maml:para /> </maml:copyright> <command:verb>New</command:verb> - <command:noun>AzurePublicIpAddress</command:noun> + <command:noun>AzureVirtualNetworkSubnetConfig</command:noun> <dev:version /> </command:details> <maml:description> - <!--This is the Description section--> - <maml:para>Create a new Public Ip Address</maml:para> + <maml:para>Create a new Virtual Network Subnet</maml:para> </maml:description> <command:syntax> <command:syntaxItem> - <maml:name>New-AzurePublicIpAddress</maml:name> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>New-AzureVirtualNetworkSubnetConfig</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>Name</maml:name> <maml:description> - <maml:para>The name of the Public Ip Address</maml:para> + <maml:para>The name of the Subnet.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>ResourceGroupName</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>AddressPrefix</maml:name> <maml:description> - <maml:para>The name of the Resource Group in which this Public Ip Address will be created</maml:para> + <maml:para>The Ip range covered by this Subnet.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>Location</maml:name> + <maml:name>NetworkSecurityGroup</maml:name> <maml:description> - <maml:para>The Region in which this Public Ip Address will be created.</maml:para> + <maml:para>The Network Security Group object containing ACLs that will apply to this Subnet.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <command:parameterValue required="true" variableLength="false">PSNetworkSecurityGroup</command:parameterValue> </command:parameter> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>AllocationMethod</maml:name> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> <maml:description> - <maml:para>How IPs are assigned to this Public Ip Address. - - Options: Static or Dynamic</maml:para> + <maml:para /> </maml:description> - <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> </command:parameter> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>DomainNameLabel</maml:name> + </command:syntaxItem> + <command:syntaxItem> + <maml:name>New-AzureVirtualNetworkSubnetConfig</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Name</maml:name> <maml:description> - <maml:para>The relative DNS name for this Public Ip Address.</maml:para> + <maml:para>The name of the Subnet.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>IdleTimeoutInMinutes</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>AddressPrefix</maml:name> <maml:description> - <maml:para></maml:para> + <maml:para>The Ip range covered by this Subnet.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="false">Int32</command:parameterValue> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> - <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>Tag</maml:name> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>NetworkSecurityGroupId</maml:name> <maml:description> - <maml:para>A dictionary of tags to be associated with this Public Ip Address.</maml:para> + <maml:para>A reference to a Network Security Group containing ACLs that will apply to this Subnet.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="true">Hashtable[]</command:parameterValue> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>Force</maml:name> + <maml:name>Profile</maml:name> <maml:description> - <maml:para>Force the creation of this Public Ip Address possibly overwriting an existing Public Ip Address</maml:para> + <maml:para /> </maml:description> - <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> </command:parameter> </command:syntaxItem> </command:syntax> <command:parameters> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>Name</maml:name> <maml:description> - <maml:para>The name of the Public Ip Address</maml:para> + <maml:para>The name of the Subnet.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -4541,10 +6890,10 @@ </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>ResourceGroupName</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>AddressPrefix</maml:name> <maml:description> - <maml:para>The name of the Resource Group in which this Public Ip Address will be created</maml:para> + <maml:para>The Ip range covered by this Subnet.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -4554,35 +6903,33 @@ <dev:defaultValue></dev:defaultValue> </command:parameter> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>Location</maml:name> + <maml:name>NetworkSecurityGroup</maml:name> <maml:description> - <maml:para>The Region in which this Public Ip Address will be created.</maml:para> + <maml:para>The Network Security Group object containing ACLs that will apply to this Subnet.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <command:parameterValue required="true" variableLength="false">PSNetworkSecurityGroup</command:parameterValue> <dev:type> - <maml:name>String</maml:name> + <maml:name>PSNetworkSecurityGroup</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>AllocationMethod</maml:name> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> <maml:description> - <maml:para>How IPs are assigned to this Public Ip Address. - - Options: Static or Dynamic</maml:para> + <maml:para /> </maml:description> - <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> <dev:type> - <maml:name>String</maml:name> + <maml:name>AzureProfile</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>DomainNameLabel</maml:name> + <maml:name>NetworkSecurityGroupId</maml:name> <maml:description> - <maml:para>The relative DNS name for this Public Ip Address.</maml:para> + <maml:para>A reference to a Network Security Group containing ACLs that will apply to this Subnet.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -4591,38 +6938,14 @@ </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>IdleTimeoutInMinutes</maml:name> - <maml:description> - <maml:para></maml:para> - </maml:description> - <command:parameterValue required="true" variableLength="false">Int32</command:parameterValue> - <dev:type> - <maml:name>Int32</maml:name> - <maml:uri/> - </dev:type> - <dev:defaultValue></dev:defaultValue> - </command:parameter> - <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>Tag</maml:name> - <maml:description> - <maml:para>A dictionary of tags to be associated with this Public Ip Address.</maml:para> - </maml:description> - <command:parameterValue required="true" variableLength="true">Hashtable[]</command:parameterValue> - <dev:type> - <maml:name>Hashtable[]</maml:name> - <maml:uri/> - </dev:type> - <dev:defaultValue></dev:defaultValue> - </command:parameter> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>Force</maml:name> + <maml:name>DnsServer</maml:name> <maml:description> - <maml:para>Force the creation of this Public Ip Address possibly overwriting an existing Public Ip Address</maml:para> + <maml:para>The Dns servers to be used for performing Dns lookups from this Subnet.</maml:para> </maml:description> - <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> + <command:parameterValue required="true" variableLength="false">list`1[string]</command:parameterValue> <dev:type> - <maml:name>SwitchParameter</maml:name> + <maml:name>list`1[string]</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> @@ -4632,115 +6955,127 @@ <command:inputType> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> + <maml:description> + <maml:para> +</maml:para> + </maml:description> </command:inputType> </command:inputTypes> <command:returnValues> <command:returnValue> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> - </command:returnValue> - </command:returnValues> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:returnValue> + </command:returnValues> <command:terminatingErrors></command:terminatingErrors> <command:nonTerminatingErrors></command:nonTerminatingErrors> <maml:alertSet> <maml:title></maml:title> <maml:alert> - <maml:para></maml:para> + <maml:para /> </maml:alert> </maml:alertSet> <command:examples> + <command:example> + <maml:title>-------------------------- Example 1 --------------------------</maml:title> + <maml:introduction> + <maml:paragraph>PS C:\&gt;</maml:paragraph> + </maml:introduction> + <dev:code>New-AzureResourceGroup ` + -Name &apos;SampleRG&apos; ` + -Location &quot;West US&quot; + +$backendSubnet = New-AzureVirtualNetworkSubnetConfig -Name LB-Subnet-BE -AddressPrefix 10.0.2.0/24 + +$vnet = New-AzurevirtualNetwork ` + -Name SampleVNet ` + -ResourceGroupName SampleRG ` + -Location &quot;West US&quot; ` + -AddressPrefix 10.0.0.0/16 ` + -Subnet $frontendSubnet,$backendSubnet</dev:code> + <dev:remarks> + <maml:para /> + <maml:para /> + <maml:para /> + <maml:para></maml:para> + </dev:remarks> + <command:commandLines> + <command:commandLine> + <command:commandText> + <maml:para /> + </command:commandText> + </command:commandLine> + </command:commandLines> + </command:example> </command:examples> <maml:relatedLinks> </maml:relatedLinks> </command:command> -<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10"> + +<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> <!--Generated by PS Cmdlet Help Editor--> <command:details> - <command:name>New-AzureVirtualNetwork</command:name> + <command:name>Remove-AzureLoadBalancer</command:name> <maml:description> - <maml:para>Create a new Virtual Network</maml:para> + <maml:para>Remove an Azure Load Balancer</maml:para> </maml:description> <maml:copyright> <maml:para /> </maml:copyright> - <command:verb>New</command:verb> - <command:noun>AzureVirtualNetwork</command:noun> + <command:verb>Remove</command:verb> + <command:noun>AzureLoadBalancer</command:noun> <dev:version /> </command:details> <maml:description> - <!--This is the Description section--> - <maml:para>Create a new Virtual Network</maml:para> + <maml:para>Remove an Azure Load Balancer</maml:para> </maml:description> <command:syntax> <command:syntaxItem> - <maml:name>New-AzureVirtualNetwork</maml:name> + <maml:name>Remove-AzureLoadBalancer</maml:name> <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> <maml:name>Name</maml:name> <maml:description> - <maml:para>The name of the Virtual Network</maml:para> + <maml:para>The name of the Load Balancer to remove.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> <maml:name>ResourceGroupName</maml:name> <maml:description> - <maml:para>The name of the Resource Group containing the Virtual Network</maml:para> - </maml:description> - <command:parameterValue required="true" variableLength="false">String</command:parameterValue> - </command:parameter> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>Location</maml:name> - <maml:description> - <maml:para>The Region in which this Virtual Network will be created</maml:para> + <maml:para>The name of the Resource Group containing the Load Balancer.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> - <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>AddressPrefix</maml:name> - <maml:description> - <maml:para>A list of IP ranges covered by this Virtual network</maml:para> - </maml:description> - <command:parameterValue required="true" variableLength="true">List`1[String]</command:parameterValue> - </command:parameter> - <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>DnsServer</maml:name> - <maml:description> - <maml:para>The DNS Servers to be used for performing DNS lookups from this Subnet.</maml:para> - </maml:description> - <command:parameterValue required="true" variableLength="true">List`1[String]</command:parameterValue> - </command:parameter> - <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>Subnet</maml:name> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>Force</maml:name> <maml:description> - <maml:para>A list of Subnets associated with this Virtual Network</maml:para> + <maml:para>Forces the deletion of the Load Balancer regardless of whether resources are assigned to it.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="true">List`1[PSSubnet]</command:parameterValue> + <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> </command:parameter> - <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>Tag</maml:name> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>PassThru</maml:name> <maml:description> - <maml:para>A dictionary of tags to be associated with this Network Interface</maml:para> + <maml:para>Indicate if an object should be returned. Returns true if remove is successful.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="true">Hashtable[]</command:parameterValue> + <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> </command:parameter> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>Force</maml:name> + <maml:name>Profile</maml:name> <maml:description> - <maml:para>Force the creation of this Virtual Network possibly overwriting an existing Virtual Network</maml:para> + <maml:para /> </maml:description> - <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> </command:parameter> </command:syntaxItem> </command:syntax> @@ -4748,7 +7083,7 @@ <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> <maml:name>Name</maml:name> <maml:description> - <maml:para>The name of the Virtual Network</maml:para> + <maml:para>The name of the Load Balancer to remove.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -4760,7 +7095,7 @@ <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> <maml:name>ResourceGroupName</maml:name> <maml:description> - <maml:para>The name of the Resource Group containing the Virtual Network</maml:para> + <maml:para>The name of the Resource Group containing the Load Balancer.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -4769,74 +7104,158 @@ </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>Location</maml:name> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>Force</maml:name> <maml:description> - <maml:para>The Region in which this Virtual Network will be created</maml:para> + <maml:para>Forces the deletion of the Load Balancer regardless of whether resources are assigned to it.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> <dev:type> - <maml:name>String</maml:name> + <maml:name>SwitchParameter</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>AddressPrefix</maml:name> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>PassThru</maml:name> <maml:description> - <maml:para>A list of IP ranges covered by this Virtual network</maml:para> + <maml:para>Indicate if an object should be returned. Returns true if remove is successful.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="true">List`1[String]</command:parameterValue> + <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> <dev:type> - <maml:name>List`1[String]</maml:name> + <maml:name>SwitchParameter</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>DnsServer</maml:name> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> <maml:description> - <maml:para>The DNS Servers to be used for performing DNS lookups from this Subnet.</maml:para> + <maml:para /> </maml:description> - <command:parameterValue required="true" variableLength="true">List`1[String]</command:parameterValue> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> <dev:type> - <maml:name>List`1[String]</maml:name> + <maml:name>AzureProfile</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>Subnet</maml:name> + </command:parameters> + <command:inputTypes> + <command:inputType> + <dev:type> + <maml:name></maml:name> + <maml:uri></maml:uri> + <maml:description/> + </dev:type> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:inputType> + </command:inputTypes> + <command:returnValues> + <command:returnValue> + <dev:type> + <maml:name></maml:name> + <maml:uri></maml:uri> + <maml:description/> + </dev:type> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:returnValue> + </command:returnValues> + <command:terminatingErrors></command:terminatingErrors> + <command:nonTerminatingErrors></command:nonTerminatingErrors> + <maml:alertSet> + <maml:title></maml:title> + <maml:alert> + <maml:para /> + </maml:alert> + </maml:alertSet> + <command:examples> + </command:examples> + <maml:relatedLinks> + </maml:relatedLinks> +</command:command> +<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> +<!--Generated by PS Cmdlet Help Editor--> + <command:details> + <command:name>Remove-AzureLoadBalancerBackendAddressPoolConfig</command:name> + <maml:description> + <maml:para>Remove a Backend Address Pool</maml:para> + </maml:description> + <maml:copyright> + <maml:para /> + </maml:copyright> + <command:verb>Remove</command:verb> + <command:noun>AzureLoadBalancerBackendAddressPoolConfig</command:noun> + <dev:version /> + </command:details> + <maml:description> + <maml:para>Remove a Backend Address Pool</maml:para> + </maml:description> + <command:syntax> + <command:syntaxItem> + <maml:name>Remove-AzureLoadBalancerBackendAddressPoolConfig</maml:name> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Name</maml:name> + <maml:description> + <maml:para>The Load Balancer containing the Backend Address Pool.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue)" position="named"> + <maml:name>LoadBalancer</maml:name> + <maml:description> + <maml:para>The name of the Backend Address Pool to remove.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">PSLoadBalancer</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + </command:parameter> + </command:syntaxItem> + </command:syntax> + <command:parameters> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Name</maml:name> <maml:description> - <maml:para>A list of Subnets associated with this Virtual Network</maml:para> + <maml:para>The Load Balancer containing the Backend Address Pool.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="true">List`1[PSSubnet]</command:parameterValue> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> - <maml:name>List`1[PSSubnet]</maml:name> + <maml:name>String</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>Tag</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue)" position="named"> + <maml:name>LoadBalancer</maml:name> <maml:description> - <maml:para>A dictionary of tags to be associated with this Network Interface</maml:para> + <maml:para>The name of the Backend Address Pool to remove.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="true">Hashtable[]</command:parameterValue> + <command:parameterValue required="true" variableLength="false">PSLoadBalancer</command:parameterValue> <dev:type> - <maml:name>Hashtable[]</maml:name> + <maml:name>PSLoadBalancer</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>Force</maml:name> + <maml:name>Profile</maml:name> <maml:description> - <maml:para>Force the creation of this Virtual Network possibly overwriting an existing Virtual Network</maml:para> + <maml:para /> </maml:description> - <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> <dev:type> - <maml:name>SwitchParameter</maml:name> + <maml:name>AzureProfile</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> @@ -4846,32 +7265,34 @@ <command:inputType> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> + <maml:description> + <maml:para> +</maml:para> + </maml:description> </command:inputType> </command:inputTypes> <command:returnValues> <command:returnValue> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> - </command:returnValue> - </command:returnValues> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:returnValue> + </command:returnValues> <command:terminatingErrors></command:terminatingErrors> <command:nonTerminatingErrors></command:nonTerminatingErrors> <maml:alertSet> <maml:title></maml:title> <maml:alert> - <maml:para></maml:para> + <maml:para /> </maml:alert> </maml:alertSet> <command:examples> @@ -4879,55 +7300,54 @@ <maml:relatedLinks> </maml:relatedLinks> </command:command> -<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10"> +<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> <!--Generated by PS Cmdlet Help Editor--> <command:details> - <command:name>New-AzureVirtualNetworkSubnetConfig</command:name> + <command:name>Remove-AzureLoadBalancerFrontendIpConfig</command:name> <maml:description> - <maml:para>Create a new Virtual Network Subnet</maml:para> + <maml:para>Remove a Frontend Ip configuration</maml:para> </maml:description> <maml:copyright> <maml:para /> </maml:copyright> - <command:verb>New</command:verb> - <command:noun>AzureVirtualNetworkSubnetConfig</command:noun> + <command:verb>Remove</command:verb> + <command:noun>AzureLoadBalancerFrontendIpConfig</command:noun> <dev:version /> </command:details> <maml:description> - <!--This is the Description section--> - <maml:para>Create a new Virtual Network Subnet</maml:para> + <maml:para>Remove a Frontend Ip configuration</maml:para> </maml:description> <command:syntax> <command:syntaxItem> - <maml:name>New-AzureVirtualNetworkSubnetConfig</maml:name> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Remove-AzureLoadBalancerFrontendIpConfig</maml:name> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>Name</maml:name> <maml:description> - <maml:para>The name of the Subnet.</maml:para> + <maml:para>The name of the Frontend Ip configuration to remove.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>AddressPrefix</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue)" position="named"> + <maml:name>LoadBalancer</maml:name> <maml:description> - <maml:para>The IP range covered by this Subnet</maml:para> + <maml:para>The Load Balancer containing the Frontend Ip configuration.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <command:parameterValue required="true" variableLength="false">PSLoadBalancer</command:parameterValue> </command:parameter> - <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"> - <maml:name>DnsServer</maml:name> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> <maml:description> - <maml:para>The DNS Servers to be used for performing DNS lookups from this Subnet.</maml:para> + <maml:para /> </maml:description> - <command:parameterValue required="true" variableLength="true">List`1[String]</command:parameterValue> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> </command:parameter> </command:syntaxItem> </command:syntax> <command:parameters> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>Name</maml:name> <maml:description> - <maml:para>The name of the Subnet.</maml:para> + <maml:para>The name of the Frontend Ip configuration to remove.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -4936,26 +7356,26 @@ </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>AddressPrefix</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue)" position="named"> + <maml:name>LoadBalancer</maml:name> <maml:description> - <maml:para>The IP range covered by this Subnet</maml:para> + <maml:para>The Load Balancer containing the Frontend Ip configuration.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <command:parameterValue required="true" variableLength="false">PSLoadBalancer</command:parameterValue> <dev:type> - <maml:name>String</maml:name> + <maml:name>PSLoadBalancer</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"> - <maml:name>DnsServer</maml:name> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> <maml:description> - <maml:para>The DNS Servers to be used for performing DNS lookups from this Subnet.</maml:para> + <maml:para /> </maml:description> - <command:parameterValue required="true" variableLength="true">List`1[String]</command:parameterValue> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> <dev:type> - <maml:name>List`1[String]</maml:name> + <maml:name>AzureProfile</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> @@ -4965,32 +7385,34 @@ <command:inputType> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> + <maml:description> + <maml:para> +</maml:para> + </maml:description> </command:inputType> </command:inputTypes> <command:returnValues> <command:returnValue> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> - </command:returnValue> - </command:returnValues> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:returnValue> + </command:returnValues> <command:terminatingErrors></command:terminatingErrors> <command:nonTerminatingErrors></command:nonTerminatingErrors> <maml:alertSet> <maml:title></maml:title> <maml:alert> - <maml:para></maml:para> + <maml:para /> </maml:alert> </maml:alertSet> <command:examples> @@ -4998,74 +7420,54 @@ <maml:relatedLinks> </maml:relatedLinks> </command:command> -<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10"> +<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> <!--Generated by PS Cmdlet Help Editor--> <command:details> - <command:name>Remove-AzureLoadBalancer</command:name> + <command:name>Remove-AzureLoadBalancerInboundNatRuleConfig</command:name> <maml:description> - <maml:para>Remove an Azure Load Balancer</maml:para> + <maml:para>Remove an Inbound NAT Rule</maml:para> </maml:description> <maml:copyright> <maml:para /> </maml:copyright> <command:verb>Remove</command:verb> - <command:noun>AzureLoadBalancer</command:noun> + <command:noun>AzureLoadBalancerInboundNatRuleConfig</command:noun> <dev:version /> </command:details> <maml:description> - <!--This is the Description section--> - <maml:para>Remove an Azure Load Balancer</maml:para> + <maml:para>Remove an Inbound NAT Rule</maml:para> </maml:description> <command:syntax> <command:syntaxItem> - <maml:name>Remove-AzureLoadBalancer</maml:name> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>Remove-AzureLoadBalancerInboundNatRuleConfig</maml:name> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>Name</maml:name> <maml:description> - <maml:para>The name of the Load Balancer to remove</maml:para> - </maml:description> - <command:parameterValue required="true" variableLength="false">String</command:parameterValue> - </command:parameter> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>ResourceGroupName</maml:name> - <maml:description> - <maml:para>The name of the Resource Group containing the Load Balancer</maml:para> + <maml:para>The name of the Inbound NAT Rule to remove.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>Force</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue)" position="named"> + <maml:name>LoadBalancer</maml:name> <maml:description> - <maml:para>Forces the deletion of the Load Balancer regardless of whether resources are assigned to it</maml:para> + <maml:para>The Load Balancer containing the Inbound NAT Rule.</maml:para> </maml:description> - <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> + <command:parameterValue required="true" variableLength="false">PSLoadBalancer</command:parameterValue> </command:parameter> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>PassThru</maml:name> + <maml:name>Profile</maml:name> <maml:description> - <maml:para>Indicate if an object should be returned. Returns true if remove is successful.</maml:para> + <maml:para /> </maml:description> - <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> </command:parameter> </command:syntaxItem> </command:syntax> <command:parameters> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>Name</maml:name> <maml:description> - <maml:para>The name of the Load Balancer to remove</maml:para> - </maml:description> - <command:parameterValue required="true" variableLength="false">String</command:parameterValue> - <dev:type> - <maml:name>String</maml:name> - <maml:uri/> - </dev:type> - <dev:defaultValue></dev:defaultValue> - </command:parameter> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>ResourceGroupName</maml:name> - <maml:description> - <maml:para>The name of the Resource Group containing the Load Balancer</maml:para> + <maml:para>The name of the Inbound NAT Rule to remove.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -5074,26 +7476,26 @@ </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>Force</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue)" position="named"> + <maml:name>LoadBalancer</maml:name> <maml:description> - <maml:para>Forces the deletion of the Load Balancer regardless of whether resources are assigned to it</maml:para> + <maml:para>The Load Balancer containing the Inbound NAT Rule.</maml:para> </maml:description> - <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> + <command:parameterValue required="true" variableLength="false">PSLoadBalancer</command:parameterValue> <dev:type> - <maml:name>SwitchParameter</maml:name> + <maml:name>PSLoadBalancer</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>PassThru</maml:name> + <maml:name>Profile</maml:name> <maml:description> - <maml:para>Indicate if an object should be returned. Returns true if remove is successful.</maml:para> + <maml:para /> </maml:description> - <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> <dev:type> - <maml:name>SwitchParameter</maml:name> + <maml:name>AzureProfile</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> @@ -5103,32 +7505,34 @@ <command:inputType> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> + <maml:description> + <maml:para> +</maml:para> + </maml:description> </command:inputType> </command:inputTypes> <command:returnValues> <command:returnValue> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> - </command:returnValue> - </command:returnValues> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:returnValue> + </command:returnValues> <command:terminatingErrors></command:terminatingErrors> <command:nonTerminatingErrors></command:nonTerminatingErrors> <maml:alertSet> <maml:title></maml:title> <maml:alert> - <maml:para></maml:para> + <maml:para /> </maml:alert> </maml:alertSet> <command:examples> @@ -5136,48 +7540,54 @@ <maml:relatedLinks> </maml:relatedLinks> </command:command> -<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10"> +<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> <!--Generated by PS Cmdlet Help Editor--> <command:details> - <command:name>Remove-AzureLoadBalancerBackendAddressPoolConfig</command:name> + <command:name>Remove-AzureLoadBalancerProbeConfig</command:name> <maml:description> - <maml:para>Remove a Backend Address Pool</maml:para> + <maml:para>Remove a Probe configuration</maml:para> </maml:description> <maml:copyright> <maml:para /> </maml:copyright> <command:verb>Remove</command:verb> - <command:noun>AzureLoadBalancerBackendAddressPoolConfig</command:noun> + <command:noun>AzureLoadBalancerProbeConfig</command:noun> <dev:version /> </command:details> <maml:description> - <!--This is the Description section--> - <maml:para>Remove a Backend Address Pool</maml:para> + <maml:para>Remove a Probe configuration</maml:para> </maml:description> <command:syntax> <command:syntaxItem> - <maml:name>Remove-AzureLoadBalancerBackendAddressPoolConfig</maml:name> + <maml:name>Remove-AzureLoadBalancerProbeConfig</maml:name> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>Name</maml:name> <maml:description> - <maml:para>The Load Balancer containing the Backend Address Pool</maml:para> + <maml:para>The name of the probe configuration to remove.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue)" position="named"> <maml:name>LoadBalancer</maml:name> <maml:description> - <maml:para>The name of the Backend Address Pool to remove.</maml:para> + <maml:para>The Load Balancer containing the probe configuration.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">PSLoadBalancer</command:parameterValue> </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + </command:parameter> </command:syntaxItem> </command:syntax> <command:parameters> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>Name</maml:name> <maml:description> - <maml:para>The Load Balancer containing the Backend Address Pool</maml:para> + <maml:para>The name of the probe configuration to remove.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -5189,7 +7599,7 @@ <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue)" position="named"> <maml:name>LoadBalancer</maml:name> <maml:description> - <maml:para>The name of the Backend Address Pool to remove.</maml:para> + <maml:para>The Load Balancer containing the probe configuration.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">PSLoadBalancer</command:parameterValue> <dev:type> @@ -5198,37 +7608,51 @@ </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + <dev:type> + <maml:name>AzureProfile</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> </command:parameters> <command:inputTypes> <command:inputType> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> + <maml:description> + <maml:para> +</maml:para> + </maml:description> </command:inputType> </command:inputTypes> <command:returnValues> <command:returnValue> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> - </command:returnValue> - </command:returnValues> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:returnValue> + </command:returnValues> <command:terminatingErrors></command:terminatingErrors> <command:nonTerminatingErrors></command:nonTerminatingErrors> <maml:alertSet> <maml:title></maml:title> <maml:alert> - <maml:para></maml:para> + <maml:para /> </maml:alert> </maml:alertSet> <command:examples> @@ -5236,48 +7660,54 @@ <maml:relatedLinks> </maml:relatedLinks> </command:command> -<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10"> +<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> <!--Generated by PS Cmdlet Help Editor--> <command:details> - <command:name>Remove-AzureLoadBalancerFrontendIpConfig</command:name> + <command:name>Remove-AzureLoadBalancerRuleConfig</command:name> <maml:description> - <maml:para>Remove a Frontend Ip configuration</maml:para> + <maml:para>Remove a Load Balancer Rule</maml:para> </maml:description> <maml:copyright> <maml:para /> </maml:copyright> <command:verb>Remove</command:verb> - <command:noun>AzureLoadBalancerFrontendIpConfig</command:noun> + <command:noun>AzureLoadBalancerRuleConfig</command:noun> <dev:version /> </command:details> <maml:description> - <!--This is the Description section--> - <maml:para>Remove a Frontend Ip configuration</maml:para> + <maml:para>Remove a Load Balancer Rule</maml:para> </maml:description> <command:syntax> <command:syntaxItem> - <maml:name>Remove-AzureLoadBalancerFrontendIpConfig</maml:name> + <maml:name>Remove-AzureLoadBalancerRuleConfig</maml:name> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>Name</maml:name> <maml:description> - <maml:para>The name of the Frontend Ip configuration to remove.</maml:para> + <maml:para>The name of the Load Balancer Rule to remove.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue)" position="named"> <maml:name>LoadBalancer</maml:name> <maml:description> - <maml:para>The Load Balancer containing the Frontend Ip configuration</maml:para> + <maml:para>The Load Balancer containing the Load Balancer Rule.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">PSLoadBalancer</command:parameterValue> </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + </command:parameter> </command:syntaxItem> </command:syntax> <command:parameters> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>Name</maml:name> <maml:description> - <maml:para>The name of the Frontend Ip configuration to remove.</maml:para> + <maml:para>The name of the Load Balancer Rule to remove.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -5289,7 +7719,7 @@ <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue)" position="named"> <maml:name>LoadBalancer</maml:name> <maml:description> - <maml:para>The Load Balancer containing the Frontend Ip configuration</maml:para> + <maml:para>The Load Balancer containing the Load Balancer Rule.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">PSLoadBalancer</command:parameterValue> <dev:type> @@ -5298,37 +7728,51 @@ </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + <dev:type> + <maml:name>AzureProfile</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> </command:parameters> <command:inputTypes> <command:inputType> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> + <maml:description> + <maml:para> +</maml:para> + </maml:description> </command:inputType> </command:inputTypes> <command:returnValues> <command:returnValue> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> - </command:returnValue> - </command:returnValues> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:returnValue> + </command:returnValues> <command:terminatingErrors></command:terminatingErrors> <command:nonTerminatingErrors></command:nonTerminatingErrors> <maml:alertSet> <maml:title></maml:title> <maml:alert> - <maml:para></maml:para> + <maml:para /> </maml:alert> </maml:alertSet> <command:examples> @@ -5336,48 +7780,68 @@ <maml:relatedLinks> </maml:relatedLinks> </command:command> -<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10"> +<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> <!--Generated by PS Cmdlet Help Editor--> <command:details> - <command:name>Remove-AzureLoadBalancerInboundNatRuleConfig</command:name> + <command:name>Remove-AzureNetworkInterface</command:name> <maml:description> - <maml:para>Remove an Inbound NAT Rule</maml:para> + <maml:para>Remove a Network Interface</maml:para> </maml:description> <maml:copyright> <maml:para /> </maml:copyright> <command:verb>Remove</command:verb> - <command:noun>AzureLoadBalancerInboundNatRuleConfig</command:noun> + <command:noun>AzureNetworkInterface</command:noun> <dev:version /> </command:details> <maml:description> - <!--This is the Description section--> - <maml:para>Remove an Inbound NAT Rule</maml:para> + <maml:para>Remove a Network Interface</maml:para> </maml:description> <command:syntax> <command:syntaxItem> - <maml:name>Remove-AzureLoadBalancerInboundNatRuleConfig</maml:name> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Remove-AzureNetworkInterface</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> <maml:name>Name</maml:name> <maml:description> - <maml:para>The name of the Inbound NAT Rule to remove.</maml:para> + <maml:para>The name of the Network Interface to remove.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue)" position="named"> - <maml:name>LoadBalancer</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>ResourceGroupName</maml:name> <maml:description> - <maml:para>The Load Balancer containing the Inbound NAT Rule</maml:para> + <maml:para>The name of the Resource Group containing the Network Interface.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="false">PSLoadBalancer</command:parameterValue> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Force</maml:name> + <maml:description> + <maml:para>Forces the deletion of the Network Interface without asking for confirmation.</maml:para> + </maml:description> + <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>PassThru</maml:name> + <maml:description> + <maml:para>Indicate if an object should be returned. Returns true if remove is successful.</maml:para> + </maml:description> + <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> </command:parameter> </command:syntaxItem> </command:syntax> <command:parameters> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> <maml:name>Name</maml:name> <maml:description> - <maml:para>The name of the Inbound NAT Rule to remove.</maml:para> + <maml:para>The name of the Network Interface to remove.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -5386,14 +7850,50 @@ </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue)" position="named"> - <maml:name>LoadBalancer</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>ResourceGroupName</maml:name> <maml:description> - <maml:para>The Load Balancer containing the Inbound NAT Rule</maml:para> + <maml:para>The name of the Resource Group containing the Network Interface.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="false">PSLoadBalancer</command:parameterValue> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> - <maml:name>PSLoadBalancer</maml:name> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Force</maml:name> + <maml:description> + <maml:para>Forces the deletion of the Network Interface without asking for confirmation.</maml:para> + </maml:description> + <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> + <dev:type> + <maml:name>SwitchParameter</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>PassThru</maml:name> + <maml:description> + <maml:para>Indicate if an object should be returned. Returns true if remove is successful.</maml:para> + </maml:description> + <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> + <dev:type> + <maml:name>SwitchParameter</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + <dev:type> + <maml:name>AzureProfile</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> @@ -5403,32 +7903,34 @@ <command:inputType> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> + <maml:description> + <maml:para> +</maml:para> + </maml:description> </command:inputType> </command:inputTypes> <command:returnValues> <command:returnValue> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> - </command:returnValue> - </command:returnValues> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:returnValue> + </command:returnValues> <command:terminatingErrors></command:terminatingErrors> <command:nonTerminatingErrors></command:nonTerminatingErrors> <maml:alertSet> <maml:title></maml:title> <maml:alert> - <maml:para></maml:para> + <maml:para /> </maml:alert> </maml:alertSet> <command:examples> @@ -5436,48 +7938,68 @@ <maml:relatedLinks> </maml:relatedLinks> </command:command> -<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10"> +<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> <!--Generated by PS Cmdlet Help Editor--> <command:details> - <command:name>Remove-AzureLoadBalancerProbeConfig</command:name> + <command:name>Remove-AzureNetworkSecurityGroup</command:name> <maml:description> - <maml:para>Remove a Probe configuration</maml:para> + <maml:para>Remove a Network Security Group</maml:para> </maml:description> <maml:copyright> <maml:para /> </maml:copyright> <command:verb>Remove</command:verb> - <command:noun>AzureLoadBalancerProbeConfig</command:noun> + <command:noun>AzureNetworkSecurityGroup</command:noun> <dev:version /> </command:details> <maml:description> - <!--This is the Description section--> - <maml:para>Remove a Probe configuration</maml:para> + <maml:para>Remove a Network Security Group</maml:para> </maml:description> <command:syntax> <command:syntaxItem> - <maml:name>Remove-AzureLoadBalancerProbeConfig</maml:name> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Remove-AzureNetworkSecurityGroup</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> <maml:name>Name</maml:name> <maml:description> - <maml:para>The name of the Probe configuration to remove.</maml:para> + <maml:para>The name of the Network Security Group to remove.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue)" position="named"> - <maml:name>LoadBalancer</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>ResourceGroupName</maml:name> <maml:description> - <maml:para>The Load Balancer containing the Probe configuration</maml:para> + <maml:para>The name of the Resource Group containing the Network Security Group.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="false">PSLoadBalancer</command:parameterValue> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Force</maml:name> + <maml:description> + <maml:para>Forces the deletion of the Network Security Group regardless of whether resources are assigned to it.</maml:para> + </maml:description> + <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>PassThru</maml:name> + <maml:description> + <maml:para>Indicate if an object should be returned. Returns true if remove is successful.</maml:para> + </maml:description> + <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> </command:parameter> </command:syntaxItem> </command:syntax> <command:parameters> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> <maml:name>Name</maml:name> <maml:description> - <maml:para>The name of the Probe configuration to remove.</maml:para> + <maml:para>The name of the Network Security Group to remove.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -5486,14 +8008,50 @@ </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue)" position="named"> - <maml:name>LoadBalancer</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>ResourceGroupName</maml:name> <maml:description> - <maml:para>The Load Balancer containing the Probe configuration</maml:para> + <maml:para>The name of the Resource Group containing the Network Security Group.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="false">PSLoadBalancer</command:parameterValue> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> - <maml:name>PSLoadBalancer</maml:name> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Force</maml:name> + <maml:description> + <maml:para>Forces the deletion of the Network Security Group regardless of whether resources are assigned to it.</maml:para> + </maml:description> + <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> + <dev:type> + <maml:name>SwitchParameter</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>PassThru</maml:name> + <maml:description> + <maml:para>Indicate if an object should be returned. Returns true if remove is successful.</maml:para> + </maml:description> + <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> + <dev:type> + <maml:name>SwitchParameter</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + <dev:type> + <maml:name>AzureProfile</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> @@ -5503,32 +8061,32 @@ <command:inputType> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> + <maml:description> +<maml:para /> + </maml:description> </command:inputType> </command:inputTypes> <command:returnValues> <command:returnValue> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> - </command:returnValue> - </command:returnValues> + <maml:description> +<maml:para /> + </maml:description> + </command:returnValue> + </command:returnValues> <command:terminatingErrors></command:terminatingErrors> <command:nonTerminatingErrors></command:nonTerminatingErrors> <maml:alertSet> <maml:title></maml:title> <maml:alert> - <maml:para></maml:para> + <maml:para /> </maml:alert> </maml:alertSet> <command:examples> @@ -5536,40 +8094,46 @@ <maml:relatedLinks> </maml:relatedLinks> </command:command> -<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10"> +<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> <!--Generated by PS Cmdlet Help Editor--> <command:details> - <command:name>Remove-AzureLoadBalancerRuleConfig</command:name> + <command:name>Remove-AzureNetworkSecurityRuleConfig</command:name> <maml:description> - <maml:para>Remove a Load Balancer Rule</maml:para> + <maml:para>Remove a Network Security Rule from a Network Security Group</maml:para> </maml:description> <maml:copyright> <maml:para /> </maml:copyright> <command:verb>Remove</command:verb> - <command:noun>AzureLoadBalancerRuleConfig</command:noun> + <command:noun>AzureNetworkSecurityRuleConfig</command:noun> <dev:version /> </command:details> <maml:description> - <!--This is the Description section--> - <maml:para>Remove a Load Balancer Rule</maml:para> + <maml:para>Remove a Network Security Rule from a Network Security Group</maml:para> </maml:description> <command:syntax> <command:syntaxItem> - <maml:name>Remove-AzureLoadBalancerRuleConfig</maml:name> + <maml:name>Remove-AzureNetworkSecurityRuleConfig</maml:name> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>Name</maml:name> <maml:description> - <maml:para>The name of the Load Balancer Rule to remove.</maml:para> + <maml:para>The name of the Network Security Rule to remove.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue)" position="named"> - <maml:name>LoadBalancer</maml:name> + <maml:name>NetworkSecurityGroup</maml:name> <maml:description> - <maml:para>The Load Balancer containing the Load Balancer Rule</maml:para> + <maml:para>The name of the Network Security Group containing the Network Security Rule to be removed.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="false">PSLoadBalancer</command:parameterValue> + <command:parameterValue required="true" variableLength="false">PSNetworkSecurityGroup</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> </command:parameter> </command:syntaxItem> </command:syntax> @@ -5577,7 +8141,7 @@ <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>Name</maml:name> <maml:description> - <maml:para>The name of the Load Balancer Rule to remove.</maml:para> + <maml:para>The name of the Network Security Rule to remove.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -5587,13 +8151,25 @@ <dev:defaultValue></dev:defaultValue> </command:parameter> <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue)" position="named"> - <maml:name>LoadBalancer</maml:name> + <maml:name>NetworkSecurityGroup</maml:name> <maml:description> - <maml:para>The Load Balancer containing the Load Balancer Rule</maml:para> + <maml:para>The name of the Network Security Group containing the Network Security Rule to be removed.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="false">PSLoadBalancer</command:parameterValue> + <command:parameterValue required="true" variableLength="false">PSNetworkSecurityGroup</command:parameterValue> <dev:type> - <maml:name>PSLoadBalancer</maml:name> + <maml:name>PSNetworkSecurityGroup</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + <dev:type> + <maml:name>AzureProfile</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> @@ -5603,32 +8179,32 @@ <command:inputType> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> + <maml:description> +<maml:para /> + </maml:description> </command:inputType> </command:inputTypes> <command:returnValues> <command:returnValue> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> - </command:returnValue> - </command:returnValues> + <maml:description> +<maml:para /> + </maml:description> + </command:returnValue> + </command:returnValues> <command:terminatingErrors></command:terminatingErrors> <command:nonTerminatingErrors></command:nonTerminatingErrors> <maml:alertSet> <maml:title></maml:title> <maml:alert> - <maml:para></maml:para> + <maml:para /> </maml:alert> </maml:alertSet> <command:examples> @@ -5636,45 +8212,44 @@ <maml:relatedLinks> </maml:relatedLinks> </command:command> -<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10"> +<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> <!--Generated by PS Cmdlet Help Editor--> <command:details> - <command:name>Remove-AzureNetworkInterface</command:name> + <command:name>Remove-AzurePublicIpAddress</command:name> <maml:description> - <maml:para>Remove a Network Interface</maml:para> + <maml:para>Remove a Public Ip Address</maml:para> </maml:description> <maml:copyright> <maml:para /> </maml:copyright> <command:verb>Remove</command:verb> - <command:noun>AzureNetworkInterface</command:noun> + <command:noun>AzurePublicIpAddress</command:noun> <dev:version /> </command:details> <maml:description> - <!--This is the Description section--> - <maml:para>Remove a Network Interface</maml:para> + <maml:para>Remove a Public Ip Address</maml:para> </maml:description> <command:syntax> <command:syntaxItem> - <maml:name>Remove-AzureNetworkInterface</maml:name> + <maml:name>Remove-AzurePublicIpAddress</maml:name> <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> <maml:name>Name</maml:name> <maml:description> - <maml:para>The name of the Network Interface to remove</maml:para> + <maml:para>The name of the Public Ip Address to remove.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> <maml:name>ResourceGroupName</maml:name> <maml:description> - <maml:para>The name of the Resource Group containing the Network Interface</maml:para> + <maml:para>The name of the Resource Group containing the Public Ip Address.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>Force</maml:name> <maml:description> - <maml:para>Forces the deletion of the Network Interface without asking for confirmation</maml:para> + <maml:para>Forces the deletion of the Public Ip Address without asking for confirmation.</maml:para> </maml:description> <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> </command:parameter> @@ -5685,13 +8260,20 @@ </maml:description> <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + </command:parameter> </command:syntaxItem> </command:syntax> <command:parameters> <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> <maml:name>Name</maml:name> <maml:description> - <maml:para>The name of the Network Interface to remove</maml:para> + <maml:para>The name of the Public Ip Address to remove.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -5703,7 +8285,7 @@ <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> <maml:name>ResourceGroupName</maml:name> <maml:description> - <maml:para>The name of the Resource Group containing the Network Interface</maml:para> + <maml:para>The name of the Resource Group containing the Public Ip Address.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -5715,7 +8297,7 @@ <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>Force</maml:name> <maml:description> - <maml:para>Forces the deletion of the Network Interface without asking for confirmation</maml:para> + <maml:para>Forces the deletion of the Public Ip Address without asking for confirmation.</maml:para> </maml:description> <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> <dev:type> @@ -5736,37 +8318,51 @@ </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + <dev:type> + <maml:name>AzureProfile</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> </command:parameters> <command:inputTypes> <command:inputType> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> + <maml:description> + <maml:para> +</maml:para> + </maml:description> </command:inputType> </command:inputTypes> <command:returnValues> <command:returnValue> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> - </command:returnValue> - </command:returnValues> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:returnValue> + </command:returnValues> <command:terminatingErrors></command:terminatingErrors> <command:nonTerminatingErrors></command:nonTerminatingErrors> <maml:alertSet> <maml:title></maml:title> <maml:alert> - <maml:para></maml:para> + <maml:para /> </maml:alert> </maml:alertSet> <command:examples> @@ -5774,45 +8370,44 @@ <maml:relatedLinks> </maml:relatedLinks> </command:command> -<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10"> +<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> <!--Generated by PS Cmdlet Help Editor--> <command:details> - <command:name>Remove-AzurePublicIpAddress</command:name> + <command:name>Remove-AzureVirtualNetwork</command:name> <maml:description> - <maml:para>Remove a Public Ip Address</maml:para> + <maml:para>Remove a Virtual Network</maml:para> </maml:description> <maml:copyright> <maml:para /> </maml:copyright> <command:verb>Remove</command:verb> - <command:noun>AzurePublicIpAddress</command:noun> + <command:noun>AzureVirtualNetwork</command:noun> <dev:version /> </command:details> <maml:description> - <!--This is the Description section--> - <maml:para>Remove a Public Ip Address</maml:para> + <maml:para>Remove a Virtual Network</maml:para> </maml:description> <command:syntax> <command:syntaxItem> - <maml:name>Remove-AzurePublicIpAddress</maml:name> + <maml:name>Remove-AzureVirtualNetwork</maml:name> <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> <maml:name>Name</maml:name> <maml:description> - <maml:para>The name of the Public Ip Address to remove</maml:para> + <maml:para>The name of the Virtual Network to remove.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> <maml:name>ResourceGroupName</maml:name> <maml:description> - <maml:para>The name of the Resource Group containing the Public Ip Address</maml:para> + <maml:para>The name of the Resource Group containing the Virtual Network.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>Force</maml:name> <maml:description> - <maml:para>Forces the deletion of the Public Ip Address without asking for confirmation</maml:para> + <maml:para>Forces the deletion of the Virtual Network without confirmation.</maml:para> </maml:description> <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> </command:parameter> @@ -5823,13 +8418,20 @@ </maml:description> <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + </command:parameter> </command:syntaxItem> </command:syntax> <command:parameters> <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> <maml:name>Name</maml:name> <maml:description> - <maml:para>The name of the Public Ip Address to remove</maml:para> + <maml:para>The name of the Virtual Network to remove.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -5841,7 +8443,7 @@ <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> <maml:name>ResourceGroupName</maml:name> <maml:description> - <maml:para>The name of the Resource Group containing the Public Ip Address</maml:para> + <maml:para>The name of the Resource Group containing the Virtual Network.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -5853,7 +8455,7 @@ <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>Force</maml:name> <maml:description> - <maml:para>Forces the deletion of the Public Ip Address without asking for confirmation</maml:para> + <maml:para>Forces the deletion of the Virtual Network without confirmation.</maml:para> </maml:description> <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> <dev:type> @@ -5874,37 +8476,51 @@ </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + <dev:type> + <maml:name>AzureProfile</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> </command:parameters> <command:inputTypes> <command:inputType> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> + <maml:description> + <maml:para> +</maml:para> + </maml:description> </command:inputType> </command:inputTypes> <command:returnValues> <command:returnValue> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> - </command:returnValue> - </command:returnValues> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:returnValue> + </command:returnValues> <command:terminatingErrors></command:terminatingErrors> <command:nonTerminatingErrors></command:nonTerminatingErrors> <maml:alertSet> <maml:title></maml:title> <maml:alert> - <maml:para></maml:para> + <maml:para /> </maml:alert> </maml:alertSet> <command:examples> @@ -5912,74 +8528,54 @@ <maml:relatedLinks> </maml:relatedLinks> </command:command> -<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10"> +<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> <!--Generated by PS Cmdlet Help Editor--> <command:details> - <command:name>Remove-AzureVirtualNetwork</command:name> + <command:name>Remove-AzureVirtualNetworkSubnetConfig</command:name> <maml:description> - <maml:para>Remove a Virtual Network</maml:para> + <maml:para>Remove a Subnet from a Virtual Network</maml:para> </maml:description> <maml:copyright> <maml:para /> </maml:copyright> <command:verb>Remove</command:verb> - <command:noun>AzureVirtualNetwork</command:noun> + <command:noun>AzureVirtualNetworkSubnetConfig</command:noun> <dev:version /> </command:details> <maml:description> - <!--This is the Description section--> - <maml:para>Remove a Virtual Network</maml:para> + <maml:para>Remove a Subnet from a Virtual Network</maml:para> </maml:description> <command:syntax> - <command:syntaxItem> - <maml:name>Remove-AzureVirtualNetwork</maml:name> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>Name</maml:name> - <maml:description> - <maml:para>The name of the Virtual Network to remove</maml:para> - </maml:description> - <command:parameterValue required="true" variableLength="false">String</command:parameterValue> - </command:parameter> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>ResourceGroupName</maml:name> + <command:syntaxItem> + <maml:name>Remove-AzureVirtualNetworkSubnetConfig</maml:name> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Name</maml:name> <maml:description> - <maml:para>The name of the Resource Group containing the Virtual Network</maml:para> + <maml:para>The name of the Subnet to remove.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>Force</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue)" position="named"> + <maml:name>VirtualNetwork</maml:name> <maml:description> - <maml:para>Forces the deletion of the Virtual Network without confirmation.</maml:para> + <maml:para>The name of the Virtual Network containing the Subnet to be removed.</maml:para> </maml:description> - <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> + <command:parameterValue required="true" variableLength="false">PSVirtualNetwork</command:parameterValue> </command:parameter> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>PassThru</maml:name> + <maml:name>Profile</maml:name> <maml:description> - <maml:para>Indicate if an object should be returned. Returns true if remove is successful.</maml:para> + <maml:para /> </maml:description> - <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> </command:parameter> </command:syntaxItem> </command:syntax> <command:parameters> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>Name</maml:name> <maml:description> - <maml:para>The name of the Virtual Network to remove</maml:para> - </maml:description> - <command:parameterValue required="true" variableLength="false">String</command:parameterValue> - <dev:type> - <maml:name>String</maml:name> - <maml:uri/> - </dev:type> - <dev:defaultValue></dev:defaultValue> - </command:parameter> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> - <maml:name>ResourceGroupName</maml:name> - <maml:description> - <maml:para>The name of the Resource Group containing the Virtual Network</maml:para> + <maml:para>The name of the Subnet to remove.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -5988,26 +8584,26 @@ </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>Force</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue)" position="named"> + <maml:name>VirtualNetwork</maml:name> <maml:description> - <maml:para>Forces the deletion of the Virtual Network without confirmation.</maml:para> + <maml:para>The name of the Virtual Network containing the Subnet to be removed.</maml:para> </maml:description> - <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> + <command:parameterValue required="true" variableLength="false">PSVirtualNetwork</command:parameterValue> <dev:type> - <maml:name>SwitchParameter</maml:name> + <maml:name>PSVirtualNetwork</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>PassThru</maml:name> + <maml:name>Profile</maml:name> <maml:description> - <maml:para>Indicate if an object should be returned. Returns true if remove is successful.</maml:para> + <maml:para /> </maml:description> - <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> <dev:type> - <maml:name>SwitchParameter</maml:name> + <maml:name>AzureProfile</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> @@ -6017,32 +8613,34 @@ <command:inputType> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> + <maml:description> + <maml:para> +</maml:para> + </maml:description> </command:inputType> </command:inputTypes> <command:returnValues> <command:returnValue> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> - </command:returnValue> - </command:returnValues> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:returnValue> + </command:returnValues> <command:terminatingErrors></command:terminatingErrors> <command:nonTerminatingErrors></command:nonTerminatingErrors> <maml:alertSet> <maml:title></maml:title> <maml:alert> - <maml:para></maml:para> + <maml:para /> </maml:alert> </maml:alertSet> <command:examples> @@ -6050,64 +8648,64 @@ <maml:relatedLinks> </maml:relatedLinks> </command:command> -<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10"> + +<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> <!--Generated by PS Cmdlet Help Editor--> <command:details> - <command:name>Remove-AzureVirtualNetworkSubnetConfig</command:name> + <command:name>Set-AzureLoadBalancer</command:name> <maml:description> - <maml:para>Remove a Subnet from a Virtual Network</maml:para> + <maml:para>Sets the goal state for an Azure Load Balancer</maml:para> </maml:description> <maml:copyright> <maml:para /> </maml:copyright> - <command:verb>Remove</command:verb> - <command:noun>AzureVirtualNetworkSubnetConfig</command:noun> + <command:verb>Set</command:verb> + <command:noun>AzureLoadBalancer</command:noun> <dev:version /> </command:details> <maml:description> - <!--This is the Description section--> - <maml:para>Remove a Subnet from a Virtual Network</maml:para> + <maml:para>Sets the goal state for an Azure Load Balancer</maml:para> </maml:description> <command:syntax> <command:syntaxItem> - <maml:name>Remove-AzureVirtualNetworkSubnetConfig</maml:name> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>Name</maml:name> + <maml:name>Set-AzureLoadBalancer</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue)" position="named"> + <maml:name>LoadBalancer</maml:name> <maml:description> - <maml:para>The name of the Subnet to remove</maml:para> + <maml:para>A Load Balancer object representing the goal state to which the Load Balancer should be set.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <command:parameterValue required="true" variableLength="false">PSLoadBalancer</command:parameterValue> </command:parameter> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue)" position="named"> - <maml:name>VirtualNetwork</maml:name> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> <maml:description> - <maml:para>The name of the Virtual Network containing the Subnet to be removed</maml:para> + <maml:para /> </maml:description> - <command:parameterValue required="true" variableLength="false">PSVirtualNetwork</command:parameterValue> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> </command:parameter> </command:syntaxItem> </command:syntax> <command:parameters> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>Name</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue)" position="named"> + <maml:name>LoadBalancer</maml:name> <maml:description> - <maml:para>The name of the Subnet to remove</maml:para> + <maml:para>A Load Balancer object representing the goal state to which the Load Balancer should be set.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <command:parameterValue required="true" variableLength="false">PSLoadBalancer</command:parameterValue> <dev:type> - <maml:name>String</maml:name> + <maml:name>PSLoadBalancer</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue)" position="named"> - <maml:name>VirtualNetwork</maml:name> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> <maml:description> - <maml:para>The name of the Virtual Network containing the Subnet to be removed</maml:para> + <maml:para /> </maml:description> - <command:parameterValue required="true" variableLength="false">PSVirtualNetwork</command:parameterValue> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> <dev:type> - <maml:name>PSVirtualNetwork</maml:name> + <maml:name>AzureProfile</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> @@ -6117,32 +8715,34 @@ <command:inputType> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> + <maml:description> + <maml:para> +</maml:para> + </maml:description> </command:inputType> </command:inputTypes> <command:returnValues> <command:returnValue> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> - </command:returnValue> - </command:returnValues> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:returnValue> + </command:returnValues> <command:terminatingErrors></command:terminatingErrors> <command:nonTerminatingErrors></command:nonTerminatingErrors> <maml:alertSet> <maml:title></maml:title> <maml:alert> - <maml:para></maml:para> + <maml:para /> </maml:alert> </maml:alertSet> <command:examples> @@ -6150,45 +8750,211 @@ <maml:relatedLinks> </maml:relatedLinks> </command:command> -<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10"> +<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> <!--Generated by PS Cmdlet Help Editor--> <command:details> - <command:name>Set-AzureLoadBalancer</command:name> + <command:name>Set-AzureLoadBalancerFrontendIpConfig</command:name> <maml:description> - <maml:para>Sets the goal state for an Azure Load Balancer</maml:para> + <maml:para>Sets the goal state for a Frontend Ip configuration</maml:para> </maml:description> <maml:copyright> <maml:para /> </maml:copyright> <command:verb>Set</command:verb> - <command:noun>AzureLoadBalancer</command:noun> + <command:noun>AzureLoadBalancerFrontendIpConfig</command:noun> <dev:version /> </command:details> <maml:description> - <!--This is the Description section--> - <maml:para>Sets the goal state for an Azure Load Balancer</maml:para> + <maml:para>Sets the goal state for a Frontend Ip configuration</maml:para> </maml:description> <command:syntax> <command:syntaxItem> - <maml:name>Set-AzureLoadBalancer</maml:name> + <maml:name>Set-AzureLoadBalancerFrontendIpConfig</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Name</maml:name> + <maml:description> + <maml:para>The name of the Frontend Ip.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue)" position="named"> + <maml:name>LoadBalancer</maml:name> + <maml:description> + <maml:para>The Load Balancer object with which this Frontend Ip config will be associated.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">PSLoadBalancer</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>PrivateIpAddress</maml:name> + <maml:description> + <maml:para>The private Ip address of the Load Balancer. + This can be specified only if a subnet is specified</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>SubnetId</maml:name> + <maml:description> + <maml:para>The Id of the Subnet in which this Frontend Ip will be created.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>PublicIpAddressId</maml:name> + <maml:description> + <maml:para>The Id of the Public Ip Address to associate with this Frontend Ip.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + </command:parameter> + </command:syntaxItem> + <command:syntaxItem> + <maml:name>Set-AzureLoadBalancerFrontendIpConfig</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Name</maml:name> + <maml:description> + <maml:para>The name of the Frontend Ip.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue)" position="named"> <maml:name>LoadBalancer</maml:name> <maml:description> - <maml:para>A LoadBalancer object representing the goal state to which the LoadBalancer should be set</maml:para> + <maml:para>The Load Balancer object with which this Frontend Ip config will be associated.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">PSLoadBalancer</command:parameterValue> </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>PrivateIpAddress</maml:name> + <maml:description> + <maml:para>The private Ip address of the Load Balancer. + This can be specified only if a subnet is specified</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Subnet</maml:name> + <maml:description> + <maml:para>The Subnet object within which this Frontend Ip will be created.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">PSSubnet</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>PublicIpAddress</maml:name> + <maml:description> + <maml:para>The Public Ip Address object to associate with this Frontend Ip.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">PSPublicIpAddress</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + </command:parameter> </command:syntaxItem> </command:syntax> <command:parameters> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Name</maml:name> + <maml:description> + <maml:para>The name of the Frontend Ip.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue)" position="named"> <maml:name>LoadBalancer</maml:name> <maml:description> - <maml:para>A LoadBalancer object representing the goal state to which the LoadBalancer should be set</maml:para> + <maml:para>The Load Balancer object with which this Frontend Ip config will be associated.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">PSLoadBalancer</command:parameterValue> <dev:type> - <maml:name>PSLoadBalancer</maml:name> + <maml:name>PSLoadBalancer</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>PrivateIpAddress</maml:name> + <maml:description> + <maml:para>The private Ip address of the Load Balancer. + This can be specified only if a subnet is specified</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>SubnetId</maml:name> + <maml:description> + <maml:para>The Id of the Subnet in which this Frontend Ip will be created.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>PublicIpAddressId</maml:name> + <maml:description> + <maml:para>The Id of the Public Ip Address to associate with this Frontend Ip.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + <dev:type> + <maml:name>AzureProfile</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Subnet</maml:name> + <maml:description> + <maml:para>The Subnet object within which this Frontend Ip will be created.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">PSSubnet</command:parameterValue> + <dev:type> + <maml:name>PSSubnet</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>PublicIpAddress</maml:name> + <maml:description> + <maml:para>The Public Ip Address object to associate with this Frontend Ip.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">PSPublicIpAddress</command:parameterValue> + <dev:type> + <maml:name>PSPublicIpAddress</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> @@ -6198,32 +8964,34 @@ <command:inputType> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> + <maml:description> + <maml:para> +</maml:para> + </maml:description> </command:inputType> </command:inputTypes> <command:returnValues> <command:returnValue> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> - </command:returnValue> - </command:returnValues> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:returnValue> + </command:returnValues> <command:terminatingErrors></command:terminatingErrors> <command:nonTerminatingErrors></command:nonTerminatingErrors> <maml:alertSet> <maml:title></maml:title> <maml:alert> - <maml:para></maml:para> + <maml:para /> </maml:alert> </maml:alertSet> <command:examples> @@ -6231,54 +8999,156 @@ <maml:relatedLinks> </maml:relatedLinks> </command:command> -<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10"> +<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> <!--Generated by PS Cmdlet Help Editor--> <command:details> - <command:name>Set-AzureLoadBalancerBackendAddressPoolConfig</command:name> + <command:name>Set-AzureLoadBalancerInboundNatRuleConfig</command:name> <maml:description> - <maml:para>Sets the goal state for a Backend Address Pool</maml:para> + <maml:para>Add a new Inbound NAT Rule to an Azure Load Balancer</maml:para> </maml:description> <maml:copyright> <maml:para /> </maml:copyright> <command:verb>Set</command:verb> - <command:noun>AzureLoadBalancerBackendAddressPoolConfig</command:noun> + <command:noun>AzureLoadBalancerInboundNatRuleConfig</command:noun> <dev:version /> </command:details> <maml:description> - <!--This is the Description section--> - <maml:para>Sets the goal state for a Backend Address Pool</maml:para> + <maml:para>Add a new Inbound NAT Rule to an Azure Load Balancer</maml:para> </maml:description> <command:syntax> <command:syntaxItem> - <maml:name>Set-AzureLoadBalancerBackendAddressPoolConfig</maml:name> + <maml:name>Set-AzureLoadBalancerInboundNatRuleConfig</maml:name> <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>Name</maml:name> <maml:description> - <maml:para>The name of the Backend Address Pool.</maml:para> + <maml:para>The name of the Inbound NAT Rule.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue)" position="named"> <maml:name>LoadBalancer</maml:name> <maml:description> - <maml:para>The Load Balancer with which this Backend Address Pool will be associated</maml:para> + <maml:para>The Load Balancer in which this Inbound NAT Rule will be created.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">PSLoadBalancer</command:parameterValue> </command:parameter> - <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"> - <maml:name>BackendIpConfigurationId</maml:name> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>FrontendIpConfigurationId</maml:name> <maml:description> - <maml:para>A list of Backend Ip config IDs to associate with this.</maml:para> + <maml:para>A list of Frontend Ip Ids to associate with this Inbound NAT Rule.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="true">List`1[String]</command:parameterValue> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Protocol</maml:name> + <maml:description> + <maml:para>The protocol matched by this Inbound NAT Rule.</maml:para> + <maml:para> Options: Tcp or Udp.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>FrontendPort</maml:name> + <maml:description> + <maml:para>The frontend port matched by this rule.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">Int32</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>BackendPort</maml:name> + <maml:description> + <maml:para>The backend port for traffic matched by this rule.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">Int32</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>IdleTimeoutInMinutes</maml:name> + <maml:description> + <maml:para>The length of time in minutes for which conversation state is maintained within the Load Balancer.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">Int32</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>EnableFloatingIP</maml:name> + <maml:description> + <maml:para>Enables Direct Server Return for this Inbound NAT Rule.</maml:para> + </maml:description> + <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + </command:parameter> + </command:syntaxItem> + <command:syntaxItem> + <maml:name>Set-AzureLoadBalancerInboundNatRuleConfig</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Name</maml:name> + <maml:description> + <maml:para>The name of the Inbound NAT Rule.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue)" position="named"> + <maml:name>LoadBalancer</maml:name> + <maml:description> + <maml:para>The Load Balancer in which this Inbound NAT Rule will be created.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">PSLoadBalancer</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>FrontendIpConfiguration</maml:name> + <maml:description> + <maml:para>A list of Frontend Ips to associate with this Inbound NAT Rule.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">PSFrontendIPConfiguration</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Protocol</maml:name> + <maml:description> + <maml:para>The protocol matched by this Inbound NAT Rule.</maml:para> + <maml:para> Options: Tcp or Udp.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>FrontendPort</maml:name> + <maml:description> + <maml:para>The frontend port matched by this rule.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">Int32</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>BackendPort</maml:name> + <maml:description> + <maml:para>The backend port for traffic matched by this rule.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">Int32</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>IdleTimeoutInMinutes</maml:name> + <maml:description> + <maml:para>The length of time in minutes for which conversation state is maintained within the Load Balancer.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">Int32</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>EnableFloatingIP</maml:name> + <maml:description> + <maml:para>Enables Direct Server Return for this Inbound NAT Rule.</maml:para> + </maml:description> + <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> </command:parameter> - <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"> - <maml:name>BackendIpConfiguration</maml:name> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> <maml:description> - <maml:para>A list of IPs to associate with the Backend Address Pool.</maml:para> + <maml:para /> </maml:description> - <command:parameterValue required="true" variableLength="true">List`1[PSNetworkInterfaceIpConfiguration]</command:parameterValue> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> </command:parameter> </command:syntaxItem> </command:syntax> @@ -6286,7 +9156,7 @@ <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>Name</maml:name> <maml:description> - <maml:para>The name of the Backend Address Pool.</maml:para> + <maml:para>The name of the Inbound NAT Rule.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -6298,7 +9168,7 @@ <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue)" position="named"> <maml:name>LoadBalancer</maml:name> <maml:description> - <maml:para>The Load Balancer with which this Backend Address Pool will be associated</maml:para> + <maml:para>The Load Balancer in which this Inbound NAT Rule will be created.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">PSLoadBalancer</command:parameterValue> <dev:type> @@ -6307,26 +9177,123 @@ </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>FrontendIpConfigurationId</maml:name> + <maml:description> + <maml:para>A list of Frontend Ip Ids to associate with this Inbound NAT Rule.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Protocol</maml:name> + <maml:description> + <maml:para>The protocol matched by this Inbound NAT Rule.</maml:para> + <maml:para> Options: Tcp or Udp.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>FrontendPort</maml:name> + <maml:description> + <maml:para>The frontend port matched by this rule.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">Int32</command:parameterValue> + <dev:type> + <maml:name>Int32</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>BackendPort</maml:name> + <maml:description> + <maml:para>The backend port for traffic matched by this rule.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">Int32</command:parameterValue> + <dev:type> + <maml:name>Int32</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>IdleTimeoutInMinutes</maml:name> + <maml:description> + <maml:para>The length of time in minutes for which conversation state is maintained within the Load Balancer.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">Int32</command:parameterValue> + <dev:type> + <maml:name>Int32</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>EnableFloatingIP</maml:name> + <maml:description> + <maml:para>Enables Direct Server Return for this Inbound NAT Rule.</maml:para> + </maml:description> + <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> + <dev:type> + <maml:name>SwitchParameter</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + <dev:type> + <maml:name>AzureProfile</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>FrontendIpConfiguration</maml:name> + <maml:description> + <maml:para>A list of Frontend Ips to associate with this Inbound NAT Rule.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">PSFrontendIPConfiguration</command:parameterValue> + <dev:type> + <maml:name>PSFrontendIPConfiguration</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>BackendIpConfigurationId</maml:name> <maml:description> - <maml:para>A list of Backend Ip config IDs to associate with this.</maml:para> + <maml:para>The Id of a Backend Ip Configuration to associate with this Inbound NAT Rule.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="true">List`1[String]</command:parameterValue> + <command:parameterValue required="true" variableLength="false">string</command:parameterValue> <dev:type> - <maml:name>List`1[String]</maml:name> + <maml:name>string</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>BackendIpConfiguration</maml:name> <maml:description> - <maml:para>A list of IPs to associate with the Backend Address Pool.</maml:para> + <maml:para>The Ip Configuration to associate with the Backend Ip for this Inbound NAT Rule.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="true">List`1[PSNetworkInterfaceIpConfiguration]</command:parameterValue> + <command:parameterValue required="true" variableLength="false">psnetworkinterfaceipconfiguration</command:parameterValue> <dev:type> - <maml:name>List`1[PSNetworkInterfaceIpConfiguration]</maml:name> + <maml:name>psnetworkinterfaceipconfiguration</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> @@ -6336,32 +9303,34 @@ <command:inputType> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> + <maml:description> + <maml:para> +</maml:para> + </maml:description> </command:inputType> </command:inputTypes> <command:returnValues> <command:returnValue> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> - </command:returnValue> - </command:returnValues> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:returnValue> + </command:returnValues> <command:terminatingErrors></command:terminatingErrors> <command:nonTerminatingErrors></command:nonTerminatingErrors> <maml:alertSet> <maml:title></maml:title> <maml:alert> - <maml:para></maml:para> + <maml:para /> </maml:alert> </maml:alertSet> <command:examples> @@ -6369,101 +9338,82 @@ <maml:relatedLinks> </maml:relatedLinks> </command:command> -<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10"> +<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> <!--Generated by PS Cmdlet Help Editor--> <command:details> - <command:name>Set-AzureLoadBalancerFrontendIpConfig</command:name> + <command:name>Set-AzureLoadBalancerProbeConfig</command:name> <maml:description> - <maml:para>Sets the goal state for a Frontend Ip configuration</maml:para> + <maml:para>Sets the goal state for a Probe configuration</maml:para> </maml:description> <maml:copyright> <maml:para /> </maml:copyright> <command:verb>Set</command:verb> - <command:noun>AzureLoadBalancerFrontendIpConfig</command:noun> + <command:noun>AzureLoadBalancerProbeConfig</command:noun> <dev:version /> </command:details> <maml:description> - <!--This is the Description section--> - <maml:para>Sets the goal state for a Frontend Ip configuration</maml:para> + <maml:para>Sets the goal state for a Probe configuration</maml:para> </maml:description> <command:syntax> <command:syntaxItem> - <maml:name>Set-AzureLoadBalancerFrontendIpConfig</maml:name> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>Name</maml:name> - <maml:description> - <maml:para>The name of the Frontend Ip.</maml:para> - </maml:description> - <command:parameterValue required="true" variableLength="false">String</command:parameterValue> - </command:parameter> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue)" position="named"> - <maml:name>LoadBalancer</maml:name> - <maml:description> - <maml:para>The Load Balancer with which this Frontend Ip config will be associated</maml:para> - </maml:description> - <command:parameterValue required="true" variableLength="false">PSLoadBalancer</command:parameterValue> - </command:parameter> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>PrivateIpAddress</maml:name> - <maml:description> - <maml:para>The private ip address of the load balancer. - This can be specified only if a subnet is specified</maml:para> - </maml:description> - <command:parameterValue required="true" variableLength="false">String</command:parameterValue> - </command:parameter> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>SubnetId</maml:name> - <maml:description> - <maml:para>The ID of the Subnet in which this Frontend Ip will be created.</maml:para> - </maml:description> - <command:parameterValue required="true" variableLength="false">String</command:parameterValue> - </command:parameter> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>PublicIpAddressId</maml:name> - <maml:description> - <maml:para>The ID of the PublicIpAddress to associate with this Frontend Ip.</maml:para> - </maml:description> - <command:parameterValue required="true" variableLength="false">String</command:parameterValue> - </command:parameter> - </command:syntaxItem> - <command:syntaxItem> - <maml:name>Set-AzureLoadBalancerFrontendIpConfig</maml:name> + <maml:name>Set-AzureLoadBalancerProbeConfig</maml:name> <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>Name</maml:name> <maml:description> - <maml:para>The name of the Frontend Ip.</maml:para> + <maml:para>The name of the Probe configuration.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue)" position="named"> <maml:name>LoadBalancer</maml:name> <maml:description> - <maml:para>The Load Balancer with which this Frontend Ip config will be associated</maml:para> + <maml:para>The Load Balancer with which this Probe configuration will be associated.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">PSLoadBalancer</command:parameterValue> </command:parameter> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>PrivateIpAddress</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>RequestPath</maml:name> <maml:description> - <maml:para>The private ip address of the load balancer. - This can be specified only if a subnet is specified</maml:para> + <maml:para>The path to probe within the load balanced service to determine health.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>Subnet</maml:name> + <maml:name>Protocol</maml:name> <maml:description> - <maml:para>The Subnet object within which this Frontend Ip will be created.</maml:para> + <maml:para>The protocol to use for probing the health of the load balanced service.</maml:para> + <maml:para> Options: Tcp or Http.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="false">PSSubnet</command:parameterValue> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Port</maml:name> + <maml:description> + <maml:para>The port on which probes should connect to the load balanced service.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">Int32</command:parameterValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>IntervalInSeconds</maml:name> + <maml:description> + <maml:para>The interval between probes to each instance of the load balanced service.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">Int32</command:parameterValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>ProbeCount</maml:name> + <maml:description> + <maml:para>The number of per-instance consecutive failures for an instance to be considered unhealthy.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">Int32</command:parameterValue> </command:parameter> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>PublicIpAddress</maml:name> + <maml:name>Profile</maml:name> <maml:description> - <maml:para>The PublicIpAddress object to associate with this Frontend Ip</maml:para> + <maml:para /> </maml:description> - <command:parameterValue required="true" variableLength="false">PSPublicIpAddress</command:parameterValue> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> </command:parameter> </command:syntaxItem> </command:syntax> @@ -6471,7 +9421,7 @@ <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>Name</maml:name> <maml:description> - <maml:para>The name of the Frontend Ip.</maml:para> + <maml:para>The name of the Probe configuration.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -6483,7 +9433,7 @@ <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue)" position="named"> <maml:name>LoadBalancer</maml:name> <maml:description> - <maml:para>The Load Balancer with which this Frontend Ip config will be associated</maml:para> + <maml:para>The Load Balancer with which this Probe configuration will be associated.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">PSLoadBalancer</command:parameterValue> <dev:type> @@ -6492,11 +9442,10 @@ </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>PrivateIpAddress</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>RequestPath</maml:name> <maml:description> - <maml:para>The private ip address of the load balancer. - This can be specified only if a subnet is specified</maml:para> + <maml:para>The path to probe within the load balanced service to determine health.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -6506,9 +9455,10 @@ <dev:defaultValue></dev:defaultValue> </command:parameter> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>SubnetId</maml:name> + <maml:name>Protocol</maml:name> <maml:description> - <maml:para>The ID of the Subnet in which this Frontend Ip will be created.</maml:para> + <maml:para>The protocol to use for probing the health of the load balanced service.</maml:para> + <maml:para> Options: Tcp or Http.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -6517,38 +9467,50 @@ </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>PublicIpAddressId</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Port</maml:name> <maml:description> - <maml:para>The ID of the PublicIpAddress to associate with this Frontend Ip.</maml:para> + <maml:para>The port on which probes should connect to the load balanced service.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <command:parameterValue required="true" variableLength="false">Int32</command:parameterValue> <dev:type> - <maml:name>String</maml:name> + <maml:name>Int32</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>Subnet</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>IntervalInSeconds</maml:name> <maml:description> - <maml:para>The Subnet object within which this Frontend Ip will be created.</maml:para> + <maml:para>The interval between probes to each instance of the load balanced service.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="false">PSSubnet</command:parameterValue> + <command:parameterValue required="true" variableLength="false">Int32</command:parameterValue> <dev:type> - <maml:name>PSSubnet</maml:name> + <maml:name>Int32</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>ProbeCount</maml:name> + <maml:description> + <maml:para>The number of per-instance consecutive failures for an instance to be considered unhealthy.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">Int32</command:parameterValue> + <dev:type> + <maml:name>Int32</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>PublicIpAddress</maml:name> + <maml:name>Profile</maml:name> <maml:description> - <maml:para>The PublicIpAddress object to associate with this Frontend Ip</maml:para> + <maml:para /> </maml:description> - <command:parameterValue required="true" variableLength="false">PSPublicIpAddress</command:parameterValue> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> <dev:type> - <maml:name>PSPublicIpAddress</maml:name> + <maml:name>AzureProfile</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> @@ -6558,32 +9520,34 @@ <command:inputType> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> + <maml:description> + <maml:para> +</maml:para> + </maml:description> </command:inputType> </command:inputTypes> <command:returnValues> <command:returnValue> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> - </command:returnValue> - </command:returnValues> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:returnValue> + </command:returnValues> <command:terminatingErrors></command:terminatingErrors> <command:nonTerminatingErrors></command:nonTerminatingErrors> <maml:alertSet> <maml:title></maml:title> <maml:alert> - <maml:para></maml:para> + <maml:para /> </maml:alert> </maml:alertSet> <command:examples> @@ -6591,75 +9555,80 @@ <maml:relatedLinks> </maml:relatedLinks> </command:command> -<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10"> +<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> <!--Generated by PS Cmdlet Help Editor--> <command:details> - <command:name>Set-AzureLoadBalancerInboundNatRuleConfig</command:name> + <command:name>Set-AzureLoadBalancerRuleConfig</command:name> <maml:description> - <maml:para>Add a new Inbound NAT Rule to an Azure Load Balancer</maml:para> + <maml:para>Sets the goal state for a Load Balancer Rule configuration</maml:para> </maml:description> <maml:copyright> <maml:para /> </maml:copyright> <command:verb>Set</command:verb> - <command:noun>AzureLoadBalancerInboundNatRuleConfig</command:noun> + <command:noun>AzureLoadBalancerRuleConfig</command:noun> <dev:version /> </command:details> <maml:description> - <!--This is the Description section--> - <maml:para>Add a new Inbound NAT Rule to an Azure Load Balancer</maml:para> + <maml:para>Sets the goal state for a Load Balancer Rule configuration</maml:para> </maml:description> <command:syntax> <command:syntaxItem> - <maml:name>Set-AzureLoadBalancerInboundNatRuleConfig</maml:name> + <maml:name>Set-AzureLoadBalancerRuleConfig</maml:name> <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>Name</maml:name> <maml:description> - <maml:para>The name of the Inbound NAT Rule</maml:para> + <maml:para>The name of the Load Balancer Rule</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue)" position="named"> <maml:name>LoadBalancer</maml:name> <maml:description> - <maml:para>The Load Balancer in which this Inbound NAT Rule will be created</maml:para> + <maml:para>The Load Balancer with which this Load Balancer Rule will be associated.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">PSLoadBalancer</command:parameterValue> </command:parameter> - <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"> - <maml:name>FrontendIPConfigurationId</maml:name> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>FrontendIpConfigurationId</maml:name> <maml:description> - <maml:para>A list of Frontend Ip IDsto associate with this Inbound NAT Rule</maml:para> + <maml:para>A list of Frontend Ip Id&#39;s to associate with this Load Balancer Rule.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="true">List`1[String]</command:parameterValue> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>BackendAddressPoolId</maml:name> + <maml:description> + <maml:para>The Id of a Backend Address Pool to associate with this Load Balancer Rule.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>BackendIpConfigurationId</maml:name> + <maml:name>ProbeId</maml:name> <maml:description> - <maml:para>The ID of a BackendIpConfiguration to associate with this Inbound NAT Rule.</maml:para> + <maml:para>The Id of the Probe to associate with this Load Balancer Rule.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>Protocol</maml:name> <maml:description> - <maml:para>The Protocol matched by this Inbound NAT Rule. - - Options: Tcp or Udp.</maml:para> + <maml:para>The protocol matched by this Load Balancer Rule.</maml:para> + <maml:para> Options: Tcp or Udp.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>FrontendPort</maml:name> <maml:description> - <maml:para>The frontend port matched by this rule.</maml:para> + <maml:para>The frontend port matched by this Load Balancer Rule.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">Int32</command:parameterValue> </command:parameter> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>BackendPort</maml:name> <maml:description> - <maml:para>The backend port for traffic matched by this rule.</maml:para> + <maml:para>The backend port for traffic matched by this Load Balancer Rule.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">Int32</command:parameterValue> </command:parameter> @@ -6670,64 +9639,88 @@ </maml:description> <command:parameterValue required="true" variableLength="false">Int32</command:parameterValue> </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>LoadDistribution</maml:name> + <maml:description> + <maml:para>Specifies the load balancing distribution type to be used by the Load Balancer. +Possible values are +Default – The load balancer is configured to use a 5 tuple hash to map traffic to available servers +SourceIP – The load balancer is configured to use a 2 tuple hash to map traffic to available servers +SourceIPProtocol– The load balancer is configured to use a 3 tuple hash to map traffic to available servers</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>EnableFloatingIP</maml:name> <maml:description> - <maml:para></maml:para> + <maml:para>Enables Direct Server Return for this Load Balancer Rule.</maml:para> </maml:description> <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + </command:parameter> </command:syntaxItem> <command:syntaxItem> - <maml:name>Set-AzureLoadBalancerInboundNatRuleConfig</maml:name> + <maml:name>Set-AzureLoadBalancerRuleConfig</maml:name> <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>Name</maml:name> <maml:description> - <maml:para>The name of the Inbound NAT Rule</maml:para> + <maml:para>The name of the Load Balancer Rule</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue)" position="named"> <maml:name>LoadBalancer</maml:name> <maml:description> - <maml:para>The Load Balancer in which this Inbound NAT Rule will be created</maml:para> + <maml:para>The Load Balancer with which this Load Balancer Rule will be associated.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">PSLoadBalancer</command:parameterValue> </command:parameter> - <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>FrontendIpConfiguration</maml:name> <maml:description> - <maml:para>A list of Frontend Ips to associate with this Inbound NAT Rule</maml:para> + <maml:para>A list of Frontend Ips to associate with this Load Balancer Rule.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">PSFrontendIPConfiguration</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>BackendAddressPool</maml:name> + <maml:description> + <maml:para>The Backend Address Pool to associate with this Load Balancer Rule.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="true">List`1[PSFrontendIpConfiguration]</command:parameterValue> + <command:parameterValue required="true" variableLength="false">PSBackendAddressPool</command:parameterValue> </command:parameter> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>BackendIpConfiguration</maml:name> + <maml:name>Probe</maml:name> <maml:description> - <maml:para>The IpConfiguration to associate with the Backend Ip for this Inbound NAT Rule.</maml:para> + <maml:para>The probe to associate with this Load Balancer Rule.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="false">PSNetworkInterfaceIpConfiguration</command:parameterValue> + <command:parameterValue required="true" variableLength="false">PSProbe</command:parameterValue> </command:parameter> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>Protocol</maml:name> <maml:description> - <maml:para>The Protocol matched by this Inbound NAT Rule. - - Options: Tcp or Udp.</maml:para> + <maml:para>The protocol matched by this Load Balancer Rule.</maml:para> + <maml:para> Options: Tcp or Udp.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>FrontendPort</maml:name> <maml:description> - <maml:para>The frontend port matched by this rule.</maml:para> + <maml:para>The frontend port matched by this Load Balancer Rule.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">Int32</command:parameterValue> </command:parameter> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>BackendPort</maml:name> <maml:description> - <maml:para>The backend port for traffic matched by this rule.</maml:para> + <maml:para>The backend port for traffic matched by this Load Balancer Rule.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">Int32</command:parameterValue> </command:parameter> @@ -6738,20 +9731,38 @@ </maml:description> <command:parameterValue required="true" variableLength="false">Int32</command:parameterValue> </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>LoadDistribution</maml:name> + <maml:description> + <maml:para>Specifies the load balancing distribution type to be used by the Load Balancer. +Possible values are +Default – The load balancer is configured to use a 5 tuple hash to map traffic to available servers +SourceIP – The load balancer is configured to use a 2 tuple hash to map traffic to available servers +SourceIPProtocol– The load balancer is configured to use a 3 tuple hash to map traffic to available servers</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>EnableFloatingIP</maml:name> <maml:description> - <maml:para></maml:para> + <maml:para>Enables Direct Server Return for this Load Balancer Rule.</maml:para> </maml:description> <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + </command:parameter> </command:syntaxItem> </command:syntax> <command:parameters> <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>Name</maml:name> <maml:description> - <maml:para>The name of the Inbound NAT Rule</maml:para> + <maml:para>The name of the Load Balancer Rule</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -6763,7 +9774,7 @@ <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue)" position="named"> <maml:name>LoadBalancer</maml:name> <maml:description> - <maml:para>The Load Balancer in which this Inbound NAT Rule will be created</maml:para> + <maml:para>The Load Balancer with which this Load Balancer Rule will be associated.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">PSLoadBalancer</command:parameterValue> <dev:type> @@ -6772,22 +9783,34 @@ </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"> - <maml:name>FrontendIPConfigurationId</maml:name> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>FrontendIpConfigurationId</maml:name> <maml:description> - <maml:para>A list of Frontend Ip IDsto associate with this Inbound NAT Rule</maml:para> + <maml:para>A list of Frontend Ip Id&#39;s to associate with this Load Balancer Rule.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="true">List`1[String]</command:parameterValue> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> - <maml:name>List`1[String]</maml:name> + <maml:name>String</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>BackendIpConfigurationId</maml:name> + <maml:name>BackendAddressPoolId</maml:name> + <maml:description> + <maml:para>The Id of a Backend Address Pool to associate with this Load Balancer Rule.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>ProbeId</maml:name> <maml:description> - <maml:para>The ID of a BackendIpConfiguration to associate with this Inbound NAT Rule.</maml:para> + <maml:para>The Id of the Probe to associate with this Load Balancer Rule.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -6799,9 +9822,8 @@ <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>Protocol</maml:name> <maml:description> - <maml:para>The Protocol matched by this Inbound NAT Rule. - - Options: Tcp or Udp.</maml:para> + <maml:para>The protocol matched by this Load Balancer Rule.</maml:para> + <maml:para> Options: Tcp or Udp.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -6813,7 +9835,7 @@ <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>FrontendPort</maml:name> <maml:description> - <maml:para>The frontend port matched by this rule.</maml:para> + <maml:para>The frontend port matched by this Load Balancer Rule.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">Int32</command:parameterValue> <dev:type> @@ -6825,7 +9847,7 @@ <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>BackendPort</maml:name> <maml:description> - <maml:para>The backend port for traffic matched by this rule.</maml:para> + <maml:para>The backend port for traffic matched by this Load Balancer Rule.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">Int32</command:parameterValue> <dev:type> @@ -6846,10 +9868,26 @@ </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>LoadDistribution</maml:name> + <maml:description> + <maml:para>Specifies the load balancing distribution type to be used by the Load Balancer. +Possible values are +Default – The load balancer is configured to use a 5 tuple hash to map traffic to available servers +SourceIP – The load balancer is configured to use a 2 tuple hash to map traffic to available servers +SourceIPProtocol– The load balancer is configured to use a 3 tuple hash to map traffic to available servers</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>EnableFloatingIP</maml:name> <maml:description> - <maml:para></maml:para> + <maml:para>Enables Direct Server Return for this Load Balancer Rule.</maml:para> </maml:description> <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> <dev:type> @@ -6858,26 +9896,151 @@ </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + <dev:type> + <maml:name>AzureProfile</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>FrontendIpConfiguration</maml:name> <maml:description> - <maml:para>A list of Frontend Ips to associate with this Inbound NAT Rule</maml:para> + <maml:para>A list of Frontend Ips to associate with this Load Balancer Rule.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">PSFrontendIPConfiguration</command:parameterValue> + <dev:type> + <maml:name>PSFrontendIPConfiguration</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>BackendAddressPool</maml:name> + <maml:description> + <maml:para>The Backend Address Pool to associate with this Load Balancer Rule.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">PSBackendAddressPool</command:parameterValue> + <dev:type> + <maml:name>PSBackendAddressPool</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Probe</maml:name> + <maml:description> + <maml:para>The probe to associate with this Load Balancer Rule.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">PSProbe</command:parameterValue> + <dev:type> + <maml:name>PSProbe</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + </command:parameters> + <command:inputTypes> + <command:inputType> + <dev:type> + <maml:name></maml:name> + <maml:uri></maml:uri> + <maml:description/> + </dev:type> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:inputType> + </command:inputTypes> + <command:returnValues> + <command:returnValue> + <dev:type> + <maml:name></maml:name> + <maml:uri></maml:uri> + <maml:description/> + </dev:type> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:returnValue> + </command:returnValues> + <command:terminatingErrors></command:terminatingErrors> + <command:nonTerminatingErrors></command:nonTerminatingErrors> + <maml:alertSet> + <maml:title></maml:title> + <maml:alert> + <maml:para /> + </maml:alert> + </maml:alertSet> + <command:examples> + </command:examples> + <maml:relatedLinks> + </maml:relatedLinks> +</command:command> +<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> +<!--Generated by PS Cmdlet Help Editor--> + <command:details> + <command:name>Set-AzureNetworkInterface</command:name> + <maml:description> + <maml:para>Sets the goal state for an Azure Network Interface</maml:para> + </maml:description> + <maml:copyright> + <maml:para /> + </maml:copyright> + <command:verb>Set</command:verb> + <command:noun>AzureNetworkInterface</command:noun> + <dev:version /> + </command:details> + <maml:description> + <maml:para>Sets the goal state for an Azure Network Interface</maml:para> + </maml:description> + <command:syntax> + <command:syntaxItem> + <maml:name>Set-AzureNetworkInterface</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue)" position="named"> + <maml:name>NetworkInterface</maml:name> + <maml:description> + <maml:para>A Network Interface object representing the goal state to which the Network Interface should be set.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">PSNetworkInterface</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + </command:parameter> + </command:syntaxItem> + </command:syntax> + <command:parameters> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue)" position="named"> + <maml:name>NetworkInterface</maml:name> + <maml:description> + <maml:para>A Network Interface object representing the goal state to which the Network Interface should be set.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="true">List`1[PSFrontendIpConfiguration]</command:parameterValue> + <command:parameterValue required="true" variableLength="false">PSNetworkInterface</command:parameterValue> <dev:type> - <maml:name>List`1[PSFrontendIpConfiguration]</maml:name> + <maml:name>PSNetworkInterface</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>BackendIpConfiguration</maml:name> + <maml:name>Profile</maml:name> <maml:description> - <maml:para>The IpConfiguration to associate with the Backend Ip for this Inbound NAT Rule.</maml:para> + <maml:para /> </maml:description> - <command:parameterValue required="true" variableLength="false">PSNetworkInterfaceIpConfiguration</command:parameterValue> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> <dev:type> - <maml:name>PSNetworkInterfaceIpConfiguration</maml:name> + <maml:name>AzureProfile</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> @@ -6887,32 +10050,34 @@ <command:inputType> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> + <maml:description> + <maml:para> +</maml:para> + </maml:description> </command:inputType> </command:inputTypes> <command:returnValues> <command:returnValue> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> - </command:returnValue> - </command:returnValues> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:returnValue> + </command:returnValues> <command:terminatingErrors></command:terminatingErrors> <command:nonTerminatingErrors></command:nonTerminatingErrors> <maml:alertSet> <maml:title></maml:title> <maml:alert> - <maml:para></maml:para> + <maml:para /> </maml:alert> </maml:alertSet> <command:examples> @@ -6920,163 +10085,63 @@ <maml:relatedLinks> </maml:relatedLinks> </command:command> -<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10"> +<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> <!--Generated by PS Cmdlet Help Editor--> <command:details> - <command:name>Set-AzureLoadBalancerProbeConfig</command:name> + <command:name>Set-AzureNetworkSecurityGroup</command:name> <maml:description> - <maml:para>Sets the goal state for a Probe configuration</maml:para> + <maml:para>Sets the goal state for an Network Security Group</maml:para> </maml:description> <maml:copyright> <maml:para /> </maml:copyright> <command:verb>Set</command:verb> - <command:noun>AzureLoadBalancerProbeConfig</command:noun> + <command:noun>AzureNetworkSecurityGroup</command:noun> <dev:version /> </command:details> <maml:description> - <!--This is the Description section--> - <maml:para>Sets the goal state for a Probe configuration</maml:para> + <maml:para>Sets the goal state for an Network Security Group</maml:para> </maml:description> <command:syntax> <command:syntaxItem> - <maml:name>Set-AzureLoadBalancerProbeConfig</maml:name> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>Name</maml:name> - <maml:description> - <maml:para>The name of the Probe configuration.</maml:para> - </maml:description> - <command:parameterValue required="true" variableLength="false">String</command:parameterValue> - </command:parameter> + <maml:name>Set-AzureNetworkSecurityGroup</maml:name> <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue)" position="named"> - <maml:name>LoadBalancer</maml:name> - <maml:description> - <maml:para>The Load Balancer with which this Probe configuration will be associated</maml:para> - </maml:description> - <command:parameterValue required="true" variableLength="false">PSLoadBalancer</command:parameterValue> - </command:parameter> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>RequestPath</maml:name> + <maml:name>NetworkSecurityGroup</maml:name> <maml:description> - <maml:para>The path within the load balanced service to probe to determine health</maml:para> + <maml:para>A Network Security Group object representing the goal state to which the Network Security Group should be set.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <command:parameterValue required="true" variableLength="false">PSNetworkSecurityGroup</command:parameterValue> </command:parameter> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>Protocol</maml:name> - <maml:description> - <maml:para>The Protocol to use for the probing. - - Options: Tcp or Http.</maml:para> - </maml:description> - <command:parameterValue required="true" variableLength="false">String</command:parameterValue> - </command:parameter> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>Port</maml:name> - <maml:description> - <maml:para>The port on which probes should connect to the load balanced service</maml:para> - </maml:description> - <command:parameterValue required="true" variableLength="false">Int32</command:parameterValue> - </command:parameter> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>IntervalInSeconds</maml:name> - <maml:description> - <maml:para>The interval between probes to each instance of the load balanced service</maml:para> - </maml:description> - <command:parameterValue required="true" variableLength="false">Int32</command:parameterValue> - </command:parameter> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>ProbeCount</maml:name> + <maml:name>Profile</maml:name> <maml:description> - <maml:para>The number of per-instance consecutive failures for an instance to be considered unhealthy</maml:para> + <maml:para /> </maml:description> - <command:parameterValue required="true" variableLength="false">Int32</command:parameterValue> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> </command:parameter> </command:syntaxItem> </command:syntax> <command:parameters> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>Name</maml:name> - <maml:description> - <maml:para>The name of the Probe configuration.</maml:para> - </maml:description> - <command:parameterValue required="true" variableLength="false">String</command:parameterValue> - <dev:type> - <maml:name>String</maml:name> - <maml:uri/> - </dev:type> - <dev:defaultValue></dev:defaultValue> - </command:parameter> <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue)" position="named"> - <maml:name>LoadBalancer</maml:name> - <maml:description> - <maml:para>The Load Balancer with which this Probe configuration will be associated</maml:para> - </maml:description> - <command:parameterValue required="true" variableLength="false">PSLoadBalancer</command:parameterValue> - <dev:type> - <maml:name>PSLoadBalancer</maml:name> - <maml:uri/> - </dev:type> - <dev:defaultValue></dev:defaultValue> - </command:parameter> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>RequestPath</maml:name> + <maml:name>NetworkSecurityGroup</maml:name> <maml:description> - <maml:para>The path within the load balanced service to probe to determine health</maml:para> + <maml:para>A Network Security Group object representing the goal state to which the Network Security Group should be set.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <command:parameterValue required="true" variableLength="false">PSNetworkSecurityGroup</command:parameterValue> <dev:type> - <maml:name>String</maml:name> + <maml:name>PSNetworkSecurityGroup</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>Protocol</maml:name> - <maml:description> - <maml:para>The Protocol to use for the probing. - - Options: Tcp or Http.</maml:para> - </maml:description> - <command:parameterValue required="true" variableLength="false">String</command:parameterValue> - <dev:type> - <maml:name>String</maml:name> - <maml:uri/> - </dev:type> - <dev:defaultValue></dev:defaultValue> - </command:parameter> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>Port</maml:name> - <maml:description> - <maml:para>The port on which probes should connect to the load balanced service</maml:para> - </maml:description> - <command:parameterValue required="true" variableLength="false">Int32</command:parameterValue> - <dev:type> - <maml:name>Int32</maml:name> - <maml:uri/> - </dev:type> - <dev:defaultValue></dev:defaultValue> - </command:parameter> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>IntervalInSeconds</maml:name> - <maml:description> - <maml:para>The interval between probes to each instance of the load balanced service</maml:para> - </maml:description> - <command:parameterValue required="true" variableLength="false">Int32</command:parameterValue> - <dev:type> - <maml:name>Int32</maml:name> - <maml:uri/> - </dev:type> - <dev:defaultValue></dev:defaultValue> - </command:parameter> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>ProbeCount</maml:name> + <maml:name>Profile</maml:name> <maml:description> - <maml:para>The number of per-instance consecutive failures for an instance to be considered unhealthy</maml:para> + <maml:para /> </maml:description> - <command:parameterValue required="true" variableLength="false">Int32</command:parameterValue> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> <dev:type> - <maml:name>Int32</maml:name> + <maml:name>AzureProfile</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> @@ -7086,32 +10151,32 @@ <command:inputType> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> + <maml:description> +<maml:para /> + </maml:description> </command:inputType> </command:inputTypes> <command:returnValues> <command:returnValue> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> - </command:returnValue> - </command:returnValues> + <maml:description> +<maml:para /> + </maml:description> + </command:returnValue> + </command:returnValues> <command:terminatingErrors></command:terminatingErrors> <command:nonTerminatingErrors></command:nonTerminatingErrors> <maml:alertSet> <maml:title></maml:title> <maml:alert> - <maml:para></maml:para> + <maml:para /> </maml:alert> </maml:alertSet> <command:examples> @@ -7119,217 +10184,141 @@ <maml:relatedLinks> </maml:relatedLinks> </command:command> -<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10"> +<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> <!--Generated by PS Cmdlet Help Editor--> <command:details> - <command:name>Set-AzureLoadBalancerRuleConfig</command:name> + <command:name>Set-AzureNetworkSecurityRuleConfig</command:name> <maml:description> - <maml:para>Sets the goal state for a Load Balancer Rule configuration</maml:para> + <maml:para>Sets the goal state for an Network Security Rule</maml:para> </maml:description> <maml:copyright> <maml:para /> </maml:copyright> <command:verb>Set</command:verb> - <command:noun>AzureLoadBalancerRuleConfig</command:noun> + <command:noun>AzureNetworkSecurityRuleConfig</command:noun> <dev:version /> </command:details> <maml:description> - <!--This is the Description section--> - <maml:para>Sets the goal state for a Load Balancer Rule configuration</maml:para> + <maml:para>Sets the goal state for an Network Security Rule</maml:para> </maml:description> <command:syntax> <command:syntaxItem> - <maml:name>Set-AzureLoadBalancerRuleConfig</maml:name> + <maml:name>Set-AzureNetworkSecurityRuleConfig</maml:name> <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>Name</maml:name> <maml:description> - <maml:para></maml:para> + <maml:para>The name of the Network Security Rule.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue)" position="named"> - <maml:name>LoadBalancer</maml:name> - <maml:description> - <maml:para>The Load Balancer with which this Load Balancer Rule will be associated</maml:para> - </maml:description> - <command:parameterValue required="true" variableLength="false">PSLoadBalancer</command:parameterValue> - </command:parameter> - <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"> - <maml:name>FrontendIPConfigurationId</maml:name> - <maml:description> - <maml:para>A list of Frontend Ip ID&#39;s to associate with this Load Balancer Rule</maml:para> - </maml:description> - <command:parameterValue required="true" variableLength="true">List`1[String]</command:parameterValue> - </command:parameter> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>BackendAddressPoolId</maml:name> + <maml:name>NetworkSecurityGroup</maml:name> <maml:description> - <maml:para>The ID of a BackendAddressPool to associate with this Load Balancer Rule.</maml:para> + <maml:para>The Network Security Group object containing the Network Security Rule.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <command:parameterValue required="true" variableLength="false">PSNetworkSecurityGroup</command:parameterValue> </command:parameter> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>ProbeId</maml:name> + <maml:name>Description</maml:name> <maml:description> - <maml:para>The ID of the Probe to associate with this Load Balancer Rule</maml:para> + <maml:para>A description for this rule. Restricted to 140 characters.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>Protocol</maml:name> <maml:description> - <maml:para>The Protocol matched by this Load Balancer Rule. - - Options: Tcp or Udp.</maml:para> + <maml:para>Network protocol this rule applies to. Can be Tcp, Udp or * to match both.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>FrontendPort</maml:name> - <maml:description> - <maml:para>The frontend port matched by this Load Balancer Rule.</maml:para> - </maml:description> - <command:parameterValue required="true" variableLength="false">Int32</command:parameterValue> - </command:parameter> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>BackendPort</maml:name> - <maml:description> - <maml:para>The backend port for traffic matched by this Load Balancer Rule.</maml:para> - </maml:description> - <command:parameterValue required="true" variableLength="false">Int32</command:parameterValue> - </command:parameter> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>IdleTimeoutInMinutes</maml:name> - <maml:description> - <maml:para>The length of time in minutes for which state of conversations is maintained within the Load Balancer.</maml:para> - </maml:description> - <command:parameterValue required="true" variableLength="false">Int32</command:parameterValue> - </command:parameter> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>EnableFloatingIP</maml:name> - <maml:description> - <maml:para></maml:para> - </maml:description> - <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> - </command:parameter> - </command:syntaxItem> - <command:syntaxItem> - <maml:name>Set-AzureLoadBalancerRuleConfig</maml:name> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>Name</maml:name> + <maml:name>SourcePortRange</maml:name> <maml:description> - <maml:para></maml:para> + <maml:para>Source Port or Range. Integer or range between 0 and 65535 or * to match any.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue)" position="named"> - <maml:name>LoadBalancer</maml:name> - <maml:description> - <maml:para>The Load Balancer with which this Load Balancer Rule will be associated</maml:para> - </maml:description> - <command:parameterValue required="true" variableLength="false">PSLoadBalancer</command:parameterValue> - </command:parameter> - <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"> - <maml:name>FrontendIpConfiguration</maml:name> - <maml:description> - <maml:para>A list of Frontend Ips to associate with this Load Balancer Rule.</maml:para> - </maml:description> - <command:parameterValue required="true" variableLength="true">List`1[PSFrontendIpConfiguration]</command:parameterValue> - </command:parameter> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>BackendAddressPool</maml:name> + <maml:name>DestinationPortRange</maml:name> <maml:description> - <maml:para>The Backend Address Pool to associate with this Load Balancer Rule.</maml:para> + <maml:para>Destination Port or Range. Integer or range between 0 and 65535 or * to match any.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="false">PSBackendAddressPool</command:parameterValue> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>Probe</maml:name> + <maml:name>SourceAddressPrefix</maml:name> <maml:description> - <maml:para>The Probe to associate with this Load Balancer Rule.</maml:para> + <maml:para>CIDR or source IP range or * to match any IP. Tags such as ‘VirtualNetwork’, ‘AzureLoadBalancer’ and ‘Internet’ can also be used.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="false">PSProbe</command:parameterValue> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>Protocol</maml:name> + <maml:name>DestinationAddressPrefix</maml:name> <maml:description> - <maml:para>The Protocol matched by this Load Balancer Rule. - - Options: Tcp or Udp.</maml:para> + <maml:para>CIDR or destination IP range or * to match any IP. Tags such as ‘VirtualNetwork’, ‘AzureLoadBalancer’ and ‘Internet’ can also be used. </maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>FrontendPort</maml:name> + <maml:name>Access</maml:name> <maml:description> - <maml:para>The frontend port matched by this Load Balancer Rule.</maml:para> + <maml:para>Specifies whether network traffic is allowed or denied. Possible values are “Allow” and “Deny”.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="false">Int32</command:parameterValue> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>BackendPort</maml:name> + <maml:name>Priority</maml:name> <maml:description> - <maml:para>The backend port for traffic matched by this Load Balancer Rule.</maml:para> + <maml:para>Specifies the priority of the rule. The value can be between 100 and 4096. The priority number must be unique for each rule in the collection. The lower the priority number, the higher the priority of the rule.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">Int32</command:parameterValue> </command:parameter> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>IdleTimeoutInMinutes</maml:name> + <maml:name>Direction</maml:name> <maml:description> - <maml:para>The length of time in minutes for which state of conversations is maintained within the Load Balancer.</maml:para> + <maml:para>The direction specifies if rule will be evaluated on incoming or outgoing traffic. Possible values are “Inbound” and “Outbound”.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="false">Int32</command:parameterValue> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>EnableFloatingIP</maml:name> + <maml:name>Profile</maml:name> <maml:description> - <maml:para></maml:para> + <maml:para /> </maml:description> - <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> </command:parameter> </command:syntaxItem> </command:syntax> <command:parameters> <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>Name</maml:name> - <maml:description> - <maml:para></maml:para> - </maml:description> - <command:parameterValue required="true" variableLength="false">String</command:parameterValue> - <dev:type> - <maml:name>String</maml:name> - <maml:uri/> - </dev:type> - <dev:defaultValue></dev:defaultValue> - </command:parameter> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue)" position="named"> - <maml:name>LoadBalancer</maml:name> + <maml:name>Name</maml:name> <maml:description> - <maml:para>The Load Balancer with which this Load Balancer Rule will be associated</maml:para> + <maml:para>The name of the Network Security Rule.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="false">PSLoadBalancer</command:parameterValue> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> - <maml:name>PSLoadBalancer</maml:name> + <maml:name>String</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"> - <maml:name>FrontendIPConfigurationId</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue)" position="named"> + <maml:name>NetworkSecurityGroup</maml:name> <maml:description> - <maml:para>A list of Frontend Ip ID&#39;s to associate with this Load Balancer Rule</maml:para> + <maml:para>The Network Security Group object containing the Network Security Rule.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="true">List`1[String]</command:parameterValue> + <command:parameterValue required="true" variableLength="false">PSNetworkSecurityGroup</command:parameterValue> <dev:type> - <maml:name>List`1[String]</maml:name> + <maml:name>PSNetworkSecurityGroup</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>BackendAddressPoolId</maml:name> + <maml:name>Description</maml:name> <maml:description> - <maml:para>The ID of a BackendAddressPool to associate with this Load Balancer Rule.</maml:para> + <maml:para>A description for this rule. Restricted to 140 characters.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -7339,9 +10328,9 @@ <dev:defaultValue></dev:defaultValue> </command:parameter> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>ProbeId</maml:name> + <maml:name>Protocol</maml:name> <maml:description> - <maml:para>The ID of the Probe to associate with this Load Balancer Rule</maml:para> + <maml:para>Network protocol this rule applies to. Can be Tcp, Udp or * to match both.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -7351,11 +10340,9 @@ <dev:defaultValue></dev:defaultValue> </command:parameter> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>Protocol</maml:name> + <maml:name>SourcePortRange</maml:name> <maml:description> - <maml:para>The Protocol matched by this Load Balancer Rule. - - Options: Tcp or Udp.</maml:para> + <maml:para>Source Port or Range. Integer or range between 0 and 65535 or * to match any.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -7365,85 +10352,85 @@ <dev:defaultValue></dev:defaultValue> </command:parameter> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>FrontendPort</maml:name> + <maml:name>DestinationPortRange</maml:name> <maml:description> - <maml:para>The frontend port matched by this Load Balancer Rule.</maml:para> + <maml:para>Destination Port or Range. Integer or range between 0 and 65535 or * to match any.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="false">Int32</command:parameterValue> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> - <maml:name>Int32</maml:name> + <maml:name>String</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>BackendPort</maml:name> + <maml:name>SourceAddressPrefix</maml:name> <maml:description> - <maml:para>The backend port for traffic matched by this Load Balancer Rule.</maml:para> + <maml:para>CIDR or source IP range or * to match any IP. Tags such as ‘VirtualNetwork’, ‘AzureLoadBalancer’ and ‘Internet’ can also be used.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="false">Int32</command:parameterValue> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> - <maml:name>Int32</maml:name> + <maml:name>String</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>IdleTimeoutInMinutes</maml:name> + <maml:name>DestinationAddressPrefix</maml:name> <maml:description> - <maml:para>The length of time in minutes for which state of conversations is maintained within the Load Balancer.</maml:para> + <maml:para>CIDR or destination IP range or * to match any IP. Tags such as ‘VirtualNetwork’, ‘AzureLoadBalancer’ and ‘Internet’ can also be used. </maml:para> </maml:description> - <command:parameterValue required="true" variableLength="false">Int32</command:parameterValue> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> - <maml:name>Int32</maml:name> + <maml:name>String</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>EnableFloatingIP</maml:name> + <maml:name>Access</maml:name> <maml:description> - <maml:para></maml:para> + <maml:para>Specifies whether network traffic is allowed or denied. Possible values are “Allow” and “Deny”.</maml:para> </maml:description> - <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> - <maml:name>SwitchParameter</maml:name> + <maml:name>String</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"> - <maml:name>FrontendIpConfiguration</maml:name> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Priority</maml:name> <maml:description> - <maml:para>A list of Frontend Ips to associate with this Load Balancer Rule.</maml:para> + <maml:para>Specifies the priority of the rule. The value can be between 100 and 4096. The priority number must be unique for each rule in the collection. The lower the priority number, the higher the priority of the rule.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="true">List`1[PSFrontendIpConfiguration]</command:parameterValue> + <command:parameterValue required="true" variableLength="false">Int32</command:parameterValue> <dev:type> - <maml:name>List`1[PSFrontendIpConfiguration]</maml:name> + <maml:name>Int32</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>BackendAddressPool</maml:name> + <maml:name>Direction</maml:name> <maml:description> - <maml:para>The Backend Address Pool to associate with this Load Balancer Rule.</maml:para> + <maml:para>The direction specifies if rule will be evaluated on incoming or outgoing traffic. Possible values are “Inbound” and “Outbound”.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="false">PSBackendAddressPool</command:parameterValue> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> - <maml:name>PSBackendAddressPool</maml:name> + <maml:name>String</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> - <maml:name>Probe</maml:name> + <maml:name>Profile</maml:name> <maml:description> - <maml:para>The Probe to associate with this Load Balancer Rule.</maml:para> + <maml:para /> </maml:description> - <command:parameterValue required="true" variableLength="false">PSProbe</command:parameterValue> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> <dev:type> - <maml:name>PSProbe</maml:name> + <maml:name>AzureProfile</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> @@ -7453,113 +10440,32 @@ <command:inputType> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> - </dev:type> - <maml:description></maml:description> - </command:inputType> - </command:inputTypes> - <command:returnValues> - <command:returnValue> - <dev:type> - <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> - </command:returnValue> - </command:returnValues> - <command:terminatingErrors></command:terminatingErrors> - <command:nonTerminatingErrors></command:nonTerminatingErrors> - <maml:alertSet> - <maml:title></maml:title> - <maml:alert> - <maml:para></maml:para> - </maml:alert> - </maml:alertSet> - <command:examples> - </command:examples> - <maml:relatedLinks> - </maml:relatedLinks> -</command:command> -<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10"> -<!--Generated by PS Cmdlet Help Editor--> - <command:details> - <command:name>Set-AzureNetworkInterface</command:name> - <maml:description> - <maml:para>Sets the goal state for an Azure Network Interface</maml:para> - </maml:description> - <maml:copyright> - <maml:para /> - </maml:copyright> - <command:verb>Set</command:verb> - <command:noun>AzureNetworkInterface</command:noun> - <dev:version /> - </command:details> - <maml:description> - <!--This is the Description section--> - <maml:para>Sets the goal state for an Azure Network Interface</maml:para> - </maml:description> - <command:syntax> - <command:syntaxItem> - <maml:name>Set-AzureNetworkInterface</maml:name> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue)" position="named"> - <maml:name>NetworkInterface</maml:name> - <maml:description> - <maml:para>A Network Interface object representing the goal state to which the Network Interface should be set</maml:para> - </maml:description> - <command:parameterValue required="true" variableLength="false">PSNetworkInterface</command:parameterValue> - </command:parameter> - </command:syntaxItem> - </command:syntax> - <command:parameters> - <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue)" position="named"> - <maml:name>NetworkInterface</maml:name> <maml:description> - <maml:para>A Network Interface object representing the goal state to which the Network Interface should be set</maml:para> +<maml:para /> </maml:description> - <command:parameterValue required="true" variableLength="false">PSNetworkInterface</command:parameterValue> - <dev:type> - <maml:name>PSNetworkInterface</maml:name> - <maml:uri/> - </dev:type> - <dev:defaultValue></dev:defaultValue> - </command:parameter> - </command:parameters> - <command:inputTypes> - <command:inputType> - <dev:type> - <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> - </dev:type> - <maml:description></maml:description> </command:inputType> </command:inputTypes> <command:returnValues> <command:returnValue> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> - </command:returnValue> - </command:returnValues> + <maml:description> +<maml:para /> + </maml:description> + </command:returnValue> + </command:returnValues> <command:terminatingErrors></command:terminatingErrors> <command:nonTerminatingErrors></command:nonTerminatingErrors> <maml:alertSet> <maml:title></maml:title> <maml:alert> - <maml:para></maml:para> + <maml:para /> </maml:alert> </maml:alertSet> <command:examples> @@ -7567,7 +10473,7 @@ <maml:relatedLinks> </maml:relatedLinks> </command:command> -<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10"> +<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> <!--Generated by PS Cmdlet Help Editor--> <command:details> <command:name>Set-AzurePublicIpAddress</command:name> @@ -7582,7 +10488,6 @@ <dev:version /> </command:details> <maml:description> - <!--This is the Description section--> <maml:para>Sets the goal state for a Public Ip Address</maml:para> </maml:description> <command:syntax> @@ -7591,17 +10496,24 @@ <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue)" position="named"> <maml:name>PublicIpAddress</maml:name> <maml:description> - <maml:para>A Public IP Address object representing the goal state to which the Public Ip Address should be set</maml:para> + <maml:para>A Public IP Address object representing the goal state to which the Public Ip Address should be set.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">PSPublicIpAddress</command:parameterValue> </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + </command:parameter> </command:syntaxItem> </command:syntax> <command:parameters> <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue)" position="named"> <maml:name>PublicIpAddress</maml:name> <maml:description> - <maml:para>A Public IP Address object representing the goal state to which the Public Ip Address should be set</maml:para> + <maml:para>A Public IP Address object representing the goal state to which the Public Ip Address should be set.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">PSPublicIpAddress</command:parameterValue> <dev:type> @@ -7610,37 +10522,51 @@ </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + <dev:type> + <maml:name>AzureProfile</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> </command:parameters> <command:inputTypes> <command:inputType> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> + <maml:description> + <maml:para> +</maml:para> + </maml:description> </command:inputType> </command:inputTypes> <command:returnValues> <command:returnValue> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> - </command:returnValue> - </command:returnValues> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:returnValue> + </command:returnValues> <command:terminatingErrors></command:terminatingErrors> <command:nonTerminatingErrors></command:nonTerminatingErrors> <maml:alertSet> <maml:title></maml:title> <maml:alert> - <maml:para></maml:para> + <maml:para /> </maml:alert> </maml:alertSet> <command:examples> @@ -7648,7 +10574,7 @@ <maml:relatedLinks> </maml:relatedLinks> </command:command> -<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10"> +<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> <!--Generated by PS Cmdlet Help Editor--> <command:details> <command:name>Set-AzureVirtualNetwork</command:name> @@ -7663,7 +10589,6 @@ <dev:version /> </command:details> <maml:description> - <!--This is the Description section--> <maml:para>Sets the goal state for an Azure Virtual Network</maml:para> </maml:description> <command:syntax> @@ -7672,17 +10597,24 @@ <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue)" position="named"> <maml:name>VirtualNetwork</maml:name> <maml:description> - <maml:para>A Virtual Network object representing the goal state to which the Virtual Network should be set</maml:para> + <maml:para>A Virtual Network object representing the goal state to which the Virtual Network should be set.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">PSVirtualNetwork</command:parameterValue> </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + </command:parameter> </command:syntaxItem> </command:syntax> <command:parameters> <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue)" position="named"> <maml:name>VirtualNetwork</maml:name> <maml:description> - <maml:para>A Virtual Network object representing the goal state to which the Virtual Network should be set</maml:para> + <maml:para>A Virtual Network object representing the goal state to which the Virtual Network should be set.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">PSVirtualNetwork</command:parameterValue> <dev:type> @@ -7691,37 +10623,51 @@ </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + <dev:type> + <maml:name>AzureProfile</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> </command:parameters> <command:inputTypes> <command:inputType> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> + <maml:description> + <maml:para> +</maml:para> + </maml:description> </command:inputType> </command:inputTypes> <command:returnValues> <command:returnValue> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> - </command:returnValue> - </command:returnValues> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:returnValue> + </command:returnValues> <command:terminatingErrors></command:terminatingErrors> <command:nonTerminatingErrors></command:nonTerminatingErrors> <maml:alertSet> <maml:title></maml:title> <maml:alert> - <maml:para></maml:para> + <maml:para /> </maml:alert> </maml:alertSet> <command:examples> @@ -7729,7 +10675,7 @@ <maml:relatedLinks> </maml:relatedLinks> </command:command> -<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10"> +<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> <!--Generated by PS Cmdlet Help Editor--> <command:details> <command:name>Set-AzureVirtualNetworkSubnetConfig</command:name> @@ -7744,7 +10690,6 @@ <dev:version /> </command:details> <maml:description> - <!--This is the Description section--> <maml:para>Sets the goal state for a Subnet within an Azure Virtual Network</maml:para> </maml:description> <command:syntax> @@ -7760,23 +10705,68 @@ <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue)" position="named"> <maml:name>VirtualNetwork</maml:name> <maml:description> - <maml:para>The Virtual Network containing the Subnet</maml:para> + <maml:para>The Virtual Network containing the Subnet.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">PSVirtualNetwork</command:parameterValue> </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>AddressPrefix</maml:name> + <maml:description> + <maml:para>The IP range covered by this Subnet.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>NetworkSecurityGroup</maml:name> + <maml:description> + <maml:para>The Network Security Group object containing ACLs that will apply to this Subnet.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">PSNetworkSecurityGroup</command:parameterValue> + </command:parameter> <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + </command:parameter> + </command:syntaxItem> + <command:syntaxItem> + <maml:name>Set-AzureVirtualNetworkSubnetConfig</maml:name> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Name</maml:name> + <maml:description> + <maml:para>The name of the Subnet.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue)" position="named"> + <maml:name>VirtualNetwork</maml:name> + <maml:description> + <maml:para>The Virtual Network containing the Subnet.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">PSVirtualNetwork</command:parameterValue> + </command:parameter> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>AddressPrefix</maml:name> <maml:description> <maml:para>The IP range covered by this Subnet.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> - <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"> - <maml:name>DnsServer</maml:name> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>NetworkSecurityGroupId</maml:name> <maml:description> - <maml:para>The DNS Servers to be used for performing DNS lookups from this Subnet</maml:para> + <maml:para>A reference to a Network Security Group containing ACLs that will apply to this Subnet.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="true">List`1[String]</command:parameterValue> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> </command:parameter> </command:syntaxItem> </command:syntax> @@ -7796,7 +10786,7 @@ <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue)" position="named"> <maml:name>VirtualNetwork</maml:name> <maml:description> - <maml:para>The Virtual Network containing the Subnet</maml:para> + <maml:para>The Virtual Network containing the Subnet.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">PSVirtualNetwork</command:parameterValue> <dev:type> @@ -7805,7 +10795,7 @@ </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>AddressPrefix</maml:name> <maml:description> <maml:para>The IP range covered by this Subnet.</maml:para> @@ -7817,14 +10807,50 @@ </dev:type> <dev:defaultValue></dev:defaultValue> </command:parameter> - <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="named"> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>NetworkSecurityGroup</maml:name> + <maml:description> + <maml:para>The Network Security Group object containing ACLs that will apply to this Subnet.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">PSNetworkSecurityGroup</command:parameterValue> + <dev:type> + <maml:name>PSNetworkSecurityGroup</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> + <maml:name>Profile</maml:name> + <maml:description> + <maml:para /> + </maml:description> + <command:parameterValue required="true" variableLength="false">AzureProfile</command:parameterValue> + <dev:type> + <maml:name>AzureProfile</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named"> + <maml:name>NetworkSecurityGroupId</maml:name> + <maml:description> + <maml:para>A reference to a Network Security Group containing ACLs that will apply to this Subnet.</maml:para> + </maml:description> + <command:parameterValue required="true" variableLength="false">String</command:parameterValue> + <dev:type> + <maml:name>String</maml:name> + <maml:uri/> + </dev:type> + <dev:defaultValue></dev:defaultValue> + </command:parameter> + <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named"> <maml:name>DnsServer</maml:name> <maml:description> - <maml:para>The DNS Servers to be used for performing DNS lookups from this Subnet</maml:para> + <maml:para>The Dns servers to be used for performing Dns lookups from this Subnet.</maml:para> </maml:description> - <command:parameterValue required="true" variableLength="true">List`1[String]</command:parameterValue> + <command:parameterValue required="true" variableLength="false">list`1[string]</command:parameterValue> <dev:type> - <maml:name>List`1[String]</maml:name> + <maml:name>list`1[string]</maml:name> <maml:uri/> </dev:type> <dev:defaultValue></dev:defaultValue> @@ -7834,32 +10860,34 @@ <command:inputType> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> + <maml:description> + <maml:para> +</maml:para> + </maml:description> </command:inputType> </command:inputTypes> <command:returnValues> <command:returnValue> <dev:type> <maml:name></maml:name> - <maml:uri/> - <maml:description> - <maml:para></maml:para> - </maml:description> + <maml:uri></maml:uri> + <maml:description/> </dev:type> - <maml:description></maml:description> - </command:returnValue> - </command:returnValues> + <maml:description> + <maml:para> +</maml:para> + </maml:description> + </command:returnValue> + </command:returnValues> <command:terminatingErrors></command:terminatingErrors> <command:nonTerminatingErrors></command:nonTerminatingErrors> <maml:alertSet> <maml:title></maml:title> <maml:alert> - <maml:para></maml:para> + <maml:para /> </maml:alert> </maml:alertSet> <command:examples> diff --git a/src/ResourceManager/Network/Commands.Network/Microsoft.Azure.Commands.Network.format.ps1xml b/src/ResourceManager/Network/Commands.Network/Microsoft.Azure.Commands.Network.format.ps1xml index 2e120166a211..4a811a7bbb56 100644 --- a/src/ResourceManager/Network/Commands.Network/Microsoft.Azure.Commands.Network.format.ps1xml +++ b/src/ResourceManager/Network/Commands.Network/Microsoft.Azure.Commands.Network.format.ps1xml @@ -44,11 +44,11 @@ </ListItem> <ListItem> <Label>DhcpOptions</Label> - <PropertyName>DhcpOptionsTest</PropertyName> + <PropertyName>DhcpOptionsText</PropertyName> </ListItem> <ListItem> <Label>NetworkInterfaces</Label> - <PropertyName>NetworkInterfacesTest</PropertyName> + <PropertyName>NetworkInterfacesText</PropertyName> </ListItem> <ListItem> <Label>Subnets</Label> diff --git a/src/ResourceManager/Network/Commands.Network/Microsoft.Azure.Commands.NetworkResourceProvider.dll-Help.psd1 b/src/ResourceManager/Network/Commands.Network/Microsoft.Azure.Commands.NetworkResourceProvider.dll-Help.psd1 deleted file mode 100644 index 900be9be3a6b..000000000000 --- a/src/ResourceManager/Network/Commands.Network/Microsoft.Azure.Commands.NetworkResourceProvider.dll-Help.psd1 +++ /dev/null @@ -1,87 +0,0 @@ -# -# Module manifest for module 'Microsoft.Azure.Commands.NetworkResourceProvider' -# -# Generated by: Microsoft Corporation -# -# Generated on: 12/13/2014 -# - -@{ - -# Version number of this module. -ModuleVersion = '0.8.12' - -# ID used to uniquely identify this module -GUID = '98CFD96B-A6BC-4F15-AE2C-603FC2B58981' - -# Author of this module -Author = 'Microsoft Corporation' - -# Company or vendor of this module -CompanyName = 'Microsoft Corporation' - -# Copyright statement for this module -Copyright = ' Microsoft Corporation. All rights reserved.' - -# Description of the functionality provided by this module -Description = '' - -# Minimum version of the Windows PowerShell engine required by this module -PowerShellVersion = '3.0' - -# Name of the Windows PowerShell host required by this module -PowerShellHostName = '' - -# Minimum version of the Windows PowerShell host required by this module -PowerShellHostVersion = '' - -# Minimum version of the .NET Framework required by this module -DotNetFrameworkVersion = '4.0' - -# Minimum version of the common language runtime (CLR) required by this module -CLRVersion='4.0' - -# Processor architecture (None, X86, Amd64, IA64) required by this module -ProcessorArchitecture = 'None' - -# Modules that must be imported into the global environment prior to importing this module -RequiredModules = @() - -# Assemblies that must be loaded prior to importing this module -RequiredAssemblies = @() - -# Script files (.ps1) that are run in the caller's environment prior to importing this module -ScriptsToProcess = @() - -# Format files (.ps1xml) to be loaded when importing this module -FormatsToProcess = @( - '.\Microsoft.Azure.Commands.NetworkResourceProvider.format.ps1xml' -) - -# Modules to import as nested modules of the module specified in ModuleToProcess -NestedModules = @( - '..\..\..\Package\Debug\ResourceManager\AzureResourceManager\NetworkResourceProvider\Microsoft.Azure.Commands.NetworkResourceProvider.dll' -) - -# Functions to export from this module -FunctionsToExport = '*' - -# Cmdlets to export from this module -CmdletsToExport = '*' - -# Variables to export from this module -VariablesToExport = '*' - -# Aliases to export from this module -AliasesToExport = @() - -# List of all modules packaged with this module -ModuleList = @() - -# List of all files packaged with this module -FileList = @() - -# Private data to pass to the module specified in ModuleToProcess -PrivateData = '' - -} diff --git a/src/ResourceManager/Network/Commands.Network/VirtualNetwork/VirtualNetworkBaseCmdlet.cs b/src/ResourceManager/Network/Commands.Network/VirtualNetwork/VirtualNetworkBaseCmdlet.cs index 39195c74ef7d..e6e3887eee38 100644 --- a/src/ResourceManager/Network/Commands.Network/VirtualNetwork/VirtualNetworkBaseCmdlet.cs +++ b/src/ResourceManager/Network/Commands.Network/VirtualNetwork/VirtualNetworkBaseCmdlet.cs @@ -64,6 +64,11 @@ public PSVirtualNetwork GetVirtualNetwork(string resourceGroupName, string name) virtualNetwork.Tag = TagsConversionHelper.CreateTagHashtable(getNetworkInterfaceResponse.VirtualNetwork.Tags); + if (virtualNetwork.DhcpOptions == null) + { + virtualNetwork.DhcpOptions = new PSDhcpOptions(); + } + return virtualNetwork; } diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/Commands.Sql.Test.csproj b/src/ResourceManager/Sql/Commands.Sql.Test/Commands.Sql.Test.csproj index c9a813166d92..c575dcdc9db0 100644 --- a/src/ResourceManager/Sql/Commands.Sql.Test/Commands.Sql.Test.csproj +++ b/src/ResourceManager/Sql/Commands.Sql.Test/Commands.Sql.Test.csproj @@ -319,6 +319,9 @@ <None Include="SessionRecords\Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ElasticPoolCrudTests\TestElasticPoolGet.json"> <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> </None> + <None Include="SessionRecords\Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ElasticPoolCrudTests\TestElasticPoolMetricGet.json"> + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> + </None> <None Include="SessionRecords\Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ElasticPoolCrudTests\TestElasticPoolRemove.json"> <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> </None> diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/ElasticPoolCrudTests.cs b/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/ElasticPoolCrudTests.cs index 2ba85852f20b..3b5b030343c4 100644 --- a/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/ElasticPoolCrudTests.cs +++ b/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/ElasticPoolCrudTests.cs @@ -41,6 +41,13 @@ public void TestElasticPoolGet() RunPowerShellTest("Test-GetElasticPool"); } + [Fact] + [Trait(Category.Sql, Category.CheckIn)] + public void TestElasticPoolMetricGet() + { + RunPowerShellTest("Test-GetElasticPoolMetric"); + } + [Fact] [Trait(Category.Sql, Category.CheckIn)] public void TestElasticPoolRemove() diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/ElasticPoolCrudTests.ps1 b/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/ElasticPoolCrudTests.ps1 index 167ff8d5fde3..c6ed4edc81a0 100644 --- a/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/ElasticPoolCrudTests.ps1 +++ b/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/ElasticPoolCrudTests.ps1 @@ -151,6 +151,31 @@ function Test-GetElasticPool } } +<# + .SYNOPSIS + Tests getting an elastic pool metric +#> +function Test-GetElasticPoolMetric +{ + # This test requires that an elastic pool has been created and has metrics ready + # To prevent requiring putting something like a Sleep(10 minutes) in the code + # this test requires the server/elastic pool be pre-created with metrics data available. + + # Setup and retrieve the existing pool + $rgName = "test-group" + $serverName = "groupserver1" + $elasticPoolName = "testpool2" + + $ep1 = Get-AzureSqlElasticPool -ServerName $serverName -ResourceGroupName $rgName ` + -ElasticPoolName $elasticPoolName + Assert-NotNull $ep1 + + # Get pool metrics with all values + $metrics = $ep1 | Get-Metrics -TimeGrain "0:5:0" -StartTime "2015-04-22T16:00:00Z" -EndTime "2015-04-22T17:00:00Z" + Assert-NotNull $metrics + Assert-True { $metrics.Count -gt 0 } +} + <# .SYNOPSIS diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ElasticPoolCrudTests/TestElasticPoolMetricGet.json b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ElasticPoolCrudTests/TestElasticPoolMetricGet.json new file mode 100644 index 000000000000..edeeb159d069 --- /dev/null +++ b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ElasticPoolCrudTests/TestElasticPoolMetricGet.json @@ -0,0 +1,188 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/test-group/providers/Microsoft.Sql/servers/groupserver1/elasticPools/testpool2?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL3Rlc3QtZ3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9ncm91cHNlcnZlcjEvZWxhc3RpY1Bvb2xzL3Rlc3Rwb29sMj9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "9a369779-b9ed-4bc8-8bad-3d3d445c9ef4" + ] + }, + "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/test-group/providers/Microsoft.Sql/servers/groupserver1/elasticPools/testpool2\",\r\n \"name\": \"testpool2\",\r\n \"type\": \"Microsoft.Sql/servers/elasticPools\",\r\n \"location\": \"Japan East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"creationDate\": \"2015-04-21T22:41:37.77\",\r\n \"edition\": \"Standard\",\r\n \"state\": \"Ready\",\r\n \"dtu\": 200,\r\n \"databaseDtuMin\": 0,\r\n \"databaseDtuMax\": 100,\r\n \"storageMB\": 204800\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "426" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "27b29ab9-53ab-4afd-b4b3-f8b4a87d88d1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31997" + ], + "x-ms-correlation-request-id": [ + "e7763038-0740-48cf-819e-6ae015473398" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150422T182240Z:e7763038-0740-48cf-819e-6ae015473398" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 18:22:39 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/%2Fsubscriptions%2F7bc8d82a-e704-45b1-8049-5a971ce10ce2%2FresourceGroups%2Ftest-group%2Fproviders%2FMicrosoft.Sql%2Fservers%2Fgroupserver1%2FelasticPools%2Ftestpool2/metricDefinitions?api-version=2014-04-01&$filter=", + "EncodedRequestUri": "LyUyRnN1YnNjcmlwdGlvbnMlMkY3YmM4ZDgyYS1lNzA0LTQ1YjEtODA0OS01YTk3MWNlMTBjZTIlMkZyZXNvdXJjZUdyb3VwcyUyRnRlc3QtZ3JvdXAlMkZwcm92aWRlcnMlMkZNaWNyb3NvZnQuU3FsJTJGc2VydmVycyUyRmdyb3Vwc2VydmVyMSUyRmVsYXN0aWNQb29scyUyRnRlc3Rwb29sMi9tZXRyaWNEZWZpbml0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxJiRmaWx0ZXI9", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json" + ], + "x-ms-version": [ + "2014-04-01" + ], + "User-Agent": [ + "Microsoft.Azure.Insights.InsightsClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": {\r\n \"value\": \"cpu_percent\",\r\n \"localizedValue\": \"CPU percentage\"\r\n },\r\n \"unit\": \"Percent\",\r\n \"primaryAggregationType\": \"Average\",\r\n \"resourceUri\": null,\r\n \"metricAvailabilities\": [\r\n {\r\n \"timeGrain\": \"PT5M\",\r\n \"retention\": \"PT1H\"\r\n },\r\n {\r\n \"timeGrain\": \"PT1H\",\r\n \"retention\": \"P1D\"\r\n },\r\n {\r\n \"timeGrain\": \"P1D\",\r\n \"retention\": \"P7D\"\r\n },\r\n {\r\n \"timeGrain\": \"P1D\",\r\n \"retention\": \"P14D\"\r\n }\r\n ],\r\n \"properties\": []\r\n },\r\n {\r\n \"name\": {\r\n \"value\": \"physical_data_read_percent\",\r\n \"localizedValue\": \"Data IO percentage\"\r\n },\r\n \"unit\": \"Percent\",\r\n \"primaryAggregationType\": \"Average\",\r\n \"resourceUri\": null,\r\n \"metricAvailabilities\": [\r\n {\r\n \"timeGrain\": \"PT5M\",\r\n \"retention\": \"PT1H\"\r\n },\r\n {\r\n \"timeGrain\": \"PT1H\",\r\n \"retention\": \"P1D\"\r\n },\r\n {\r\n \"timeGrain\": \"P1D\",\r\n \"retention\": \"P7D\"\r\n },\r\n {\r\n \"timeGrain\": \"P1D\",\r\n \"retention\": \"P14D\"\r\n }\r\n ],\r\n \"properties\": []\r\n },\r\n {\r\n \"name\": {\r\n \"value\": \"log_write_percent\",\r\n \"localizedValue\": \"Log IO percentage\"\r\n },\r\n \"unit\": \"Percent\",\r\n \"primaryAggregationType\": \"Average\",\r\n \"resourceUri\": null,\r\n \"metricAvailabilities\": [\r\n {\r\n \"timeGrain\": \"PT5M\",\r\n \"retention\": \"PT1H\"\r\n },\r\n {\r\n \"timeGrain\": \"PT1H\",\r\n \"retention\": \"P1D\"\r\n },\r\n {\r\n \"timeGrain\": \"P1D\",\r\n \"retention\": \"P7D\"\r\n },\r\n {\r\n \"timeGrain\": \"P1D\",\r\n \"retention\": \"P14D\"\r\n }\r\n ],\r\n \"properties\": []\r\n },\r\n {\r\n \"name\": {\r\n \"value\": \"dtu_consumption_percent\",\r\n \"localizedValue\": \"DTU percentage\"\r\n },\r\n \"unit\": \"Percent\",\r\n \"primaryAggregationType\": \"Average\",\r\n \"resourceUri\": null,\r\n \"metricAvailabilities\": [\r\n {\r\n \"timeGrain\": \"PT5M\",\r\n \"retention\": \"PT1H\"\r\n },\r\n {\r\n \"timeGrain\": \"PT1H\",\r\n \"retention\": \"P1D\"\r\n },\r\n {\r\n \"timeGrain\": \"P1D\",\r\n \"retention\": \"P7D\"\r\n },\r\n {\r\n \"timeGrain\": \"P1D\",\r\n \"retention\": \"P14D\"\r\n }\r\n ],\r\n \"properties\": []\r\n },\r\n {\r\n \"name\": {\r\n \"value\": \"storage_percent\",\r\n \"localizedValue\": \"Storage percentage\"\r\n },\r\n \"unit\": \"Percent\",\r\n \"primaryAggregationType\": \"Average\",\r\n \"resourceUri\": null,\r\n \"metricAvailabilities\": [\r\n {\r\n \"timeGrain\": \"PT5M\",\r\n \"retention\": \"PT1H\"\r\n },\r\n {\r\n \"timeGrain\": \"PT1H\",\r\n \"retention\": \"P1D\"\r\n },\r\n {\r\n \"timeGrain\": \"P1D\",\r\n \"retention\": \"P7D\"\r\n },\r\n {\r\n \"timeGrain\": \"P1D\",\r\n \"retention\": \"P14D\"\r\n }\r\n ],\r\n \"properties\": []\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1734" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "01428b2f-a365-4434-bfac-c882f7a97d50" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31998" + ], + "x-ms-correlation-request-id": [ + "fc6c3110-91c5-410c-8d72-3dfdf7d04193" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150422T182244Z:fc6c3110-91c5-410c-8d72-3dfdf7d04193" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 18:22:43 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/%2Fsubscriptions%2F7bc8d82a-e704-45b1-8049-5a971ce10ce2%2FresourceGroups%2Ftest-group%2Fproviders%2FMicrosoft.Sql%2Fservers%2Fgroupserver1%2FelasticPools%2Ftestpool2/metrics?api-version=2014-04-01&$filter=(name.value%20eq%20'cpu_percent'%20or%20name.value%20eq%20'physical_data_read_percent'%20or%20name.value%20eq%20'log_write_percent'%20or%20name.value%20eq%20'dtu_consumption_percent'%20or%20name.value%20eq%20'storage_percent')%20and%20timeGrain%20eq%20duration'PT5M'%20and%20startTime%20eq%202015-04-22T16:00:00.0000000Z%20and%20endTime%20eq%202015-04-22T17:00:00.0000000Z", + "EncodedRequestUri": "LyUyRnN1YnNjcmlwdGlvbnMlMkY3YmM4ZDgyYS1lNzA0LTQ1YjEtODA0OS01YTk3MWNlMTBjZTIlMkZyZXNvdXJjZUdyb3VwcyUyRnRlc3QtZ3JvdXAlMkZwcm92aWRlcnMlMkZNaWNyb3NvZnQuU3FsJTJGc2VydmVycyUyRmdyb3Vwc2VydmVyMSUyRmVsYXN0aWNQb29scyUyRnRlc3Rwb29sMi9tZXRyaWNzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEmJGZpbHRlcj0lMjhuYW1lLnZhbHVlJTIwZXElMjAlMjdjcHVfcGVyY2VudCUyNyUyMG9yJTIwbmFtZS52YWx1ZSUyMGVxJTIwJTI3cGh5c2ljYWxfZGF0YV9yZWFkX3BlcmNlbnQlMjclMjBvciUyMG5hbWUudmFsdWUlMjBlcSUyMCUyN2xvZ193cml0ZV9wZXJjZW50JTI3JTIwb3IlMjBuYW1lLnZhbHVlJTIwZXElMjAlMjdkdHVfY29uc3VtcHRpb25fcGVyY2VudCUyNyUyMG9yJTIwbmFtZS52YWx1ZSUyMGVxJTIwJTI3c3RvcmFnZV9wZXJjZW50JTI3JTI5JTIwYW5kJTIwdGltZUdyYWluJTIwZXElMjBkdXJhdGlvbiUyN1BUNU0lMjclMjBhbmQlMjBzdGFydFRpbWUlMjBlcSUyMDIwMTUtMDQtMjJUMTYlM0EwMCUzQTAwLjAwMDAwMDBaJTIwYW5kJTIwZW5kVGltZSUyMGVxJTIwMjAxNS0wNC0yMlQxNyUzQTAwJTNBMDAuMDAwMDAwMFo=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/json" + ], + "x-ms-version": [ + "2014-04-01" + ], + "User-Agent": [ + "Microsoft.Azure.Insights.InsightsClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": {\r\n \"value\": \"cpu_percent\",\r\n \"localizedValue\": \"CPU percentage\"\r\n },\r\n \"unit\": \"Percent\",\r\n \"timeGrain\": \"PT5M\",\r\n \"startTime\": \"2015-04-22T16:00:00Z\",\r\n \"endTime\": \"2015-04-22T17:00:00Z\",\r\n \"metricValues\": [\r\n {\r\n \"timestamp\": \"2015-04-22T17:00:01Z\",\r\n \"average\": 0.0,\r\n \"minimum\": 0.0,\r\n \"maximum\": 0.0,\r\n \"total\": 0.0,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:55:01Z\",\r\n \"average\": 0.0,\r\n \"minimum\": 0.0,\r\n \"maximum\": 0.0,\r\n \"total\": 0.0,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:50:01Z\",\r\n \"average\": 0.0,\r\n \"minimum\": 0.0,\r\n \"maximum\": 0.0,\r\n \"total\": 0.0,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:45:01Z\",\r\n \"average\": 0.0,\r\n \"minimum\": 0.0,\r\n \"maximum\": 0.0,\r\n \"total\": 0.0,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:40:01Z\",\r\n \"average\": 0.0,\r\n \"minimum\": 0.0,\r\n \"maximum\": 0.0,\r\n \"total\": 0.0,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:35:01Z\",\r\n \"average\": 0.0,\r\n \"minimum\": 0.0,\r\n \"maximum\": 0.0,\r\n \"total\": 0.0,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:30:01Z\",\r\n \"average\": 0.0,\r\n \"minimum\": 0.0,\r\n \"maximum\": 0.0,\r\n \"total\": 0.0,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:25:01Z\",\r\n \"average\": 0.0,\r\n \"minimum\": 0.0,\r\n \"maximum\": 0.0,\r\n \"total\": 0.0,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:20:01Z\",\r\n \"average\": 0.0,\r\n \"minimum\": 0.0,\r\n \"maximum\": 0.0,\r\n \"total\": 0.0,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:15:01Z\",\r\n \"average\": 0.0,\r\n \"minimum\": 0.0,\r\n \"maximum\": 0.0,\r\n \"total\": 0.0,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:10:01Z\",\r\n \"average\": 0.0,\r\n \"minimum\": 0.0,\r\n \"maximum\": 0.0,\r\n \"total\": 0.0,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:05:01Z\",\r\n \"average\": 0.0,\r\n \"minimum\": 0.0,\r\n \"maximum\": 0.0,\r\n \"total\": 0.0,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:00:01Z\",\r\n \"average\": 0.0,\r\n \"minimum\": 0.0,\r\n \"maximum\": 0.0,\r\n \"total\": 0.0,\r\n \"count\": 1,\r\n \"properties\": []\r\n }\r\n ],\r\n \"resourceId\": null,\r\n \"properties\": []\r\n },\r\n {\r\n \"name\": {\r\n \"value\": \"physical_data_read_percent\",\r\n \"localizedValue\": \"Data IO percentage\"\r\n },\r\n \"unit\": \"Percent\",\r\n \"timeGrain\": \"PT5M\",\r\n \"startTime\": \"2015-04-22T16:00:00Z\",\r\n \"endTime\": \"2015-04-22T17:00:00Z\",\r\n \"metricValues\": [\r\n {\r\n \"timestamp\": \"2015-04-22T17:00:01Z\",\r\n \"average\": 0.0,\r\n \"minimum\": 0.0,\r\n \"maximum\": 0.0,\r\n \"total\": 0.0,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:55:01Z\",\r\n \"average\": 0.0,\r\n \"minimum\": 0.0,\r\n \"maximum\": 0.0,\r\n \"total\": 0.0,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:50:01Z\",\r\n \"average\": 0.0,\r\n \"minimum\": 0.0,\r\n \"maximum\": 0.0,\r\n \"total\": 0.0,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:45:01Z\",\r\n \"average\": 0.0,\r\n \"minimum\": 0.0,\r\n \"maximum\": 0.0,\r\n \"total\": 0.0,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:40:01Z\",\r\n \"average\": 0.0,\r\n \"minimum\": 0.0,\r\n \"maximum\": 0.0,\r\n \"total\": 0.0,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:35:01Z\",\r\n \"average\": 0.0,\r\n \"minimum\": 0.0,\r\n \"maximum\": 0.0,\r\n \"total\": 0.0,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:30:01Z\",\r\n \"average\": 0.0,\r\n \"minimum\": 0.0,\r\n \"maximum\": 0.0,\r\n \"total\": 0.0,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:25:01Z\",\r\n \"average\": 0.0,\r\n \"minimum\": 0.0,\r\n \"maximum\": 0.0,\r\n \"total\": 0.0,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:20:01Z\",\r\n \"average\": 0.0,\r\n \"minimum\": 0.0,\r\n \"maximum\": 0.0,\r\n \"total\": 0.0,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:15:01Z\",\r\n \"average\": 0.0,\r\n \"minimum\": 0.0,\r\n \"maximum\": 0.0,\r\n \"total\": 0.0,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:10:01Z\",\r\n \"average\": 0.0,\r\n \"minimum\": 0.0,\r\n \"maximum\": 0.0,\r\n \"total\": 0.0,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:05:01Z\",\r\n \"average\": 0.0,\r\n \"minimum\": 0.0,\r\n \"maximum\": 0.0,\r\n \"total\": 0.0,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:00:01Z\",\r\n \"average\": 0.0,\r\n \"minimum\": 0.0,\r\n \"maximum\": 0.0,\r\n \"total\": 0.0,\r\n \"count\": 1,\r\n \"properties\": []\r\n }\r\n ],\r\n \"resourceId\": null,\r\n \"properties\": []\r\n },\r\n {\r\n \"name\": {\r\n \"value\": \"log_write_percent\",\r\n \"localizedValue\": \"Log IO percentage\"\r\n },\r\n \"unit\": \"Percent\",\r\n \"timeGrain\": \"PT5M\",\r\n \"startTime\": \"2015-04-22T16:00:00Z\",\r\n \"endTime\": \"2015-04-22T17:00:00Z\",\r\n \"metricValues\": [\r\n {\r\n \"timestamp\": \"2015-04-22T17:00:01Z\",\r\n \"average\": 0.0,\r\n \"minimum\": 0.0,\r\n \"maximum\": 0.0,\r\n \"total\": 0.0,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:55:01Z\",\r\n \"average\": 0.0,\r\n \"minimum\": 0.0,\r\n \"maximum\": 0.0,\r\n \"total\": 0.0,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:50:01Z\",\r\n \"average\": 0.0,\r\n \"minimum\": 0.0,\r\n \"maximum\": 0.0,\r\n \"total\": 0.0,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:45:01Z\",\r\n \"average\": 0.0,\r\n \"minimum\": 0.0,\r\n \"maximum\": 0.0,\r\n \"total\": 0.0,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:40:01Z\",\r\n \"average\": 0.0,\r\n \"minimum\": 0.0,\r\n \"maximum\": 0.0,\r\n \"total\": 0.0,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:35:01Z\",\r\n \"average\": 0.0,\r\n \"minimum\": 0.0,\r\n \"maximum\": 0.0,\r\n \"total\": 0.0,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:30:01Z\",\r\n \"average\": 0.0,\r\n \"minimum\": 0.0,\r\n \"maximum\": 0.0,\r\n \"total\": 0.0,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:25:01Z\",\r\n \"average\": 0.0,\r\n \"minimum\": 0.0,\r\n \"maximum\": 0.0,\r\n \"total\": 0.0,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:20:01Z\",\r\n \"average\": 0.0,\r\n \"minimum\": 0.0,\r\n \"maximum\": 0.0,\r\n \"total\": 0.0,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:15:01Z\",\r\n \"average\": 0.0,\r\n \"minimum\": 0.0,\r\n \"maximum\": 0.0,\r\n \"total\": 0.0,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:10:01Z\",\r\n \"average\": 0.0,\r\n \"minimum\": 0.0,\r\n \"maximum\": 0.0,\r\n \"total\": 0.0,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:05:01Z\",\r\n \"average\": 0.0,\r\n \"minimum\": 0.0,\r\n \"maximum\": 0.0,\r\n \"total\": 0.0,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:00:01Z\",\r\n \"average\": 0.0,\r\n \"minimum\": 0.0,\r\n \"maximum\": 0.0,\r\n \"total\": 0.0,\r\n \"count\": 1,\r\n \"properties\": []\r\n }\r\n ],\r\n \"resourceId\": null,\r\n \"properties\": []\r\n },\r\n {\r\n \"name\": {\r\n \"value\": \"dtu_consumption_percent\",\r\n \"localizedValue\": \"DTU percentage\"\r\n },\r\n \"unit\": \"Percent\",\r\n \"timeGrain\": \"PT5M\",\r\n \"startTime\": \"2015-04-22T16:00:00Z\",\r\n \"endTime\": \"2015-04-22T17:00:00Z\",\r\n \"metricValues\": [\r\n {\r\n \"timestamp\": \"2015-04-22T17:00:01Z\",\r\n \"average\": 0.0,\r\n \"minimum\": 0.0,\r\n \"maximum\": 0.0,\r\n \"total\": 0.0,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:55:01Z\",\r\n \"average\": 0.0,\r\n \"minimum\": 0.0,\r\n \"maximum\": 0.0,\r\n \"total\": 0.0,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:50:01Z\",\r\n \"average\": 0.0,\r\n \"minimum\": 0.0,\r\n \"maximum\": 0.0,\r\n \"total\": 0.0,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:45:01Z\",\r\n \"average\": 0.0,\r\n \"minimum\": 0.0,\r\n \"maximum\": 0.0,\r\n \"total\": 0.0,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:40:01Z\",\r\n \"average\": 0.0,\r\n \"minimum\": 0.0,\r\n \"maximum\": 0.0,\r\n \"total\": 0.0,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:35:01Z\",\r\n \"average\": 0.0,\r\n \"minimum\": 0.0,\r\n \"maximum\": 0.0,\r\n \"total\": 0.0,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:30:01Z\",\r\n \"average\": 0.0,\r\n \"minimum\": 0.0,\r\n \"maximum\": 0.0,\r\n \"total\": 0.0,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:25:01Z\",\r\n \"average\": 0.0,\r\n \"minimum\": 0.0,\r\n \"maximum\": 0.0,\r\n \"total\": 0.0,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:20:01Z\",\r\n \"average\": 0.0,\r\n \"minimum\": 0.0,\r\n \"maximum\": 0.0,\r\n \"total\": 0.0,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:15:01Z\",\r\n \"average\": 0.0,\r\n \"minimum\": 0.0,\r\n \"maximum\": 0.0,\r\n \"total\": 0.0,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:10:01Z\",\r\n \"average\": 0.0,\r\n \"minimum\": 0.0,\r\n \"maximum\": 0.0,\r\n \"total\": 0.0,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:05:01Z\",\r\n \"average\": 0.0,\r\n \"minimum\": 0.0,\r\n \"maximum\": 0.0,\r\n \"total\": 0.0,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:00:01Z\",\r\n \"average\": 0.0,\r\n \"minimum\": 0.0,\r\n \"maximum\": 0.0,\r\n \"total\": 0.0,\r\n \"count\": 1,\r\n \"properties\": []\r\n }\r\n ],\r\n \"resourceId\": null,\r\n \"properties\": []\r\n },\r\n {\r\n \"name\": {\r\n \"value\": \"storage_percent\",\r\n \"localizedValue\": \"Storage percentage\"\r\n },\r\n \"unit\": \"Percent\",\r\n \"timeGrain\": \"PT5M\",\r\n \"startTime\": \"2015-04-22T16:00:00Z\",\r\n \"endTime\": \"2015-04-22T17:00:00Z\",\r\n \"metricValues\": [\r\n {\r\n \"timestamp\": \"2015-04-22T17:00:01Z\",\r\n \"average\": 0.00131226,\r\n \"minimum\": 0.00131226,\r\n \"maximum\": 0.00131226,\r\n \"total\": 0.00131226,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:55:01Z\",\r\n \"average\": 0.00131226,\r\n \"minimum\": 0.00131226,\r\n \"maximum\": 0.00131226,\r\n \"total\": 0.00131226,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:50:01Z\",\r\n \"average\": 0.00131226,\r\n \"minimum\": 0.00131226,\r\n \"maximum\": 0.00131226,\r\n \"total\": 0.00131226,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:45:01Z\",\r\n \"average\": 0.00131226,\r\n \"minimum\": 0.00131226,\r\n \"maximum\": 0.00131226,\r\n \"total\": 0.00131226,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:40:01Z\",\r\n \"average\": 0.00131226,\r\n \"minimum\": 0.00131226,\r\n \"maximum\": 0.00131226,\r\n \"total\": 0.00131226,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:35:01Z\",\r\n \"average\": 0.00131226,\r\n \"minimum\": 0.00131226,\r\n \"maximum\": 0.00131226,\r\n \"total\": 0.00131226,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:30:01Z\",\r\n \"average\": 0.00131226,\r\n \"minimum\": 0.00131226,\r\n \"maximum\": 0.00131226,\r\n \"total\": 0.00131226,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:25:01Z\",\r\n \"average\": 0.00131226,\r\n \"minimum\": 0.00131226,\r\n \"maximum\": 0.00131226,\r\n \"total\": 0.00131226,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:20:01Z\",\r\n \"average\": 0.00131226,\r\n \"minimum\": 0.00131226,\r\n \"maximum\": 0.00131226,\r\n \"total\": 0.00131226,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:15:01Z\",\r\n \"average\": 0.00131226,\r\n \"minimum\": 0.00131226,\r\n \"maximum\": 0.00131226,\r\n \"total\": 0.00131226,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:10:01Z\",\r\n \"average\": 0.00131226,\r\n \"minimum\": 0.00131226,\r\n \"maximum\": 0.00131226,\r\n \"total\": 0.00131226,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:05:01Z\",\r\n \"average\": 0.00131226,\r\n \"minimum\": 0.00131226,\r\n \"maximum\": 0.00131226,\r\n \"total\": 0.00131226,\r\n \"count\": 1,\r\n \"properties\": []\r\n },\r\n {\r\n \"timestamp\": \"2015-04-22T16:00:01Z\",\r\n \"average\": 0.00131226,\r\n \"minimum\": 0.00131226,\r\n \"maximum\": 0.00131226,\r\n \"total\": 0.00131226,\r\n \"count\": 1,\r\n \"properties\": []\r\n }\r\n ],\r\n \"resourceId\": null,\r\n \"properties\": []\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "9138" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "42cb45fe-8274-4e0c-a01b-447b9c77474b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "31997" + ], + "x-ms-correlation-request-id": [ + "cbdaaff9-431c-4e91-9b71-41898c442f2b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150422T182249Z:cbdaaff9-431c-4e91-9b71-41898c442f2b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 22 Apr 2015 18:22:48 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "7bc8d82a-e704-45b1-8049-5a971ce10ce2" + } +} \ No newline at end of file diff --git a/src/ResourceManager/Sql/Commands.Sql/Common/AzureSqlCmdletBase.cs b/src/ResourceManager/Sql/Commands.Sql/Common/AzureSqlCmdletBase.cs index 9d200de515d4..bb2621ba649d 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Common/AzureSqlCmdletBase.cs +++ b/src/ResourceManager/Sql/Commands.Sql/Common/AzureSqlCmdletBase.cs @@ -96,11 +96,17 @@ public override void ExecuteCmdlet() if(responseModel != null) { - if (WriteResult()) this.WriteObject(responseModel); + if (WriteResult()) + { + this.WriteObject(responseModel, true); + } } else { - if (WriteResult()) this.WriteObject(updatedModel); + if (WriteResult()) + { + this.WriteObject(updatedModel); + } } } } diff --git a/src/ResourceManager/Sql/Commands.Sql/Elastic Pools/Model/AzureSqlElasticPoolModel.cs b/src/ResourceManager/Sql/Commands.Sql/Elastic Pools/Model/AzureSqlElasticPoolModel.cs index a25bba496bb8..e94e7b0f8e61 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Elastic Pools/Model/AzureSqlElasticPoolModel.cs +++ b/src/ResourceManager/Sql/Commands.Sql/Elastic Pools/Model/AzureSqlElasticPoolModel.cs @@ -23,6 +23,11 @@ namespace Microsoft.Azure.Commands.Sql.ElasticPool.Model /// </summary> public class AzureSqlElasticPoolModel { + /// <summary> + /// Gets or sets the resource id for this resource + /// </summary> + public string ResourceId { get; set; } + /// <summary> /// Gets or sets the name of the resource group /// </summary> diff --git a/src/ResourceManager/Sql/Commands.Sql/Elastic Pools/Services/AzureSqlElasticPoolAdapter.cs b/src/ResourceManager/Sql/Commands.Sql/Elastic Pools/Services/AzureSqlElasticPoolAdapter.cs index 0cf90844367b..914109dc70ac 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Elastic Pools/Services/AzureSqlElasticPoolAdapter.cs +++ b/src/ResourceManager/Sql/Commands.Sql/Elastic Pools/Services/AzureSqlElasticPoolAdapter.cs @@ -268,6 +268,7 @@ private AzureSqlElasticPoolModel CreateElasticPoolModelFromResponse(string resou { AzureSqlElasticPoolModel model = new AzureSqlElasticPoolModel(); + model.ResourceId = pool.Id; model.ResourceGroupName = resourceGroup; model.ServerName = serverName; model.ElasticPoolName = pool.Name; diff --git a/src/ResourceManager/Sql/Commands.Sql/Elastic Pools/Services/AzureSqlElasticPoolCommunicator.cs b/src/ResourceManager/Sql/Commands.Sql/Elastic Pools/Services/AzureSqlElasticPoolCommunicator.cs index 33bcae054a48..d7ac36caba4d 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Elastic Pools/Services/AzureSqlElasticPoolCommunicator.cs +++ b/src/ResourceManager/Sql/Commands.Sql/Elastic Pools/Services/AzureSqlElasticPoolCommunicator.cs @@ -33,11 +33,11 @@ public class AzureSqlElasticPoolCommunicator /// The Sql client to be used by this end points communicator /// </summary> private static SqlManagementClient SqlClient { get; set; } - + /// <summary> /// Gets or set the Azure subscription /// </summary> - private static AzureSubscription Subscription {get ; set; } + private static AzureSubscription Subscription { get; set; } /// <summary> /// Gets or sets the Azure profile diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement/Microsoft.WindowsAzure.Commands.ServiceManagement.dll-Help.xml b/src/ServiceManagement/Compute/Commands.ServiceManagement/Microsoft.WindowsAzure.Commands.ServiceManagement.dll-Help.xml index 361b9947a695..e12c522bbbf5 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement/Microsoft.WindowsAzure.Commands.ServiceManagement.dll-Help.xml +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement/Microsoft.WindowsAzure.Commands.ServiceManagement.dll-Help.xml @@ -15204,11 +15204,12 @@ New-AzureDeployment -ServiceName $cloudSvc -Slot Production -Package $pkg -Confi Standard_ZRS Standard_GRS Standard_RAGRS + Premium_LRS If this parameter is not specified, a default value of Standard_GRS is used Note: - Standard_ZRS accounts cannot be changed to other account types, and vice versa.</maml:para> + Standard_ZRS or Premium_LRS accounts cannot be changed to other account types, and vice versa.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> @@ -15251,11 +15252,12 @@ New-AzureDeployment -ServiceName $cloudSvc -Slot Production -Package $pkg -Confi Standard_ZRS Standard_GRS Standard_RAGRS + Premium_LRS If this parameter is not specified, a default value of Standard_GRS is used Note: - Standard_ZRS accounts cannot be changed to other account types, and vice versa.</maml:para> + Standard_ZRS or Premium_LRS accounts cannot be changed to other account types, and vice versa.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> @@ -15318,11 +15320,12 @@ New-AzureDeployment -ServiceName $cloudSvc -Slot Production -Package $pkg -Confi Standard_ZRS Standard_GRS Standard_RAGRS + Premium_LRS If this parameter is not specified, a default value of Standard_GRS is used Note: - Standard_ZRS accounts cannot be changed to other account types, and vice versa.</maml:para> + Standard_ZRS or Premium_LRS accounts cannot be changed to other account types, and vice versa.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> @@ -27538,12 +27541,13 @@ PS C:\&gt; Set-AzureServiceAntimalwareExtension -ServiceName &quot;ContosoServic Standard_ZRS Standard_GRS Standard_RAGRS + Premium_LRS If this parameter is not specified, a default value of Standard_GRS is used Note: The GeoReplicationEnabled parameter functionality is the same as specifying Standard_GRS in Type parameter - Standard_ZRS accounts cannot be changed to other account types, and vice versa.</maml:para> + Standard_ZRS or Premium_LRS accounts cannot be changed to other account types, and vice versa.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> </command:parameter> @@ -27607,12 +27611,13 @@ PS C:\&gt; Set-AzureServiceAntimalwareExtension -ServiceName &quot;ContosoServic Standard_ZRS Standard_GRS Standard_RAGRS + Premium_LRS If this parameter is not specified, a default value of Standard_GRS is used Note: The GeoReplicationEnabled parameter functionality is the same as specifying Standard_GRS in Type parameter - Standard_ZRS accounts cannot be changed to other account types, and vice versa.</maml:para> + Standard_ZRS or Premium_LRS accounts cannot be changed to other account types, and vice versa.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> diff --git a/src/ServiceManagement/Services/Commands.Utilities/Azure.psd1 b/src/ServiceManagement/Services/Commands.Utilities/Azure.psd1 index 574480b5139b..7569888e1cd4 100644 --- a/src/ServiceManagement/Services/Commands.Utilities/Azure.psd1 +++ b/src/ServiceManagement/Services/Commands.Utilities/Azure.psd1 @@ -57,9 +57,11 @@ ScriptsToProcess = @() TypesToProcess = @( '.\Services\Microsoft.WindowsAzure.Commands.Websites.Types.ps1xml', '.\Sql\Microsoft.WindowsAzure.Commands.SqlDatabase.Types.ps1xml' - '.\Storage\Microsoft.WindowsAzure.Commands.Storage.Types.ps1xml' + '.\Storage\Microsoft.WindowsAzure.Commands.Storage.Types.ps1xml', + '.\StorSimple\Microsoft.WindowsAzure.Commands.StorSimple.Types.ps1xml' ) + # Format files (.ps1xml) to be loaded when importing this module FormatsToProcess = @( '.\Services\Microsoft.WindowsAzure.Commands.Websites.format.ps1xml', @@ -70,7 +72,8 @@ FormatsToProcess = @( '.\Services\Microsoft.WindowsAzure.Commands.Scheduler.format.ps1xml', '.\Compute\Microsoft.WindowsAzure.Commands.ServiceManagement.format.ps1xml', '.\Services\Microsoft.WindowsAzure.Commands.Profile.format.ps1xml', - '.\Network\Microsoft.WindowsAzure.Commands.ServiceManagement.Network.format.ps1xml' + '.\Network\Microsoft.WindowsAzure.Commands.ServiceManagement.Network.format.ps1xml', + '.\StorSimple\Microsoft.WindowsAzure.Commands.StorSimple.format.ps1xml' ) # Modules to import as nested modules of the module specified in ModuleToProcess @@ -154,7 +157,55 @@ AliasesToExport = @( 'Wait-AzureHDInsightJob', 'Get-AzureStorageContainerAcl', 'Start-CopyAzureStorageBlob', -'Stop-CopyAzureStorageBlob' +'Stop-CopyAzureStorageBlob', +'Get-SSAccessControlRecord', +'Get-SSDevice', +'Get-SSDeviceBackup', +'Get-SSDeviceBackupPolicy', +'Get-SSDeviceConnectedInitiator', +'Get-SSDeviceVolume', +'Get-SSDeviceVolumeContainer', +'Get-SSFailoverVolumeContainers', +'Get-SSJob', +'Get-SSResource', +'Get-SSResourceContext', +'Get-SSStorageAccountCredential', +'Get-SSTask', +'New-SSAccessControlRecord', +'New-SSDeviceBackupPolicy', +'New-SSDeviceBackupScheduleAddConfig', +'New-SSDeviceBackupScheduleUpdateConfig', +'New-SSDeviceVolume', +'New-SSDeviceVolumeContainer', +'New-SSInlineStorageAccountCredential', +'New-SSNetworkConfig', +'New-SSStorageAccountCredential', +'New-SSVirtualDevice', +'Remove-SSAccessControlRecord', +'Remove-SSDeviceBackup', +'Remove-SSDeviceBackupPolicy', +'Remove-SSDeviceVolume', +'Remove-SSDeviceVolumeContainer', +'Remove-SSStorageAccountCredential', +'Select-SSResource', +'Set-SSAccessControlRecord', +'Set-SSDevice', +'Set-SSDeviceBackupPolicy', +'Set-SSDeviceVolume', +'Set-SSStorageAccountCredential', +'Set-SSVirtualDevice', +'Start-SSBackupCloneJob', +'Start-SSDeviceBackupJob', +'Start-SSDeviceBackupRestoreJob', +'Start-SSDeviceFailoverJob', +'Stop-SSJob', +'Confirm-SSLegacyVolumeContainerStatus', +'Get-SSLegacyVolumeContainerConfirmStatus', +'Get-SSLegacyVolumeContainerMigrationPlan', +'Get-SSLegacyVolumeContainerStatus', +'Import-SSLegacyApplianceConfig', +'Import-SSLegacyVolumeContainer', +'Start-SSLegacyVolumeContainerMigrationPlan' ) # List of all modules packaged with this module diff --git a/src/ServiceManagement/Services/Commands.Utilities/ServiceManagementStartup.ps1 b/src/ServiceManagement/Services/Commands.Utilities/ServiceManagementStartup.ps1 index 675bb72ed3c0..7986ac50f7dd 100644 --- a/src/ServiceManagement/Services/Commands.Utilities/ServiceManagementStartup.ps1 +++ b/src/ServiceManagement/Services/Commands.Utilities/ServiceManagementStartup.ps1 @@ -60,7 +60,57 @@ $aliases = @{ # HDInsight aliases "Invoke-Hive" = "Invoke-AzureHDInsightHiveJob"; - "hive" = "Invoke-AzureHDInsightHiveJob" + "hive" = "Invoke-AzureHDInsightHiveJob"; + + #StorSimple aliases + "Get-SSAccessControlRecord" = "Get-AzureStorSimpleAccessControlRecord" ; + "Get-SSDevice"= "Get-AzureStorSimpleDevice" ; + "Get-SSDeviceBackup" = "Get-AzureStorSimpleDeviceBackup" ; + "Get-SSDeviceBackupPolicy" = "Get-AzureStorSimpleDeviceBackupPolicy" ; + "Get-SSDeviceConnectedInitiator" = "Get-AzureStorSimpleDeviceConnectedInitiator" ; + "Get-SSDeviceVolume" = "Get-AzureStorSimpleDeviceVolume" ; + "Get-SSDeviceVolumeContainer" = "Get-AzureStorSimpleDeviceVolumeContainer" ; + "Get-SSFailoverVolumeContainers" = "Get-AzureStorSimpleFailoverVolumeContainers" ; + "Get-SSJob" = "Get-AzureStorSimpleJob" ; + "Get-SSResource" = "Get-AzureStorSimpleResource" ; + "Get-SSResourceContext" = "Get-AzureStorSimpleResourceContext" ; + "Get-SSStorageAccountCredential" = "Get-AzureStorSimpleStorageAccountCredential" ; + "Get-SSTask" = "Get-AzureStorSimpleTask" ; + "New-SSAccessControlRecord" = "New-AzureStorSimpleAccessControlRecord" ; + "New-SSDeviceBackupPolicy" = "New-AzureStorSimpleDeviceBackupPolicy" ; + "New-SSDeviceBackupScheduleAddConfig" = "New-AzureStorSimpleDeviceBackupScheduleAddConfig" ; + "New-SSDeviceBackupScheduleUpdateConfig" = "New-AzureStorSimpleDeviceBackupScheduleUpdateConfig" ; + "New-SSDeviceVolume" = "New-AzureStorSimpleDeviceVolume"; + "New-SSDeviceVolumeContainer" = "New-AzureStorSimpleDeviceVolumeContainer" ; + "New-SSInlineStorageAccountCredential" = "New-AzureStorSimpleInlineStorageAccountCredential" ; + "New-SSNetworkConfig" = "New-AzureStorSimpleNetworkConfig"; + "New-SSStorageAccountCredential" = "New-AzureStorSimpleStorageAccountCredential"; + "New-SSVirtualDevice" = "New-AzureStorSimpleVirtualDevice"; + "Remove-SSAccessControlRecord" = "Remove-AzureStorSimpleAccessControlRecord"; + "Remove-SSDeviceBackup" = "Remove-AzureStorSimpleDeviceBackup"; + "Remove-SSDeviceBackupPolicy" = "Remove-AzureStorSimpleDeviceBackupPolicy"; + "Remove-SSDeviceVolume" = "Remove-AzureStorSimpleDeviceVolume"; + "Remove-SSDeviceVolumeContainer" = "Remove-AzureStorSimpleDeviceVolumeContainer"; + "Remove-SSStorageAccountCredential" = "Remove-AzureStorSimpleStorageAccountCredential"; + "Select-SSResource" = "Select-AzureStorSimpleResource"; + "Set-SSAccessControlRecord" = "Set-AzureStorSimpleAccessControlRecord"; + "Set-SSDevice" = "Set-AzureStorSimpleDevice"; + "Set-SSDeviceBackupPolicy" = "Set-AzureStorSimpleDeviceBackupPolicy"; + "Set-SSDeviceVolume" = "Set-AzureStorSimpleDeviceVolume"; + "Set-SSStorageAccountCredential" = "Set-AzureStorSimpleStorageAccountCredential"; + "Set-SSVirtualDevice" = "Set-AzureStorSimpleVirtualDevice"; + "Start-SSBackupCloneJob" = "Start-AzureStorSimpleBackupCloneJob"; + "Start-SSDeviceBackupJob" = "Start-AzureStorSimpleDeviceBackupJob"; + "Start-SSDeviceBackupRestoreJob" = "Start-AzureStorSimpleDeviceBackupRestoreJob"; + "Start-SSDeviceFailoverJob" = "Start-AzureStorSimpleDeviceFailoverJob"; + "Stop-SSJob" = "Stop-AzureStorSimpleJob"; + "Confirm-SSLegacyVolumeContainerStatus" = "Confirm-AzureStorSimpleLegacyVolumeContainerStatus"; + "Get-SSLegacyVolumeContainerConfirmStatus" = "Get-AzureStorSimpleLegacyVolumeContainerConfirmStatus"; + "Get-SSLegacyVolumeContainerMigrationPlan" = "Get-AzureStorSimpleLegacyVolumeContainerMigrationPlan"; + "Get-SSLegacyVolumeContainerStatus" = "Get-AzureStorSimpleLegacyVolumeContainerStatus"; + "Import-SSLegacyApplianceConfig" = "Import-AzureStorSimpleLegacyApplianceConfig"; + "Import-SSLegacyVolumeContainer" = "Import-AzureStorSimpleLegacyVolumeContainer"; + "Start-SSLegacyVolumeContainerMigrationPlan" = "Start-AzureStorSimpleLegacyVolumeContainerMigrationPlan"; } $aliases.GetEnumerator() | Select @{Name='Name'; Expression={$_.Key}}, @{Name='Value'; Expression={$_.Value}} | New-Alias -Description "AzureAlias" \ No newline at end of file diff --git a/src/ServiceManagement/StorSimple/Commands.StorSimple/Microsoft.WindowsAzure.Commands.StorSimple.dll-help.xml b/src/ServiceManagement/StorSimple/Commands.StorSimple/Microsoft.WindowsAzure.Commands.StorSimple.dll-help.xml index 5bb33304c8f7..416923af552a 100644 --- a/src/ServiceManagement/StorSimple/Commands.StorSimple/Microsoft.WindowsAzure.Commands.StorSimple.dll-help.xml +++ b/src/ServiceManagement/StorSimple/Commands.StorSimple/Microsoft.WindowsAzure.Commands.StorSimple.dll-help.xml @@ -1,7 +1,11 @@ <?xml version="1.0" encoding="utf-8" ?> <helpItems xmlns="http://msh" schema="maml"> -<maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">The following list contains links to the help topics for the Microsoft Azure StorSimple cmdlets.</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Name</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Description</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><maml:navigationLink><maml:linkText>Get-AzureStorSimpleAccessControlRecord</maml:linkText><maml:uri></maml:uri></maml:navigationLink></maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Gets access control records in a service configuration.</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><maml:navigationLink><maml:linkText>Get-AzureStorSimpleDevice</maml:linkText><maml:uri></maml:uri></maml:navigationLink></maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Gets devices attached to the resource.</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><maml:navigationLink><maml:linkText>Get-AzureStorSimpleDeviceBackup</maml:linkText><maml:uri></maml:uri></maml:navigationLink></maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Gets backups from a device.</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><maml:navigationLink><maml:linkText>Get-AzureStorSimpleDeviceBackupPolicy</maml:linkText><maml:uri></maml:uri></maml:navigationLink></maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Gets backup policies.</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><maml:navigationLink><maml:linkText>Get-AzureStorSimpleDeviceConnectedInitiator</maml:linkText><maml:uri></maml:uri></maml:navigationLink></maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Gets the iSCSI connections available for a StorSimple device.</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><maml:navigationLink><maml:linkText>Get-AzureStorSimpleDeviceVolume</maml:linkText><maml:uri></maml:uri></maml:navigationLink></maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Gets volumes on a device.</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><maml:navigationLink><maml:linkText>Get-AzureStorSimpleDeviceVolumeContainer</maml:linkText><maml:uri></maml:uri></maml:navigationLink></maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Gets volume containers on a device.</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><maml:navigationLink><maml:linkText>Get-AzureStorSimpleResource</maml:linkText><maml:uri></maml:uri></maml:navigationLink></maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Gets all resources that you created.</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><maml:navigationLink><maml:linkText>Get-AzureStorSimpleResourceContext</maml:linkText><maml:uri></maml:uri></maml:navigationLink></maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Gets the current resource context.</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><maml:navigationLink><maml:linkText>Get-AzureStorSimpleStorageAccountCredential</maml:linkText><maml:uri></maml:uri></maml:navigationLink></maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Gets credentials for storage accounts.</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><maml:navigationLink><maml:linkText>Get-AzureStorSimpleTask</maml:linkText><maml:uri></maml:uri></maml:navigationLink></maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Gets the status of a task on a StorSimple device.</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><maml:navigationLink><maml:linkText>New-AzureStorSimpleAccessControlRecord</maml:linkText><maml:uri></maml:uri></maml:navigationLink></maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Creates an access control record.</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><maml:navigationLink><maml:linkText>New-AzureStorSimpleDeviceBackupPolicy</maml:linkText><maml:uri></maml:uri></maml:navigationLink></maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Creates a backup policy.</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><maml:navigationLink><maml:linkText>New-AzureStorSimpleDeviceBackupScheduleAddConfig</maml:linkText><maml:uri></maml:uri></maml:navigationLink></maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Creates a backup schedule configuration object.</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><maml:navigationLink><maml:linkText>New-AzureStorSimpleDeviceBackupScheduleUpdateConfig</maml:linkText><maml:uri></maml:uri></maml:navigationLink></maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Creates a backup schedule update configuration object.</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><maml:navigationLink><maml:linkText>New-AzureStorSimpleDeviceVolume</maml:linkText><maml:uri></maml:uri></maml:navigationLink></maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Creates a volume in a specified volume container.</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><maml:navigationLink><maml:linkText>New-AzureStorSimpleDeviceVolumeContainer</maml:linkText><maml:uri></maml:uri></maml:navigationLink></maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Creates a volume container.</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><maml:navigationLink><maml:linkText>New-AzureStorSimpleInlineStorageAccountCredential</maml:linkText><maml:uri></maml:uri></maml:navigationLink></maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Creates a .NET storage account credential object.</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><maml:navigationLink><maml:linkText>New-AzureStorSimpleStorageAccountCredential</maml:linkText><maml:uri></maml:uri></maml:navigationLink></maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Adds an Azure storage access credential.</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><maml:navigationLink><maml:linkText>Remove-AzureStorSimpleAccessControlRecord</maml:linkText><maml:uri></maml:uri></maml:navigationLink></maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Deletes an access control record from the service configuration.</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><maml:navigationLink><maml:linkText>Remove-AzureStorSimpleDeviceBackup</maml:linkText><maml:uri></maml:uri></maml:navigationLink></maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Deletes a backup object.</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><maml:navigationLink><maml:linkText>Remove-AzureStorSimpleDeviceBackupPolicy</maml:linkText><maml:uri></maml:uri></maml:navigationLink></maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Removes an existing backup policy.</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><maml:navigationLink><maml:linkText>Remove-AzureStorSimpleDeviceVolume</maml:linkText><maml:uri></maml:uri></maml:navigationLink></maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Removes a volume from a StorSimple device.</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><maml:navigationLink><maml:linkText>Remove-AzureStorSimpleDeviceVolumeContainer</maml:linkText><maml:uri></maml:uri></maml:navigationLink></maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Removes a volume container from a StorSimple device.</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><maml:navigationLink><maml:linkText>Remove-AzureStorSimpleStorageAccountCredential</maml:linkText><maml:uri></maml:uri></maml:navigationLink></maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Deletes an existing storage account credential.</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><maml:navigationLink><maml:linkText>Select-AzureStorSimpleResource</maml:linkText><maml:uri></maml:uri></maml:navigationLink></maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Sets a resource as the current resource.</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><maml:navigationLink><maml:linkText>Set-AzureStorSimpleAccessControlRecord</maml:linkText><maml:uri></maml:uri></maml:navigationLink></maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Updates the IQN of an access control record.</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><maml:navigationLink><maml:linkText>Set-AzureStorSimpleDeviceBackupPolicy</maml:linkText><maml:uri></maml:uri></maml:navigationLink></maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Updates an existing backup policy.</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><maml:navigationLink><maml:linkText>Set-AzureStorSimpleDeviceVolume</maml:linkText><maml:uri></maml:uri></maml:navigationLink></maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Updates the properties of an existing volume.</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><maml:navigationLink><maml:linkText>Set-AzureStorSimpleStorageAccountCredential</maml:linkText><maml:uri></maml:uri></maml:navigationLink></maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Updates an Azure storage access credential.</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><maml:navigationLink><maml:linkText>Start-AzureStorSimpleDeviceBackupJob</maml:linkText><maml:uri></maml:uri></maml:navigationLink></maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Starts a new job that creates a backup from an existing backup policy.</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><maml:navigationLink><maml:linkText>Start-AzureStorSimpleDeviceBackupRestoreJob</maml:linkText><maml:uri></maml:uri></maml:navigationLink></maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Starts a job that restores a backup on a StorSimple device.</maml:para><command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><command:details><command:name>Get-AzureStorSimpleAccessControlRecord</command:name><maml:description><maml:para>Gets access control records in a service configuration.</maml:para></maml:description><maml:copyright><maml:para /></maml:copyright><command:verb>Get</command:verb><command:noun>AzureStorSimpleAccessControlRecord</command:noun><dev:version /></command:details><maml:description><maml:para>The Get-AzureStorSimpleAccessControlRecord cmdlet gets access control records in the StorSimple Manager service configuration. This cmdlet gets all records or a named record.</maml:para><maml:para>Access control records are containers of iSCSI initiator parameters. These parameters specify which initiators can access a volume. When an iSCSI initiator attempts to connect to a volume, your appliance checks the access control records assigned to that volume. If the iSCSI initiator parameters match one of the entries in an access control record mapped to that volume, the iSCSI initiator can connect.</maml:para></maml:description><command:syntax><command:syntaxItem><maml:name>Get-AzureStorSimpleAccessControlRecord</maml:name><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="Name"><maml:name>ACRName</maml:name><maml:description><maml:para>Specifies the name of an access control record to get.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">String</command:parameterValue></command:parameter></command:syntaxItem></command:syntax><command:parameters><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="Name"><maml:name>ACRName</maml:name><maml:description><maml:para>Specifies the name of an access control record to get.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter></command:parameters><command:inputTypes><command:inputType><dev:type><maml:name>None</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para></maml:para></maml:description></command:inputType></command:inputTypes><command:returnValues><command:returnValue><dev:type><maml:name>AccessControlRecord, IList&lt;AccessControlRecord&gt;</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para>This cmdlet returns an AccessControlRecord object or an IList&lt;AccessControlRecord&gt; object. An AccessControlRecord object contains the following fields: +<maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Windows PowerShell® is a task-based command-line shell and scripting language designed especially for system administration. This reference topic for the information technology (IT) professional provides assistance in utilizing the Windows PowerShell cmdlets to script and automate tasks.</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">The following list contains links to the help topics for the Microsoft Azure StorSimple cmdlets. The cmdlets appear in alphabetical order.</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Name</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Description</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Confirm-AzureStorSimpleLegacyVolumeContainerStatus</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Initiates the commit or rollback of the data containers that are migrated.</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Get-AzureStorSimpleAccessControlRecord</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Gets access control records in a service configuration.</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Get-AzureStorSimpleDevice</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Gets devices attached to the resource.</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Get-AzureStorSimpleDeviceBackup</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Gets backups from a device.</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Get-AzureStorSimpleDeviceBackupPolicy</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Gets backup policies.</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Get-AzureStorSimpleDeviceConnectedInitiator</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Gets the iSCSI connections available for a StorSimple device.</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Get-AzureStorSimpleDeviceVolume</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Gets volumes on a device.</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Get-AzureStorSimpleDeviceVolumeContainer</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Gets volume containers on a device.</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Get-AzureStorSimpleFailoverVolumeContainers</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Gets the volume container groups for device failover.</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Get-AzureStorSimpleJob</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Gets StorSimple jobs.</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Get-AzureStorSimpleLegacyVolumeContainerConfirmStatus</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Gets the status of a commit or rollback operation.</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Get-AzureStorSimpleLegacyVolumeContainerMigrationPlan</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Gets migration plans for legacy containers.</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Get-AzureStorSimpleLegacyVolumeContainerStatus</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Gets the migration status of the data containers.</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Get-AzureStorSimpleResource</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Gets all resources that you created.</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Get-AzureStorSimpleResourceContext</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Gets the current resource context.</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Get-AzureStorSimpleStorageAccountCredential</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Gets credentials for storage accounts.</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Import-AzureStorSimpleLegacyApplianceConfig</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Imports a configuration file.</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Import-AzureStorSimpleLegacyVolumeContainer</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Starts the migration of data containers.</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">New-AzureStorSimpleAccessControlRecord</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Creates an access control record.</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">New-AzureStorSimpleDeviceBackupPolicy</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Creates a backup policy.</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">New-AzureStorSimpleDeviceBackupScheduleAddConfig</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Creates a backup schedule configuration object.</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">New-AzureStorSimpleDeviceBackupScheduleUpdateConfig</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Creates a backup schedule update configuration object.</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">New-AzureStorSimpleDeviceVolume</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Creates a volume in a specified volume container.</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">New-AzureStorSimpleDeviceVolumeContainer</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Creates a volume container.</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">New-AzureStorSimpleNetworkConfig</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Prepares a network configuration object.</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">New-AzureStorSimpleStorageAccountCredential</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Adds an Azure storage access credential.</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">New-AzureStorSimpleVirtualDevice</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Creates a virtual StorSimple device.</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Remove-AzureStorSimpleAccessControlRecord</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Deletes an access control record from the service configuration.</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Remove-AzureStorSimpleDeviceBackup</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Deletes a backup object.</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Remove-AzureStorSimpleDeviceBackupPolicy</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Removes an existing backup policy.</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Remove-AzureStorSimpleDeviceVolume</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Removes a volume from a StorSimple device.</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Remove-AzureStorSimpleDeviceVolumeContainer</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Removes a volume container from a StorSimple device.</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Remove-AzureStorSimpleStorageAccountCredential</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Deletes an existing storage account credential.</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Select-AzureStorSimpleResource</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Sets a resource as the current resource.</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Set-AzureStorSimpleAccessControlRecord</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Updates the IQN of an access control record.</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Set-AzureStorSimpleDevice</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Changes the device configuration for a device.</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Set-AzureStorSimpleDeviceBackupPolicy</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Updates an existing backup policy.</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Set-AzureStorSimpleDeviceVolume</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Updates the properties of an existing volume.</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Set-AzureStorSimpleStorageAccountCredential</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Updates an Azure storage access credential.</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Set-AzureStorSimpleVirtualDevice</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Creates or updates the device configuration of a StorSimple virtual device.</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Start-AzureStorSimpleBackupCloneJob</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Starts a job that clones a backup on a device.</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Start-AzureStorSimpleDeviceBackupJob</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Starts a new job that creates a backup from an existing backup policy.</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Start-AzureStorSimpleDeviceBackupRestoreJob</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Starts a job that restores a backup on a StorSimple device.</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Start-AzureStorSimpleDeviceFailoverJob</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Initiates a failover operation of volume container groups.</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Start-AzureStorSimpleLegacyVolumeContainerMigrationPlan</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Starts the creation of a migration plan.</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Stop-AzureStorSimpleJob</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">Stops a StorSimple job.</maml:para><maml:para xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">For more information about, or for the syntax of, any of the cmdlets, use the Get-Help &lt;cmdlet name&gt; cmdlet, where &lt;cmdlet name&gt; is the name of the cmdlet that you want to research. For more detailed information, you can run any of the following cmdlets: ● Get-Help &lt;cmdlet name&gt; -Detailed ● Get-Help &lt;cmdlet name&gt; -Examples ● Get-Help &lt;cmdlet name&gt; -Full </maml:para><command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><command:details><command:name>Confirm-AzureStorSimpleLegacyVolumeContainerStatus</command:name><maml:description><maml:para>Initiates the commit or rollback of the data containers that are migrated.</maml:para></maml:description><maml:copyright><maml:para /></maml:copyright><command:verb>Confirm</command:verb><command:noun>AzureStorSimpleLegacyVolumeContainerStatus</command:noun><dev:version /></command:details><maml:description><maml:para>The Confirm-AzureStorSimpleLegacyVolumeContainerStatus cmdlet initiates the commit or rollback of the data containers that are migrated as part of a legacy migration. The rollback restores the appliance to the original ownership. The commit assigns the ownership to the target appliance.</maml:para></maml:description><command:syntax><command:syntaxItem><maml:name>Confirm-AzureStorSimpleLegacyVolumeContainerStatus</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>LegacyConfigId</maml:name><maml:description><maml:para>Specifies the unique ID of the configuration of the legacy appliance. </maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="2" aliases="none"><maml:name>LegacyContainerNames</maml:name><maml:description><maml:para>Specifies an array of data container names for which the migration plan applies.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">String[]</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>MigrationOperation</maml:name><maml:description><maml:para>Specifies whether this cmdlet performs a commit or rollback. Valid values are: Commit and Rollback.</maml:para></maml:description><command:parameterValueGroup><command:parameterValue required="true" variableLength="false">Commit</command:parameterValue><command:parameterValue required="true" variableLength="false">Rollback</command:parameterValue></command:parameterValueGroup></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">AzureProfile</command:parameterValue></command:parameter></command:syntaxItem></command:syntax><command:parameters><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>LegacyConfigId</maml:name><maml:description><maml:para>Specifies the unique ID of the configuration of the legacy appliance. </maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="2" aliases="none"><maml:name>LegacyContainerNames</maml:name><maml:description><maml:para>Specifies an array of data container names for which the migration plan applies.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">String[]</command:parameterValue><dev:type><maml:name>String[]</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>MigrationOperation</maml:name><maml:description><maml:para>Specifies whether this cmdlet performs a commit or rollback. Valid values are: Commit and Rollback.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">ConfirmMigrationOperation</command:parameterValue><dev:type><maml:name>ConfirmMigrationOperation</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">AzureProfile</command:parameterValue><dev:type><maml:name>AzureProfile</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter></command:parameters><command:inputTypes><command:inputType><dev:type><maml:name></maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para></maml:para></maml:description></command:inputType></command:inputTypes><command:returnValues><command:returnValue><dev:type><maml:name></maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para></maml:para></maml:description></command:returnValue></command:returnValues><command:terminatingErrors /><command:nonTerminatingErrors /><command:examples><command:example><maml:title>Example 1: Initiate a commit operation</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Confirm-AzureStorSimpleLegacyVolumeContainerStatus -LegacyConfigId "c5a831e1-7888-44f4-adf1-92994be630c3" -LegacyContainerNames "OneSDKAzureCloud" -MigrationOperation Commit +Please check the commit/discard status using Get-AzureStorSimpleLegacyVolumeContainerConfirmStatus +</dev:code><dev:remarks><maml:para>This command initiates a commit operation for the specified legacy configuration ID. To see the status of the operation, use the Get-AzureStorSimpleLegacyVolumeContainerStatus cmdlet. </maml:para><maml:para /><maml:para /></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>Example 2: Initiate a rollback operation</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Confirm-AzureStorSimpleLegacyVolumeContainerStatus -LegacyConfigId "c5a831e1-7888-44f4-adf1-92994be630c3" -LegacyContainerNames "OneSDKAzureCloud" -MigrationOperation Rollback +Please check the commit/discard status using Get-AzureStorSimpleLegacyVolumeContainerConfirmStatus +</dev:code><dev:remarks><maml:para>This command initiates a rollback operation for the specified legacy configuration ID. </maml:para><maml:para /><maml:para /></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example></command:examples><maml:relatedLinks><maml:navigationLink><maml:linkText>Get-AzureStorSimpleLegacyVolumeContainerStatus</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>Get-AzureStorSimpleLegacyVolumeContainerConfirmStatus</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>Get-AzureStorSimpleLegacyVolumeContainerMigrationPlan</maml:linkText><maml:uri /></maml:navigationLink></maml:relatedLinks></command:command><command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><command:details><command:name>Get-AzureStorSimpleAccessControlRecord</command:name><maml:description><maml:para>Gets access control records in a service configuration.</maml:para></maml:description><maml:copyright><maml:para /></maml:copyright><command:verb>Get</command:verb><command:noun>AzureStorSimpleAccessControlRecord</command:noun><dev:version /></command:details><maml:description><maml:para>The Get-AzureStorSimpleAccessControlRecord cmdlet gets access control records in the StorSimple Manager service configuration. This cmdlet gets all records or a named record.</maml:para><maml:para>Access control records are containers of iSCSI initiator parameters. These parameters specify which initiators can access a volume. When an iSCSI initiator attempts to connect to a volume, your appliance checks the access control records assigned to that volume. If the iSCSI initiator parameters match one of the entries in an access control record mapped to that volume, the iSCSI initiator can connect.</maml:para></maml:description><command:syntax><command:syntaxItem><maml:name>Get-AzureStorSimpleAccessControlRecord</maml:name><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="Name"><maml:name>ACRName</maml:name><maml:description><maml:para>Specifies the name of an access control record to get.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">Microsoft.Azure.Common.Authentication.Models.AzureProfile</command:parameterValue></command:parameter></command:syntaxItem></command:syntax><command:parameters><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="Name"><maml:name>ACRName</maml:name><maml:description><maml:para>Specifies the name of an access control record to get.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">Microsoft.Azure.Common.Authentication.Models.AzureProfile</command:parameterValue><dev:type><maml:name>Microsoft.Azure.Common.Authentication.Models.AzureProfile</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter></command:parameters><command:inputTypes><command:inputType><dev:type><maml:name>None</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para></maml:para></maml:description></command:inputType></command:inputTypes><command:returnValues><command:returnValue><dev:type><maml:name>AccessControlRecord, IList&lt;AccessControlRecord&gt;</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para>This cmdlet returns an AccessControlRecord object or an IList&lt;AccessControlRecord&gt; object. An AccessControlRecord object contains the following fields: -- GlobalId (String) -- InitiatorName (String) @@ -9,39 +13,13 @@ -- Name (String) -- OperationInProgress (OperationInProgress) -- VolumeCount (int)</maml:para></maml:description></command:returnValue></command:returnValues><command:terminatingErrors /><command:nonTerminatingErrors /><command:examples><command:example><maml:title>Example 1: Get all access control records</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Get-AzureStorSimpleAccessControlRecord -VERBOSE: ClientRequestId: 59839a80-e27c-46ee-8ad5-8390917db9c8_PS -VERBOSE: ClientRequestId: 1b340751-ee10-4e35-8718-89fa2f1ef6bc_PS - -GlobalId : -InitiatorName : iqn101updated -InstanceId : 55f24643-ab3a-4098-ade2-aa2b1a3ab18c -Name : Contoso-TSQA-ACR -OperationInProgress : None -VolumeCount : 6 - -GlobalId : -InitiatorName : iqn101updated -InstanceId : 82c9f73c-9955-4c7b-814c-f314ebf16269 -Name : acr101 -OperationInProgress : None -VolumeCount : 4 - -GlobalId : -InitiatorName : abc -InstanceId : 966084b8-46e5-4812-b295-9ca91829b639 -Name : abc -OperationInProgress : None -VolumeCount : 14 - -GlobalId : -InitiatorName : iqn01updated -InstanceId : baebff4d-ab06-40f4-9054-9728c106771f -Name : acr01name -OperationInProgress : None -VolumeCount : 4 - -VERBOSE: 9 Access Control Records found! -</dev:code><dev:remarks><maml:para>This command gets all access control records.</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>Example 2: Get a specific access control record</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Get-AzureStorSimpleAccessControlRecord -ACRName "Acr11" +InstanceId Name InitiatorName VolumeCount +---------- ---- ------------- ----------- +01a31aa5-14de-4b77-b926-2842577f540e Windows_XYUSFL718-RV_ACR iqn.1991-05.com.microsof... 3 +071c282d-0cd2-4c5f-b687-48966037ba48 Linux_XYUSFL719_ACR iqn.1994-05.com.redhat:a... 3 +4600eade-71f8-4d04-baec-0e7cf1d1e8fb Windows_XYUSFL720_ACR iqn.1991-05.com.microsof... 9 +d508d6f0-fcda-4624-b223-c0b307d6113e Linux_XYUSFL350_ACR iqn.1991-05.com.microsof... 9 +</dev:code><dev:remarks><maml:para>This command gets all access control records.</maml:para><maml:para /><maml:para /></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>Example 2: Get a specific access control record</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Get-AzureStorSimpleAccessControlRecord -ACRName "Acr11" VERBOSE: ClientRequestId: 61f261c7-acd3-4bcc-922a-ddfd85eb767b_PS VERBOSE: ClientRequestId: 49c6a4c7-d299-46fd-a553-034c52b47487_PS @@ -53,125 +31,105 @@ OperationInProgress : None VolumeCount : 6 VERBOSE: Access Control Record with given name Acr11 is found! -</dev:code><dev:remarks><maml:para>This command gets the access control record named Acr11.</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example></command:examples><maml:relatedLinks><maml:navigationLink><maml:linkText>New-AzureStorSimpleAccessControlRecord</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>Remove-AzureStorSimpleAccessControlRecord</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>Set-AzureStorSimpleAccessControlRecord</maml:linkText><maml:uri /></maml:navigationLink></maml:relatedLinks></command:command><command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><command:details><command:name>Get-AzureStorSimpleDevice</command:name><maml:description><maml:para>Gets devices attached to the resource.</maml:para></maml:description><maml:copyright><maml:para /></maml:copyright><command:verb>Get</command:verb><command:noun>AzureStorSimpleDevice</command:noun><dev:version /></command:details><maml:description><maml:para>The Get-AzureStorSimpleDevice cmdlet gets a list of StorSimple devices attached to the resource. You can specify device ID, name, model ID, and type. Use the DeviceID property obtained by using this cmdlet to specify devices for other StorSimple cmdlets.</maml:para></maml:description><command:syntax><command:syntaxItem><maml:name>Get-AzureStorSimpleDevice</maml:name><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="none"><maml:name>Type</maml:name><maml:description><maml:para>Specifies the type of a StorSimple device. Valid values are: Appliance and VirtualAppliance.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>ModelId</maml:name><maml:description><maml:para>Specifies a model ID. This cmdlet returns devices that match the value that this parameter specifies.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="4" aliases="none"><maml:name>Detailed</maml:name><maml:description><maml:para>Indicates that this cmdlet returns device details for the devices that it gets.</maml:para></maml:description></command:parameter></command:syntaxItem><command:syntaxItem><maml:name>Get-AzureStorSimpleDevice</maml:name><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="ID"><maml:name>DeviceId</maml:name><maml:description><maml:para>Specifies the instance ID of the device to get.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="none"><maml:name>Type</maml:name><maml:description><maml:para>Specifies the type of a StorSimple device. Valid values are: Appliance and VirtualAppliance.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>ModelId</maml:name><maml:description><maml:para>Specifies a model ID. This cmdlet returns devices that match the value that this parameter specifies.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="4" aliases="none"><maml:name>Detailed</maml:name><maml:description><maml:para>Indicates that this cmdlet returns device details for the devices that it gets.</maml:para></maml:description></command:parameter></command:syntaxItem><command:syntaxItem><maml:name>Get-AzureStorSimpleDevice</maml:name><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="Name"><maml:name>DeviceName</maml:name><maml:description><maml:para>Specifies the name of the StorSimple device to get.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="none"><maml:name>Type</maml:name><maml:description><maml:para>Specifies the type of a StorSimple device. Valid values are: Appliance and VirtualAppliance.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>ModelId</maml:name><maml:description><maml:para>Specifies a model ID. This cmdlet returns devices that match the value that this parameter specifies.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="4" aliases="none"><maml:name>Detailed</maml:name><maml:description><maml:para>Indicates that this cmdlet returns device details for the devices that it gets.</maml:para></maml:description></command:parameter></command:syntaxItem></command:syntax><command:parameters><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="4" aliases="none"><maml:name>Detailed</maml:name><maml:description><maml:para>Indicates that this cmdlet returns device details for the devices that it gets.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="ID"><maml:name>DeviceId</maml:name><maml:description><maml:para>Specifies the instance ID of the device to get.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="Name"><maml:name>DeviceName</maml:name><maml:description><maml:para>Specifies the name of the StorSimple device to get.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>ModelId</maml:name><maml:description><maml:para>Specifies a model ID. This cmdlet returns devices that match the value that this parameter specifies.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="none"><maml:name>Type</maml:name><maml:description><maml:para>Specifies the type of a StorSimple device. Valid values are: Appliance and VirtualAppliance.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter></command:parameters><command:inputTypes><command:inputType><dev:type><maml:name>None</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para></maml:para></maml:description></command:inputType></command:inputTypes><command:returnValues><command:returnValue><dev:type><maml:name>List&lt;DeviceDetails&gt;, IEnumerable&lt;DeviceInfo&gt;</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para>This cmdlet returns a List&lt;DeviceDetails&gt; object, if you specify the Detailed parameter. If you do not specify that parameter, it returns an IEnumerable&lt;DeviceInfo&gt; object.</maml:para></maml:description></command:returnValue></command:returnValues><command:terminatingErrors /><command:nonTerminatingErrors /><command:examples><command:example><maml:title>Example 1: Get available devices on a resource</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Get-AzureStorSimpleDevice -VERBOSE: ClientRequestId: 0092c884-4b8f-404d-937c-8ed5d7f3f59d_PS -VERBOSE: ClientRequestId: a3ff92aa-8262-4c42-9c67-c79487cce46a_PS -VERBOSE: ClientRequestId: 177b596a-2a0e-4e7c-9039-64fd9e63e682_PS - - -ACRCount : 0 -ActivationTime : 11/28/2014 11:34:49 AM -ActiveController : Unknown -AvailableStorageInBytes : 1087700467712 -CloudCredCount : 0 -Culture : en-US -CurrentController : Unknown -DataContainerCount : 0 -Description : -DeviceId : 29f9be68-04f7-437d-a466-b90a1ed324b5 -DeviceSoftwareVersion : 6.3.9600.17215 -FriendlyName : Contoso72App03 -IsConfigUpdated : True -IsVirtualApplianceInterimEntry : False -Location : -ModelDescription : 100 -NNicCards : 6 -ProvisionedStorageInBytes : 11811160064 -SerialNumber : 123456789 -Status : Online -TargetIQN : iqn.1991-05.com.contoso:storsimple100-123456789-target -TimeZone : Pacific Standard Time -TotalStorageInBytes : 1099511627776 -Type : Appliance -UsingStorageInBytes : 0 -VolumeCount : 0 - -VERBOSE: 1 StorSimple device found! -</dev:code><dev:remarks><maml:para>This command gets all available devices on a resource. In this example, only one device is available.</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>Example 2: Get specific available devices on a resource</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Get-AzureStorSimpleDevice -DeviceName "Contoso74App03" -Type Appliance -ModelId "100" -VERBOSE: ClientRequestId: a6e71da6-d02a-44e8-b42d-4a2992df087e_PS -VERBOSE: ClientRequestId: 7260e3db-3dec-4d60-84a7-c207e087ce7d_PS -VERBOSE: ClientRequestId: b76273b7-0c07-469e-bca3-e9e9cf7b1f40_PS - - -ACRCount : 0 -ActivationTime : 11/28/2014 11:34:49 AM -ActiveController : Unknown -AvailableStorageInBytes : 1087700467712 -CloudCredCount : 0 -Culture : en-US -CurrentController : Unknown -DataContainerCount : 0 -Description : -DeviceId : 29f9be68-04f7-437d-a466-b90a1ed324b5 -DeviceSoftwareVersion : 6.3.9600.17215 -FriendlyName : Contoso74App03 -IsConfigUpdated : True -IsVirtualApplianceInterimEntry : False -Location : -ModelDescription : 100 -NNicCards : 6 -ProvisionedStorageInBytes : 11811160064 -SerialNumber : 123456789 -Status : Online -TargetIQN : iqn.1991-05.com.contoso:storsimple100-123456789-target -TimeZone : Pacific Standard Time -TotalStorageInBytes : 1099511627776 -Type : Appliance -UsingStorageInBytes : 0 -VolumeCount : 0 - -VERBOSE: 1 StorSimple device found! -</dev:code><dev:remarks><maml:para>This command gets all available devices on a resource that have the specified name, type, and model ID. </maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>Example 3: Get details for a device</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Get-AzureStorSimpleDevice -Name "Contoso63App03" -Type Appliance -Detailed -VERBOSE: ClientRequestId: ceee366d-e414-4db8-9cc4-0e9e52717812_PS -VERBOSE: ClientRequestId: ddbf7e41-743a-4c93-b5e6-dd72bfa76e3a_PS -VERBOSE: ClientRequestId: 9820367e-d2a0-4889-b2a1-76d4d0d1787d_PS -VERBOSE: ClientRequestId: 1a3b1a41-d3b9-4360-910f-a799d6a3d0fe_PS - - +</dev:code><dev:remarks><maml:para>This command gets the access control record named Acr11.</maml:para><maml:para /><maml:para /></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example></command:examples><maml:relatedLinks><maml:navigationLink><maml:linkText>New-AzureStorSimpleAccessControlRecord</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>Remove-AzureStorSimpleAccessControlRecord</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>Set-AzureStorSimpleAccessControlRecord</maml:linkText><maml:uri /></maml:navigationLink></maml:relatedLinks></command:command><command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><command:details><command:name>Get-AzureStorSimpleDevice</command:name><maml:description><maml:para>Gets devices attached to the resource.</maml:para></maml:description><maml:copyright><maml:para /></maml:copyright><command:verb>Get</command:verb><command:noun>AzureStorSimpleDevice</command:noun><dev:version /></command:details><maml:description><maml:para>The Get-AzureStorSimpleDevice cmdlet gets a list of StorSimple devices attached to the resource. You can specify device ID, name, model ID, and type. Use the DeviceID property obtained by using this cmdlet to specify devices for other StorSimple cmdlets.</maml:para></maml:description><command:syntax><command:syntaxItem><maml:name>Get-AzureStorSimpleDevice</maml:name><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="none"><maml:name>Type</maml:name><maml:description><maml:para>Specifies the type of a StorSimple device. Valid values are: Appliance and VirtualAppliance.</maml:para></maml:description><command:parameterValueGroup><command:parameterValue required="false" variableLength="false">Appliance</command:parameterValue><command:parameterValue required="false" variableLength="false">VirtualAppliance</command:parameterValue></command:parameterValueGroup></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>ModelID</maml:name><maml:description><maml:para>Specifies the ID of the model of StorSimple devices to get.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">System.String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="4" aliases="none"><maml:name>Detailed</maml:name><maml:description><maml:para>Indicates that this cmdlet returns device details for the devices that it gets.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">Microsoft.Azure.Common.Authentication.Models.AzureProfile</command:parameterValue></command:parameter></command:syntaxItem><command:syntaxItem><maml:name>Get-AzureStorSimpleDevice</maml:name><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="ID"><maml:name>DeviceId</maml:name><maml:description><maml:para>Specifies the instance ID of the device to get.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="none"><maml:name>Type</maml:name><maml:description><maml:para>Specifies the type of a StorSimple device. Valid values are: Appliance and VirtualAppliance.</maml:para></maml:description><command:parameterValueGroup><command:parameterValue required="false" variableLength="false">Appliance</command:parameterValue><command:parameterValue required="false" variableLength="false">VirtualAppliance</command:parameterValue></command:parameterValueGroup></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>ModelID</maml:name><maml:description><maml:para>Specifies the ID of the model of StorSimple devices to get.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">System.String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="4" aliases="none"><maml:name>Detailed</maml:name><maml:description><maml:para>Indicates that this cmdlet returns device details for the devices that it gets.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">Microsoft.Azure.Common.Authentication.Models.AzureProfile</command:parameterValue></command:parameter></command:syntaxItem><command:syntaxItem><maml:name>Get-AzureStorSimpleDevice</maml:name><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="Name"><maml:name>DeviceName</maml:name><maml:description><maml:para>Specifies the name of the StorSimple device to get.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="none"><maml:name>Type</maml:name><maml:description><maml:para>Specifies the type of a StorSimple device. Valid values are: Appliance and VirtualAppliance.</maml:para></maml:description><command:parameterValueGroup><command:parameterValue required="false" variableLength="false">Appliance</command:parameterValue><command:parameterValue required="false" variableLength="false">VirtualAppliance</command:parameterValue></command:parameterValueGroup></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>ModelID</maml:name><maml:description><maml:para>Specifies the ID of the model of StorSimple devices to get.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">System.String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="4" aliases="none"><maml:name>Detailed</maml:name><maml:description><maml:para>Indicates that this cmdlet returns device details for the devices that it gets.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">Microsoft.Azure.Common.Authentication.Models.AzureProfile</command:parameterValue></command:parameter></command:syntaxItem></command:syntax><command:parameters><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="4" aliases="none"><maml:name>Detailed</maml:name><maml:description><maml:para>Indicates that this cmdlet returns device details for the devices that it gets.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="ID"><maml:name>DeviceId</maml:name><maml:description><maml:para>Specifies the instance ID of the device to get.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="Name"><maml:name>DeviceName</maml:name><maml:description><maml:para>Specifies the name of the StorSimple device to get.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>ModelID</maml:name><maml:description><maml:para>Specifies the ID of the model of StorSimple devices to get.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">System.String</command:parameterValue><dev:type><maml:name>System.String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">Microsoft.Azure.Common.Authentication.Models.AzureProfile</command:parameterValue><dev:type><maml:name>Microsoft.Azure.Common.Authentication.Models.AzureProfile</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="none"><maml:name>Type</maml:name><maml:description><maml:para>Specifies the type of a StorSimple device. Valid values are: Appliance and VirtualAppliance.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter></command:parameters><command:inputTypes><command:inputType><dev:type><maml:name>None</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para></maml:para></maml:description></command:inputType></command:inputTypes><command:returnValues><command:returnValue><dev:type><maml:name>List&lt;DeviceDetails&gt;, IEnumerable&lt;DeviceInfo&gt;</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para>This cmdlet returns a List&lt;DeviceDetails&gt; object, if you specify the Detailed parameter. If you do not specify that parameter, it returns an IEnumerable&lt;DeviceInfo&gt; object.</maml:para></maml:description></command:returnValue></command:returnValues><command:terminatingErrors /><command:nonTerminatingErrors /><command:examples><command:example><maml:title>Example 1: Get available devices on a resource</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Get-AzureStorSimpleDevice +DeviceId : 6f9ab151-39c7-4ded-b7d0-f5b0968f2766 +DeviceName : 8600-: SHX0881018G88 +SerialNumber : SHX0881018G88 +DeviceSoftwareVersion : 6.3.9600.17430 +Location : +ModelDescription : 8600 +Status : Offline +Type : Appliance +TargetIQN : iqn.1991-05.com.microsoft:storsimple8600-shx0991018g00e4-target +TimeZone : Pacific Standard Time +ActivationTime : 2015-04-07T16:32:30.2960842Z +AvailableStorageInBytes : 535363378479104 +ProvisionedStorageInBytes : 14392435408896 +TotalStorageInBytes : 549755813888000 +UsingStorageInBytes : 12693995520 + +DeviceId : eb30ea31-c856-4cf2-9a02-aee611d6a3b9 +DeviceName : 8100-Delta 001 +SerialNumber : SHX90391XXXXXXX +DeviceSoftwareVersion : 6.3.9600.17430 +Location : +ModelDescription : 8100 +Status : Online +Type : Appliance +TargetIQN : iqn.1991-05.com.microsoft:storsimple8100-shx90193xxxxxxx-target +TimeZone : Eastern Standard Time +ActivationTime : 2015-03-26T14:53:14.4219391Z +AvailableStorageInBytes : 205509890146304 +ProvisionedStorageInBytes : 14392435408896 +TotalStorageInBytes : 219902325555200 +UsingStorageInBytes : 23904321536 + +DeviceId : edcb0b9b-1ed5-4102-9c5d-c589f7632994 +DeviceName : 8600-Bravo 001 +SerialNumber : SHX0900915G44SY +DeviceSoftwareVersion : 6.3.9600.17430 +Location : +ModelDescription : 8600 +Status : Online +Type : Appliance +TargetIQN : iqn.1991-05.com.microsoft:storsimple8600-shx0900915g44sy-target +TimeZone : Eastern Standard Time +ActivationTime : 2015-03-26T15:36:26.0870525Z +AvailableStorageInBytes : 535363378479104 +ProvisionedStorageInBytes : 14392435408896 +TotalStorageInBytes : 549755813888000 +UsingStorageInBytes : 978893799424 + +</dev:code><dev:remarks><maml:para>This command gets all available devices on a resource. In this example, only one device is available.</maml:para><maml:para /><maml:para /></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>Example 2: Get specific available devices on a resource</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Get-AzureStorSimpleDevice -DeviceName "8600-SHX90193XXXXXXX" -Type Appliance -ModelId "8600" +DeviceId : f9db31da-8a6c-4718-8f5b-5ce89e600f28 +DeviceName : 8600-SHX90193XXXXXXX +SerialNumber : SHX90193XXXXXXX +DeviceSoftwareVersion : 6.3.9600.17430 +Location : +ModelDescription : 8600 +Status : Online +Type : Appliance +TargetIQN : iqn.1991-05.com.microsoft:storsimple8600-shx90193xxxxxxx-target +TimeZone : Pacific Standard Time +ActivationTime : 2015-04-07T18:10:46.4524766Z +AvailableStorageInBytes : 535363378479104 +ProvisionedStorageInBytes : 14392435408896 +TotalStorageInBytes : 549755813888000 +UsingStorageInBytes : 14445182976 +</dev:code><dev:remarks><maml:para>This command gets all available devices on a resource that have the specified name, type, and model ID. </maml:para><maml:para /><maml:para /></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>Example 3: Get details for a device</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Get-AzureStorSimpleDevice -Name "8600-SHX90193XXXXXXX" -Type Appliance -Detailed AlertNotification : Microsoft.WindowsAzure.Management.StorSimple.Models.AlertNotificationSettings Chap : Microsoft.WindowsAzure.Management.StorSimple.Models.ChapSettings DeviceProperties : Microsoft.WindowsAzure.Management.StorSimple.Models.DeviceInfo DnsServer : Microsoft.WindowsAzure.Management.StorSimple.Models.DnsServerSettings -InstanceId : 29f9be68-04f7-437d-a466-b90a1ed324b5 +InstanceId : f9db31da-8a6c-4718-8f5b-5ce89e600f28 Name : -NetInterfaceList : {Data0} +NetInterfaceList : {Data0, Data1, Data2, Data3...} OperationInProgress : None RemoteMgmtSettingsInfo : Microsoft.WindowsAzure.Management.StorSimple.Models.RemoteManagementSettings + RemoteMinishellSecretInfo : Microsoft.WindowsAzure.Management.StorSimple.Models.RemoteMinishellSettings SecretEncryptionCertThumbprint : Snapshot : Microsoft.WindowsAzure.Management.StorSimple.Models.SnapshotSettings TimeServer : Microsoft.WindowsAzure.Management.StorSimple.Models.TimeSettings -Type : Invalid +Type : Appliance VirtualApplianceProperties : Microsoft.WindowsAzure.Management.StorSimple.Models.VirtualApplianceInfo WebProxy : Microsoft.WindowsAzure.Management.StorSimple.Models.WebProxySettings - -VERBOSE: 1 StorSimple device found! -</dev:code><dev:remarks><maml:para>This command gets all available devices on a resource that have the specified name and type. This command specifies the Detailed parameter. The command provides additional details about the devices it returns.</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example></command:examples><maml:relatedLinks><maml:navigationLink><maml:linkText>Get-AzureStorSimpleResourceContext</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>Select-AzureStorSimpleResource</maml:linkText><maml:uri /></maml:navigationLink></maml:relatedLinks></command:command><command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><command:details><command:name>Get-AzureStorSimpleDeviceBackup</command:name><maml:description><maml:para>Gets backups from a device.</maml:para></maml:description><maml:copyright><maml:para /></maml:copyright><command:verb>Get</command:verb><command:noun>AzureStorSimpleDeviceBackup</command:noun><dev:version /></command:details><maml:description><maml:para>The Get-AzureStorSimpleDeviceBackup cmdlet gets backups from a device. You can specify the backup policy, volume, and creation time for backups. </maml:para><maml:para>This cmdlet can return a maximum of 100 backups in the first page. If more than 100 backups exist, retrieve subsequent pages by using the First and Skip parameters. If you specify a value of 100 for Skip and 50 for First, this cmdlet does not return the first 100 results. It returns the next 50 results after the 100 that it skips. </maml:para></maml:description><command:syntax><command:syntaxItem><maml:name>Get-AzureStorSimpleDeviceBackup</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>DeviceName</maml:name><maml:description><maml:para>Specifies the name of the StorSimple device for which to get backups. </maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true(ByValue)" position="2" aliases="BackupPolicyDetails"><maml:name>BackupPolicy</maml:name><maml:description><maml:para>Specifies a BackupPolicyDetails object. This cmdlet uses the InstanceId of this object to determine which backups to get. To obtain a BackupPolicyDetails object, use the Get-AzureStorSimpleDeviceBackupPolicy cmdlet.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">BackupPolicyDetails</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>From</maml:name><maml:description><maml:para>Specifies the start date and time for the backups that this cmdlet gets.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="4" aliases="none"><maml:name>To</maml:name><maml:description><maml:para>Specifies the end date and time for the backups that this cmdlet gets.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">String</command:parameterValue></command:parameter></command:syntaxItem><command:syntaxItem><maml:name>Get-AzureStorSimpleDeviceBackup</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>DeviceName</maml:name><maml:description><maml:para>Specifies the name of the StorSimple device for which to get backups. </maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="none"><maml:name>BackupPolicyId</maml:name><maml:description><maml:para>Specifies an instance ID of a backup policy. This cmdlet gets device backups for policy that this parameter specifies.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>From</maml:name><maml:description><maml:para>Specifies the start date and time for the backups that this cmdlet gets.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="4" aliases="none"><maml:name>To</maml:name><maml:description><maml:para>Specifies the end date and time for the backups that this cmdlet gets.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">String</command:parameterValue></command:parameter></command:syntaxItem><command:syntaxItem><maml:name>Get-AzureStorSimpleDeviceBackup</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>DeviceName</maml:name><maml:description><maml:para>Specifies the name of the StorSimple device for which to get backups. </maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>From</maml:name><maml:description><maml:para>Specifies the start date and time for the backups that this cmdlet gets.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="4" aliases="none"><maml:name>To</maml:name><maml:description><maml:para>Specifies the end date and time for the backups that this cmdlet gets.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">String</command:parameterValue></command:parameter></command:syntaxItem><command:syntaxItem><maml:name>Get-AzureStorSimpleDeviceBackup</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>DeviceName</maml:name><maml:description><maml:para>Specifies the name of the StorSimple device for which to get backups. </maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="none"><maml:name>VolumeId</maml:name><maml:description><maml:para>Specifies the instance ID of the volume in which backups exist.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>From</maml:name><maml:description><maml:para>Specifies the start date and time for the backups that this cmdlet gets.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="4" aliases="none"><maml:name>To</maml:name><maml:description><maml:para>Specifies the end date and time for the backups that this cmdlet gets.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">String</command:parameterValue></command:parameter></command:syntaxItem><command:syntaxItem><maml:name>Get-AzureStorSimpleDeviceBackup</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>DeviceName</maml:name><maml:description><maml:para>Specifies the name of the StorSimple device for which to get backups. </maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true(ByValue)" position="2" aliases="VirtualDiskInfo"><maml:name>Volume</maml:name><maml:description><maml:para>Specifies a VirtualDisk object. This cmdlet uses the InstanceId of this object to determine the volume in which backups exist. To obtain a VirtualDisk object, use the Get-AzureStorSimpleDeviceVolume parameter.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">VirtualDisk</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>From</maml:name><maml:description><maml:para>Specifies the start date and time for the backups that this cmdlet gets.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="4" aliases="none"><maml:name>To</maml:name><maml:description><maml:para>Specifies the end date and time for the backups that this cmdlet gets.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">String</command:parameterValue></command:parameter></command:syntaxItem></command:syntax><command:parameters><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true(ByValue)" position="2" aliases="BackupPolicyDetails"><maml:name>BackupPolicy</maml:name><maml:description><maml:para>Specifies a BackupPolicyDetails object. This cmdlet uses the InstanceId of this object to determine which backups to get. To obtain a BackupPolicyDetails object, use the Get-AzureStorSimpleDeviceBackupPolicy cmdlet.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">BackupPolicyDetails</command:parameterValue><dev:type><maml:name>BackupPolicyDetails</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="none"><maml:name>BackupPolicyId</maml:name><maml:description><maml:para>Specifies an instance ID of a backup policy. This cmdlet gets device backups for policy that this parameter specifies.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>DeviceName</maml:name><maml:description><maml:para>Specifies the name of the StorSimple device for which to get backups. </maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>From</maml:name><maml:description><maml:para>Specifies the start date and time for the backups that this cmdlet gets.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="4" aliases="none"><maml:name>To</maml:name><maml:description><maml:para>Specifies the end date and time for the backups that this cmdlet gets.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true(ByValue)" position="2" aliases="VirtualDiskInfo"><maml:name>Volume</maml:name><maml:description><maml:para>Specifies a VirtualDisk object. This cmdlet uses the InstanceId of this object to determine the volume in which backups exist. To obtain a VirtualDisk object, use the Get-AzureStorSimpleDeviceVolume parameter.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">VirtualDisk</command:parameterValue><dev:type><maml:name>VirtualDisk</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="none"><maml:name>VolumeId</maml:name><maml:description><maml:para>Specifies the instance ID of the volume in which backups exist.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter></command:parameters><command:inputTypes><command:inputType><dev:type><maml:name>BackupPolicyDetails, VirtualDisk</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para>This cmdlet accepts BackupPolicyDetails and VirtualDisk objects. </maml:para></maml:description></command:inputType></command:inputTypes><command:returnValues><command:returnValue><dev:type><maml:name>IList&lt;Backup&gt;</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para>This cmdlet returns a list of Backup objects.</maml:para></maml:description></command:returnValue></command:returnValues><command:terminatingErrors /><command:nonTerminatingErrors /><command:examples><command:example><maml:title>Example 1: Get all backups on a device</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Get-AzureStorSimpleDeviceBackup -DeviceName "Contoso63-AppVm" -BackupJobCreationType : BySchedule -CreatedOn : 9/23/2014 11:00:14 AM -SizeInBytes : 10737418240 -Snapshots : {ContosoTSQA} -SSMHostName : -Type : CloudSnapshot -InstanceId : db987f59-487b-45b7-8024-fb50772d7118 -Name : ContosoTSQA_Default -OperationInProgress : None - -... - -BackupJobCreationType : BySchedule -CreatedOn : 9/22/2014 11:00:14 AM -SizeInBytes : 10737418240 -Snapshots : {ContosoTSQA} -SSMHostName : -Type : CloudSnapshot -InstanceId : f27f16d3-d52c-49cd-8045-34d62899f735 -Name : ContosoTSQA_Default -OperationInProgress : None - -VERBOSE: # of backups returned : 17 -VERBOSE: No more backup sets are present for your query! -</dev:code><dev:remarks><maml:para>This command gets all backups that exist on the device named Contoso63-AppVm. If there are more than the maximum of 100 backups allowed for the first page, use the First and Skip parameters to view additional results. </maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>Example 2: Get backups created between two dates</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Get-AzureStorSimpleDeviceBackup -DeviceName "Contoso63-AppVm" -From "9/7/2014" -To "10/7/2014" -First 2 -Skip 1 +</dev:code><dev:remarks><maml:para>This command gets all available devices on a resource that have the specified name and type. This command specifies the Detailed parameter. The command provides additional details about the devices it returns.</maml:para><maml:para /><maml:para /></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example></command:examples><maml:relatedLinks><maml:navigationLink><maml:linkText>Get-AzureStorSimpleResourceContext</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>Select-AzureStorSimpleResource</maml:linkText><maml:uri /></maml:navigationLink></maml:relatedLinks></command:command><command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><command:details><command:name>Get-AzureStorSimpleDeviceBackup</command:name><maml:description><maml:para>Gets backups from a device.</maml:para></maml:description><maml:copyright><maml:para /></maml:copyright><command:verb>Get</command:verb><command:noun>AzureStorSimpleDeviceBackup</command:noun><dev:version /></command:details><maml:description><maml:para>The Get-AzureStorSimpleDeviceBackup cmdlet gets backups from a device. You can specify the backup policy, volume, and creation time for backups. </maml:para><maml:para>This cmdlet can return a maximum of 100 backups in the first page. If more than 100 backups exist, retrieve subsequent pages by using the First and Skip parameters. If you specify a value of 100 for Skip and 50 for First, this cmdlet does not return the first 100 results. It returns the next 50 results after the 100 that it skips. </maml:para></maml:description><command:syntax><command:syntaxItem><maml:name>Get-AzureStorSimpleDeviceBackup</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>DeviceName</maml:name><maml:description><maml:para>Specifies the name of the StorSimple device for which to get backups. </maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true(ByValue)" position="2" aliases="BackupPolicyDetails"><maml:name>BackupPolicy</maml:name><maml:description><maml:para>Specifies a BackupPolicyDetails object. This cmdlet uses the InstanceId of this object to determine which backups to get. To obtain a BackupPolicyDetails object, use the Get-AzureStorSimpleDeviceBackupPolicy cmdlet.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">BackupPolicyDetails</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>From</maml:name><maml:description><maml:para>Specifies the start date and time for the backups that this cmdlet gets.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="4" aliases="none"><maml:name>To</maml:name><maml:description><maml:para>Specifies the end date and time for the backups that this cmdlet gets.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">Microsoft.Azure.Common.Authentication.Models.AzureProfile</command:parameterValue></command:parameter></command:syntaxItem><command:syntaxItem><maml:name>Get-AzureStorSimpleDeviceBackup</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>DeviceName</maml:name><maml:description><maml:para>Specifies the name of the StorSimple device for which to get backups. </maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="none"><maml:name>BackupPolicyId</maml:name><maml:description><maml:para>Specifies an instance ID of a backup policy. This cmdlet gets device backups for policy that this parameter specifies.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>From</maml:name><maml:description><maml:para>Specifies the start date and time for the backups that this cmdlet gets.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="4" aliases="none"><maml:name>To</maml:name><maml:description><maml:para>Specifies the end date and time for the backups that this cmdlet gets.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">Microsoft.Azure.Common.Authentication.Models.AzureProfile</command:parameterValue></command:parameter></command:syntaxItem><command:syntaxItem><maml:name>Get-AzureStorSimpleDeviceBackup</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>DeviceName</maml:name><maml:description><maml:para>Specifies the name of the StorSimple device for which to get backups. </maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>From</maml:name><maml:description><maml:para>Specifies the start date and time for the backups that this cmdlet gets.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="4" aliases="none"><maml:name>To</maml:name><maml:description><maml:para>Specifies the end date and time for the backups that this cmdlet gets.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">Microsoft.Azure.Common.Authentication.Models.AzureProfile</command:parameterValue></command:parameter></command:syntaxItem><command:syntaxItem><maml:name>Get-AzureStorSimpleDeviceBackup</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>DeviceName</maml:name><maml:description><maml:para>Specifies the name of the StorSimple device for which to get backups. </maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="none"><maml:name>VolumeId</maml:name><maml:description><maml:para>Specifies the instance ID of the volume in which backups exist.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>From</maml:name><maml:description><maml:para>Specifies the start date and time for the backups that this cmdlet gets.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="4" aliases="none"><maml:name>To</maml:name><maml:description><maml:para>Specifies the end date and time for the backups that this cmdlet gets.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">Microsoft.Azure.Common.Authentication.Models.AzureProfile</command:parameterValue></command:parameter></command:syntaxItem><command:syntaxItem><maml:name>Get-AzureStorSimpleDeviceBackup</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>DeviceName</maml:name><maml:description><maml:para>Specifies the name of the StorSimple device for which to get backups. </maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true(ByValue)" position="2" aliases="VirtualDiskInfo"><maml:name>Volume</maml:name><maml:description><maml:para>Specifies a VirtualDisk object. This cmdlet uses the InstanceId of this object to determine the volume in which backups exist. To obtain a VirtualDisk object, use the Get-AzureStorSimpleDeviceVolume parameter.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">VirtualDisk</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>From</maml:name><maml:description><maml:para>Specifies the start date and time for the backups that this cmdlet gets.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="4" aliases="none"><maml:name>To</maml:name><maml:description><maml:para>Specifies the end date and time for the backups that this cmdlet gets.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">Microsoft.Azure.Common.Authentication.Models.AzureProfile</command:parameterValue></command:parameter></command:syntaxItem></command:syntax><command:parameters><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true(ByValue)" position="2" aliases="BackupPolicyDetails"><maml:name>BackupPolicy</maml:name><maml:description><maml:para>Specifies a BackupPolicyDetails object. This cmdlet uses the InstanceId of this object to determine which backups to get. To obtain a BackupPolicyDetails object, use the Get-AzureStorSimpleDeviceBackupPolicy cmdlet.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">BackupPolicyDetails</command:parameterValue><dev:type><maml:name>BackupPolicyDetails</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="none"><maml:name>BackupPolicyId</maml:name><maml:description><maml:para>Specifies an instance ID of a backup policy. This cmdlet gets device backups for policy that this parameter specifies.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>DeviceName</maml:name><maml:description><maml:para>Specifies the name of the StorSimple device for which to get backups. </maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>From</maml:name><maml:description><maml:para>Specifies the start date and time for the backups that this cmdlet gets.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">Microsoft.Azure.Common.Authentication.Models.AzureProfile</command:parameterValue><dev:type><maml:name>Microsoft.Azure.Common.Authentication.Models.AzureProfile</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="4" aliases="none"><maml:name>To</maml:name><maml:description><maml:para>Specifies the end date and time for the backups that this cmdlet gets.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true(ByValue)" position="2" aliases="VirtualDiskInfo"><maml:name>Volume</maml:name><maml:description><maml:para>Specifies a VirtualDisk object. This cmdlet uses the InstanceId of this object to determine the volume in which backups exist. To obtain a VirtualDisk object, use the Get-AzureStorSimpleDeviceVolume parameter.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">VirtualDisk</command:parameterValue><dev:type><maml:name>VirtualDisk</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="none"><maml:name>VolumeId</maml:name><maml:description><maml:para>Specifies the instance ID of the volume in which backups exist.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter></command:parameters><command:inputTypes><command:inputType><dev:type><maml:name>BackupPolicyDetails, VirtualDisk</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para>This cmdlet accepts BackupPolicyDetails and VirtualDisk objects. </maml:para></maml:description></command:inputType></command:inputTypes><command:returnValues><command:returnValue><dev:type><maml:name>IList&lt;Backup&gt;</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para>This cmdlet returns a list of Backup objects.</maml:para></maml:description></command:returnValue></command:returnValues><command:terminatingErrors /><command:nonTerminatingErrors /><command:examples><command:example><maml:title>Example 1: Get all backups on a device</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Get-AzureStorSimpleDeviceBackup -DeviceName "Contoso63-AppVm" +InstanceId Name Type BackupJobCreationType CreatedOn SizeInBytes Snapshots SSMHostName +---------- ---- ---- --------------------- --------- ----------- --------- ----------- +85074062-ef6a-408a-b6c9-2a0904bb99ca Snapshot_vg-all LocalSnapshot BySchedule 4/15/2015 1:30:02 PM 9375913607168 {Volume 1, Volume 4, Volume 3, + Volume 2} +ebd87fa3-a9e2-49c9-a7e6-dada47071544 Cloud_Snapshot_vg-all CloudSnapshot BySchedule 4/15/2015 11:30:02 AM 9375913607168 {Volume 1, Volume 4, Volume 3, + Volume 2} +9f7a03be-8c39-474c-bf88-b2c7b54e833c Cloud_Snapshot_Vol3_clone VG CloudSnapshot BySchedule 4/15/2015 9:00:03 AM 1717986918400 {Volume 3 Clone} +177b2dad-c0b2-42d6-b7bb-16926e54e9c6 VG Clones CloudSnapshot BySchedule 4/15/2015 8:30:02 AM 5016521801728 {Volume 1 Clone, Volume 3 Clone} +49c470c0-eadb-40ac-9928-94018a8edcd4 Cloud_Snapshot_Vol1_clone VG CloudSnapshot BySchedule 4/15/2015 7:30:02 AM 3298534883328 {Volume 1 Clone} +45dfd283-f924-4b45-93eb-b20650cadf43 vg-all LocalSnapshot Adhoc 3/27/2015 9:12:15 PM 9375913607168 {Volume 1, Volume 4, Volume 3, + Volume 2} +2c3dd48d-824c-4298-82b5-fb44abb67a1e Test Group LocalSnapshot Adhoc 3/27/2015 1:47:00 AM 5016521801728 {Volume 1, Volume 3} + + +</dev:code><dev:remarks><maml:para>This command gets all backups that exist on the device named Contoso63-AppVm. If there are more than the maximum of 100 backups allowed for the first page, use the First and Skip parameters to view additional results. </maml:para><maml:para /><maml:para /></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>Example 2: Get backups created between two dates</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Get-AzureStorSimpleDeviceBackup -DeviceName "Contoso63-AppVm" -From "9/7/2014" -To "10/7/2014" -First 2 -Skip 1 BackupJobCreationType : BySchedule CreatedOn : 10/5/2014 11:00:04 AM SizeInBytes : 10737418240 @@ -180,8 +138,6 @@ SSMHostName : Type : CloudSnapshot InstanceId : ec2fdf5c-c807-4f7b-a942-d4c4a9b68c44 Name : ContosoTSQA_Default -OperationInProgress : None - BackupJobCreationType : BySchedule CreatedOn : 10/4/2014 11:00:06 AM SizeInBytes : 10737418240 @@ -189,13 +145,10 @@ Snapshots : {ContosoTSQA} SSMHostName : Type : CloudSnapshot InstanceId : 5ac4f947-f4c6-4770-9000-2242e72fc6d3 -Name : ContosoTSQA_Default -OperationInProgress : None - -VERBOSE: # of backups returned : 2 +Name : ContosoTSQA_DefaultVERBOSE: # of backups returned : 2 VERBOSE: More backups are available for your query. To access the next page of your result use \"-First 2 -Skip 3\" in your commandlet -</dev:code><dev:remarks><maml:para>This command gets backups on the device named Contoso63-AppVm that were created on or after 10/7/2014 and on or before 10/8/2014. This cmdlet skips the first result and returns the first two results after that first result. Modify values for First and Skip to view other results.</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>Example 3: Get backups for a backup policy ID</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Get-AzureStorSimpleDeviceBackup -DeviceName "Contoso63-AppVm" -BackupPolicyId "de088eac-b283-4d92-b501-a759845fdf3f" -First 10 -From "9/7/2014" +</dev:code><dev:remarks><maml:para>This command gets backups on the device named Contoso63-AppVm that were created on or after 10/7/2014 and on or before 10/8/2014. This cmdlet skips the first result and returns the first two results after that first result. Modify values for First and Skip to view other results.</maml:para><maml:para /><maml:para /></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>Example 3: Get backups for a backup policy ID</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Get-AzureStorSimpleDeviceBackup -DeviceName "Contoso63-AppVm" -BackupPolicyId "de088eac-b283-4d92-b501-a759845fdf3f" -First 10 -From "9/7/2014" BackupJobCreationType : BySchedule CreatedOn : 10/1/2014 11:00:12 AM SizeInBytes : 10737418240 @@ -204,8 +157,6 @@ SSMHostName : Type : CloudSnapshot InstanceId : e1aec9f1-a321-443f-a058-ba78c749c2c2 Name : ContosoTSQA_Default -OperationInProgress : None - ....... BackupJobCreationType : BySchedule @@ -216,12 +167,10 @@ SSMHostName : Type : CloudSnapshot InstanceId : f8041928-37b9-4048-a99c-2d3078943874 Name : ContosoTSQA_Default -OperationInProgress : None - VERBOSE: # of backups returned : 10 VERBOSE: More backups are available for your query. To access the next page of your result use \"-First 10 -Skip 10\" in your commandlet -</dev:code><dev:remarks><maml:para>This command gets backups on the device named Contoso63-AppVm created on or before the specified date. The command gets backups that were created by using the backup policy that has the specified ID. This command specifies the First parameter, so it returns only the first 10 results.</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>Example 4: Get backups for a backup policy object</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Get-AzureStorSimpleDeviceBackupPolicy -DeviceName "Contoso63-AppVm" -BackupPolicyName "TSQATest_Default" | Get-AzureStorSimpleDeviceBackup -DeviceName "Contoso63-AppVm" -First 10 -From "9/7/2014" +</dev:code><dev:remarks><maml:para>This command gets backups on the device named Contoso63-AppVm created on or before the specified date. The command gets backups that were created by using the backup policy that has the specified ID. This command specifies the First parameter, so it returns only the first 10 results.</maml:para><maml:para /><maml:para /></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>Example 4: Get backups for a backup policy object</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Get-AzureStorSimpleDeviceBackupPolicy -DeviceName "Contoso63-AppVm" -BackupPolicyName "TSQATest_Default" | Get-AzureStorSimpleDeviceBackup -DeviceName "Contoso63-AppVm" -First 10 -From "9/7/2014" BackupJobCreationType : BySchedule CreatedOn : 10/1/2014 11:00:12 AM SizeInBytes : 10737418240 @@ -230,8 +179,6 @@ SSMHostName : Type : CloudSnapshot InstanceId : e1aec9f1-a321-443f-a058-ba78c749c2c2 Name : ContosoTSQA_Default -OperationInProgress : None - ....... BackupJobCreationType : BySchedule @@ -242,12 +189,10 @@ SSMHostName : Type : CloudSnapshot InstanceId : f8041928-37b9-4048-a99c-2d3078943874 Name : ContosoTSQA_Default -OperationInProgress : None - VERBOSE: # of backups returned : 10 VERBOSE: More backups are available for your query. To access the next page of your result use \"-First 10 -Skip 10\" in your commandlet -</dev:code><dev:remarks><maml:para>This command gets a BackupPolicyDetails object by using the Get-AzureStorSimpleDeviceBackupPolicy cmdlet, and then passes that object to the current cmdlet by using the pipeline operator. That cmdlet gets backups for the device named Contoso63-AppVm created by using the backup policy from the first part of the command. The command gets backups created on or before the specified date, just as in the previous example. This command returns only the first 10 results. </maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>Example 5: Get a backup for a volume ID</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Get-AzureStorSimpleDeviceBackup -DeviceName "Contoso63-AppVm" -VolumeId "SS-VOL-246b9df1-11bb-4071-8043-f955cc406446" -First 1 +</dev:code><dev:remarks><maml:para>This command gets a BackupPolicyDetails object by using the Get-AzureStorSimpleDeviceBackupPolicy cmdlet, and then passes that object to the current cmdlet by using the pipeline operator. That cmdlet gets backups for the device named Contoso63-AppVm created by using the backup policy from the first part of the command. The command gets backups created on or before the specified date, just as in the previous example. This command returns only the first 10 results. </maml:para><maml:para /><maml:para /></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>Example 5: Get a backup for a volume ID</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Get-AzureStorSimpleDeviceBackup -DeviceName "Contoso63-AppVm" -VolumeId "SS-VOL-246b9df1-11bb-4071-8043-f955cc406446" -First 1 BackupJobCreationType : BySchedule CreatedOn : 10/9/2014 11:00:10 AM SizeInBytes : 10737418240 @@ -256,11 +201,10 @@ SSMHostName : Type : CloudSnapshot InstanceId : 4fef4178-0145-404b-8257-7d958a380b8b Name : ContosoTSQA_Default -OperationInProgress : None VERBOSE: # of backups returned : 1 VERBOSE: No more backup sets are present for your query! -</dev:code><dev:remarks><maml:para>This command gets a backup on the device that is created on the volume that has the specified instance ID. This command specifies the First parameter, so it returns only the first one result. </maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>Example 6: Get a backup for a volume name</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Get-AzureStorSimpleDeviceVolume -DeviceName "Contoso63-AppVm" -VolumeName "TSQATest03" | Get-AzureStorSimpleDeviceBackup -DeviceName "Contoso63-AppVm" -First 1 +</dev:code><dev:remarks><maml:para>This command gets a backup on the device that is created on the volume that has the specified instance ID. This command specifies the First parameter, so it returns only the first one result. </maml:para><maml:para /><maml:para /></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>Example 6: Get a backup for a volume name</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Get-AzureStorSimpleDeviceVolume -DeviceName "Contoso63-AppVm" -VolumeName "TSQATest03" | Get-AzureStorSimpleDeviceBackup -DeviceName "Contoso63-AppVm" -First 1 BackupJobCreationType : BySchedule CreatedOn : 10/9/2014 11:00:10 AM SizeInBytes : 10737418240 @@ -269,11 +213,10 @@ SSMHostName : Type : CloudSnapshot InstanceId : 4fef4178-0145-404b-8257-7d958a380b8b Name : ContosoTSQA_Default -OperationInProgress : None VERBOSE: # of backups returned : 1 VERBOSE: No more backup sets are present for your query! -</dev:code><dev:remarks><maml:para>This command gets a VirtualDisk object by using the Get-AzureStorSimpleDeviceVolume cmdlet, and then passes that object to the current cmdlet by using the pipeline operator. That cmdlet gets backups for the device named Contoso63-AppVm created on the volume from the first part of the command. This command returns only the first result. </maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example></command:examples><maml:relatedLinks><maml:navigationLink><maml:linkText>Remove-AzureStorSimpleDeviceBackup</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>Get-AzureStorSimpleDeviceBackupPolicy</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>Get-AzureStorSimpleDeviceVolume</maml:linkText><maml:uri /></maml:navigationLink></maml:relatedLinks></command:command><command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><command:details><command:name>Get-AzureStorSimpleDeviceBackupPolicy</command:name><maml:description><maml:para>Gets backup policies.</maml:para></maml:description><maml:copyright><maml:para /></maml:copyright><command:verb>Get</command:verb><command:noun>AzureStorSimpleDeviceBackupPolicy</command:noun><dev:version /></command:details><maml:description><maml:para>The Get-AzureStorSimpleDeviceBackupPolicy cmdlet gets backup policies. This cmdlet returns a BackupPolicy object or a list of all the BackupPolicy objects that belong to a device. The backup policy objects contain the following properties: +</dev:code><dev:remarks><maml:para>This command gets a VirtualDisk object by using the Get-AzureStorSimpleDeviceVolume cmdlet, and then passes that object to the current cmdlet by using the pipeline operator. That cmdlet gets backups for the device named Contoso63-AppVm created on the volume from the first part of the command. This command returns only the first result. </maml:para><maml:para /><maml:para /></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example></command:examples><maml:relatedLinks><maml:navigationLink><maml:linkText>Remove-AzureStorSimpleDeviceBackup</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>Get-AzureStorSimpleDeviceBackupPolicy</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>Get-AzureStorSimpleDeviceVolume</maml:linkText><maml:uri /></maml:navigationLink></maml:relatedLinks></command:command><command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><command:details><command:name>Get-AzureStorSimpleDeviceBackupPolicy</command:name><maml:description><maml:para>Gets backup policies.</maml:para></maml:description><maml:copyright><maml:para /></maml:copyright><command:verb>Get</command:verb><command:noun>AzureStorSimpleDeviceBackupPolicy</command:noun><dev:version /></command:details><maml:description><maml:para>The Get-AzureStorSimpleDeviceBackupPolicy cmdlet gets backup policies. This cmdlet returns a BackupPolicy object or a list of all the BackupPolicy objects that belong to a device. The backup policy objects contain the following properties: -- Name -- InstanceId @@ -282,7 +225,7 @@ VERBOSE: No more backup sets are present for your query! -- NextBackup -- SchedulesCount -- SSMHostName --- VolumesCount</maml:para></maml:description><command:syntax><command:syntaxItem><maml:name>Get-AzureStorSimpleDeviceBackupPolicy</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>DeviceName</maml:name><maml:description><maml:para>Specifies the name of the StorSimple device on which to create the backup policy.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="Name"><maml:name>BackupPolicyName</maml:name><maml:description><maml:para>Specifies the name of the backup policy to get. If you do not specify this parameter, this cmdlet gets all policies.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">String</command:parameterValue></command:parameter></command:syntaxItem></command:syntax><command:parameters><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="Name"><maml:name>BackupPolicyName</maml:name><maml:description><maml:para>Specifies the name of the backup policy to get. If you do not specify this parameter, this cmdlet gets all policies.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>DeviceName</maml:name><maml:description><maml:para>Specifies the name of the StorSimple device on which to create the backup policy.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter></command:parameters><command:inputTypes><command:inputType><dev:type><maml:name>None</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para></maml:para></maml:description></command:inputType></command:inputTypes><command:returnValues><command:returnValue><dev:type><maml:name>IList&lt;BackupPolicy&gt;, BackupPolicyDetails</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para>This cmdlet returns a BackupPolicyDetails object, if you specify the BackupPolicyName parameter. If you do not specify that parameter, it returns an IList&lt;BackupPolicy&gt; object. </maml:para></maml:description></command:returnValue></command:returnValues><command:terminatingErrors /><command:nonTerminatingErrors /><command:examples><command:example><maml:title>Example 1: Get details for a policy</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Get-AzureStorSimpleDeviceBackupPolicy -DeviceName "Contoso63-AppVm" -BackupPolicyName "GeneralBackupPolicy07" +-- VolumesCount</maml:para></maml:description><command:syntax><command:syntaxItem><maml:name>Get-AzureStorSimpleDeviceBackupPolicy</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>DeviceName</maml:name><maml:description><maml:para>Specifies the name of the StorSimple device on which to create the backup policy.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="Name"><maml:name>BackupPolicyName</maml:name><maml:description><maml:para>Specifies the name of the backup policy to get. If you do not specify this parameter, this cmdlet gets all policies.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">Microsoft.Azure.Common.Authentication.Models.AzureProfile</command:parameterValue></command:parameter></command:syntaxItem></command:syntax><command:parameters><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="Name"><maml:name>BackupPolicyName</maml:name><maml:description><maml:para>Specifies the name of the backup policy to get. If you do not specify this parameter, this cmdlet gets all policies.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>DeviceName</maml:name><maml:description><maml:para>Specifies the name of the StorSimple device on which to create the backup policy.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">Microsoft.Azure.Common.Authentication.Models.AzureProfile</command:parameterValue><dev:type><maml:name>Microsoft.Azure.Common.Authentication.Models.AzureProfile</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter></command:parameters><command:inputTypes><command:inputType><dev:type><maml:name>None</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para></maml:para></maml:description></command:inputType></command:inputTypes><command:returnValues><command:returnValue><dev:type><maml:name>IList&lt;BackupPolicy&gt;, BackupPolicyDetails</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para>This cmdlet returns a BackupPolicyDetails object, if you specify the BackupPolicyName parameter. If you do not specify that parameter, it returns an IList&lt;BackupPolicy&gt; object. </maml:para></maml:description></command:returnValue></command:returnValues><command:terminatingErrors /><command:nonTerminatingErrors /><command:examples><command:example><maml:title>Example 1: Get details for a policy</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Get-AzureStorSimpleDeviceBackupPolicy -DeviceName "Contoso63-AppVm" -BackupPolicyName "GeneralBackupPolicy07" VERBOSE: ClientRequestId: 2a878cd6-8432-4646-8be8-a0cb0750958e_PS VERBOSE: ClientRequestId: 00ea5a6d-8c27-4e22-b182-5969cdbb8033_PS VERBOSE: ClientRequestId: 39dac9ff-4455-45ae-ae3d-7de1445b9520_PS @@ -301,34 +244,17 @@ Name : GeneralBackupPolicy07 OperationInProgress : None VERBOSE: BackupPolicy with id 84140a6a-9254-4fff-8d09-ae40e9f1bc7d found! -</dev:code><dev:remarks><maml:para>This command gets a BackupPolicyDetails object named GeneralBackupPolicy07 on the device named Contoso63-AppVm. </maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>Example 2: Get a list of backup policies</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Get-AzureStorSimpleDeviceBackupPolicy -DeviceName "Contoso63-AppVm" -VERBOSE: ClientRequestId: 09d46116-ebc6-4cf8-a010-f8bbce39a932_PS -VERBOSE: ClientRequestId: 1bcbbfa8-7add-42c9-b8f8-73d89955b4f5_PS -VERBOSE: ClientRequestId: 0f5d0a1a-951c-4cf3-a1e6-ad4e20af9652_PS - - -BackupPolicyCreationType : BySaaS -LastBackup : -NextBackup : 16-12-2014 00:30:00 -SchedulesCount : 1 -SSMHostName : -VolumesCount : 2 -InstanceId : 03509359-3d7b-4b96-9165-28472e159563 -Name : GeneralBackupPolicy07 -OperationInProgress : None - -BackupPolicyCreationType : BySaaS -LastBackup : -NextBackup : 16-12-2014 00:30:00 -SchedulesCount : 1 -SSMHostName : -VolumesCount : 2 -InstanceId : 84140a6a-9254-4fff-8d09-ae40e9f1bc7d -Name : GeneralBackupPolicy16 -OperationInProgress : None - -VERBOSE: 2 backup policies found! -</dev:code><dev:remarks><maml:para>This command lists the BackupPolicy objects on the device named Contoso63-AppVm. </maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example></command:examples><maml:relatedLinks><maml:navigationLink><maml:linkText>New-AzureStorSimpleDeviceBackupPolicy</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>Remove-AzureStorSimpleDeviceBackupPolicy</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>Set-AzureStorSimpleDeviceBackupPolicy</maml:linkText><maml:uri /></maml:navigationLink></maml:relatedLinks></command:command><command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><command:details><command:name>Get-AzureStorSimpleDeviceConnectedInitiator</command:name><maml:description><maml:para>Gets the iSCSI connections available for a StorSimple device.</maml:para></maml:description><maml:copyright><maml:para /></maml:copyright><command:verb>Get</command:verb><command:noun>AzureStorSimpleDeviceConnectedInitiator</command:noun><dev:version /></command:details><maml:description><maml:para>The Get-AzureStorSimpleDeviceConnectedInitiator cmdlet gets a list of the iSCSI connections available for a StorSimple device. The iSCSI connection objects that this cmdlet returns contain the following properties: +</dev:code><dev:remarks><maml:para>This command gets a BackupPolicyDetails object named GeneralBackupPolicy07 on the device named Contoso63-AppVm. </maml:para><maml:para /><maml:para /></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>Example 2: Get a list of backup policies</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Get-AzureStorSimpleDeviceBackupPolicy -DeviceName "Contoso63-AppVm" +InstanceId Name SchedulesCount VolumesCount BackupPolicyCreationType LastBackup NextBackup SSMHostName +---------- ---- -------------- ------------ ------------------------ ---------- ---------- ----------- +13db29a4-bba9-4871-b872-db1fa0506b16 VG Clones 1 2 BySaaS 4/15/2015 8:30:02 AM 4/15/2015 8:30:00 PM +2dcd3002-13c4-4bdb-a1ef-b35ce0a29416 vg-all 1 4 BySaaS 3/27/2015 9:12:15 PM 1/1/2010 5:30:00 AM +54828d08-8309-4bd4-828f-21904863fb4c Cloud_Snapshot_Vol3_clone VG 1 1 BySaaS 4/15/2015 9:00:03 AM 4/17/2015 9:00:30 AM +6a51f39e-0ec9-4c57-8ec9-14a9255efa95 Test Group 0 2 BySaaS 3/27/2015 1:47:00 AM 1/1/2010 5:30:00 AM +81c2db43-38f7-45fc-b2f2-476d1f6039a7 Cloud_Snapshot_Vol1_clone VG 1 1 BySaaS 4/15/2015 7:30:02 AM 4/17/2015 7:30:00 AM +82c4a5be-7473-431f-86e7-9db31ee9a9f8 Cloud_Snapshot_vg-all 1 4 BySaaS 4/15/2015 11:30:02 AM 4/15/2015 3:30:00 PM +cda96e83-3b38-4345-a56d-c8a96a0e57b3 Snapshot_vg-all 1 4 BySaaS 4/15/2015 1:30:02 PM 4/15/2015 3:30:00 PM +</dev:code><dev:remarks><maml:para>This command lists the BackupPolicy objects on the device named Contoso63-AppVm. </maml:para><maml:para /><maml:para /></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example></command:examples><maml:relatedLinks><maml:navigationLink><maml:linkText>New-AzureStorSimpleDeviceBackupPolicy</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>Remove-AzureStorSimpleDeviceBackupPolicy</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>Set-AzureStorSimpleDeviceBackupPolicy</maml:linkText><maml:uri /></maml:navigationLink></maml:relatedLinks></command:command><command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><command:details><command:name>Get-AzureStorSimpleDeviceConnectedInitiator</command:name><maml:description><maml:para>Gets the iSCSI connections available for a StorSimple device.</maml:para></maml:description><maml:copyright><maml:para /></maml:copyright><command:verb>Get</command:verb><command:noun>AzureStorSimpleDeviceConnectedInitiator</command:noun><dev:version /></command:details><maml:description><maml:para>The Get-AzureStorSimpleDeviceConnectedInitiator cmdlet gets a list of the iSCSI connections available for a StorSimple device. The iSCSI connection objects that this cmdlet returns contain the following properties: -- AcrInstanceId -- AcrName @@ -336,7 +262,7 @@ VERBOSE: 2 backup policies found! -- InitiatorAddress -- Interfaces -- Iqn --- IscsiConnectionId</maml:para><maml:para>This cmdlet gets connection object only if iSCSI connections are turned on for the device. By default, connections are turned off. </maml:para></maml:description><command:syntax><command:syntaxItem><maml:name>Get-AzureStorSimpleDeviceConnectedInitiator</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="ID"><maml:name>DeviceId</maml:name><maml:description><maml:para>Specifies the instance ID of the StorSimple device from which to get iSCSI initiators.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter></command:syntaxItem><command:syntaxItem><maml:name>Get-AzureStorSimpleDeviceConnectedInitiator</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="Name"><maml:name>DeviceName</maml:name><maml:description><maml:para>Specifies the name of the StorSimple device from which to get iSCSI initiators.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter></command:syntaxItem></command:syntax><command:parameters><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="ID"><maml:name>DeviceId</maml:name><maml:description><maml:para>Specifies the instance ID of the StorSimple device from which to get iSCSI initiators.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="Name"><maml:name>DeviceName</maml:name><maml:description><maml:para>Specifies the name of the StorSimple device from which to get iSCSI initiators.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter></command:parameters><command:inputTypes><command:inputType><dev:type><maml:name>None</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para></maml:para></maml:description></command:inputType></command:inputTypes><command:returnValues><command:returnValue><dev:type><maml:name>List&lt;IscsiConnection&gt;</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para>This cmdlet returns an iSCSI connection object that contains the following properties: +-- IscsiConnectionId</maml:para><maml:para>This cmdlet gets connection object only if iSCSI connections are turned on for the device. By default, connections are turned off. </maml:para></maml:description><command:syntax><command:syntaxItem><maml:name>Get-AzureStorSimpleDeviceConnectedInitiator</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="ID"><maml:name>DeviceId</maml:name><maml:description><maml:para>Specifies the instance ID of the StorSimple device from which to get iSCSI initiators.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">Microsoft.Azure.Common.Authentication.Models.AzureProfile</command:parameterValue></command:parameter></command:syntaxItem><command:syntaxItem><maml:name>Get-AzureStorSimpleDeviceConnectedInitiator</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="Name"><maml:name>DeviceName</maml:name><maml:description><maml:para>Specifies the name of the StorSimple device from which to get iSCSI initiators.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">Microsoft.Azure.Common.Authentication.Models.AzureProfile</command:parameterValue></command:parameter></command:syntaxItem></command:syntax><command:parameters><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="ID"><maml:name>DeviceId</maml:name><maml:description><maml:para>Specifies the instance ID of the StorSimple device from which to get iSCSI initiators.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="Name"><maml:name>DeviceName</maml:name><maml:description><maml:para>Specifies the name of the StorSimple device from which to get iSCSI initiators.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">Microsoft.Azure.Common.Authentication.Models.AzureProfile</command:parameterValue><dev:type><maml:name>Microsoft.Azure.Common.Authentication.Models.AzureProfile</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter></command:parameters><command:inputTypes><command:inputType><dev:type><maml:name>None</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para></maml:para></maml:description></command:inputType></command:inputTypes><command:returnValues><command:returnValue><dev:type><maml:name>List&lt;IscsiConnection&gt;</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para>This cmdlet returns an iSCSI connection object that contains the following properties: -- AcrInstanceId -- AcrName @@ -359,7 +285,7 @@ Iqn : iqn10 IscsiConnectionId : cfc144cb-00f1-44b1-9655-80b431f2161b VERBOSE: 1 Iscsi Connection found! -</dev:code><dev:remarks><maml:para>This command gets all iSCSI connections for the device named Contoso63-AppVm. This command returns connections only if connections are turned on for the device.</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example></command:examples><maml:relatedLinks><maml:navigationLink><maml:linkText>Get-AzureStorSimpleAccessControlRecord</maml:linkText><maml:uri /></maml:navigationLink></maml:relatedLinks></command:command><command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><command:details><command:name>Get-AzureStorSimpleDeviceVolume</command:name><maml:description><maml:para>Gets volumes on a device.</maml:para></maml:description><maml:copyright><maml:para /></maml:copyright><command:verb>Get</command:verb><command:noun>AzureStorSimpleDeviceVolume</command:noun><dev:version /></command:details><maml:description><maml:para>The Get-AzureStorSimpleDeviceVolume cmdlet gets a list of volumes for a specified volume container, or volume that has the specified name. The returned object contains the following properties: +</dev:code><dev:remarks><maml:para>This command gets all iSCSI connections for the device named Contoso63-AppVm. This command returns connections only if connections are turned on for the device.</maml:para><maml:para /><maml:para /></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example></command:examples><maml:relatedLinks><maml:navigationLink><maml:linkText>Get-AzureStorSimpleAccessControlRecord</maml:linkText><maml:uri /></maml:navigationLink></maml:relatedLinks></command:command><command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><command:details><command:name>Get-AzureStorSimpleDeviceVolume</command:name><maml:description><maml:para>Gets volumes on a device.</maml:para></maml:description><maml:copyright><maml:para /></maml:copyright><command:verb>Get</command:verb><command:noun>AzureStorSimpleDeviceVolume</command:noun><dev:version /></command:details><maml:description><maml:para>The Get-AzureStorSimpleDeviceVolume cmdlet gets a list of volumes for a specified volume container, or volume that has the specified name. The returned object contains the following properties: -- AccessType -- AcrList @@ -374,74 +300,59 @@ VERBOSE: 1 Iscsi Connection found! -- Online -- OperationInProgress -- SizeInBytes --- VSN</maml:para></maml:description><command:syntax><command:syntaxItem><maml:name>Get-AzureStorSimpleDeviceVolume</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>DeviceName</maml:name><maml:description><maml:para>Specifies the name of the StorSimple device from which to get volumes.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue)" position="2" aliases="none"><maml:name>VolumeContainer</maml:name><maml:description><maml:para>Specifies the volume container, as a DataContainer object, that includes the volumes to get. To obtain a DataContainer, use the Get-AzureStorSimpleDeviceVolumeContainer cmdlet.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">DataContainer</command:parameterValue></command:parameter></command:syntaxItem><command:syntaxItem><maml:name>Get-AzureStorSimpleDeviceVolume</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>DeviceName</maml:name><maml:description><maml:para>Specifies the name of the StorSimple device from which to get volumes.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="Name"><maml:name>VolumeName</maml:name><maml:description><maml:para>Specifies the name of the volume to get. </maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter></command:syntaxItem></command:syntax><command:parameters><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>DeviceName</maml:name><maml:description><maml:para>Specifies the name of the StorSimple device from which to get volumes.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue)" position="2" aliases="none"><maml:name>VolumeContainer</maml:name><maml:description><maml:para>Specifies the volume container, as a DataContainer object, that includes the volumes to get. To obtain a DataContainer, use the Get-AzureStorSimpleDeviceVolumeContainer cmdlet.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">DataContainer</command:parameterValue><dev:type><maml:name>DataContainer</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="Name"><maml:name>VolumeName</maml:name><maml:description><maml:para>Specifies the name of the volume to get. </maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter></command:parameters><command:inputTypes><command:inputType><dev:type><maml:name>DataContainer</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para>This cmdlet accepts a DataContainer object that contains the volume to get.</maml:para></maml:description></command:inputType></command:inputTypes><command:returnValues><command:returnValue><dev:type><maml:name>VirtualDisk, IList&lt;VirtualDisk&gt;</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para>This cmdlet returns a VirtualDisk object if you specify the VolumeName parameter. If you specify the VolumeContainer, this cmdlet returns an IList&lt;VirtualDisk&gt; object.</maml:para></maml:description></command:returnValue></command:returnValues><command:terminatingErrors /><command:nonTerminatingErrors /><command:examples><command:example><maml:title>Example 1: Get volumes in a specified container</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Get-AzureStorSimpleDeviceVolumeContainer -DeviceName "Contoso63-AppVm" -VolumeContainerName "Container03" | Get-AzureStorSimpleDeviceVolume -DeviceName "Contoso63-AppVm" -VERBOSE: ClientRequestId: d3202cf7-2cb5-45ce-838d-6fa812dc670a_PS -VERBOSE: ClientRequestId: 53c4f0ed-881a-47ae-8383-7469724ffc4a_PS -VERBOSE: ClientRequestId: f0754861-682c-406f-8aed-90f853dc030c_PS -VERBOSE: ClientRequestId: 16d9ab47-179a-4297-93a7-1ba56f9f5ac8_PS -VERBOSE: ClientRequestId: e3a6cec0-ef9c-4c31-8477-3f430dc1ae2d_PS -VERBOSE: ClientRequestId: 1aab1c85-9039-452c-91cd-30b3eb0e30bd_PS -VERBOSE: 2 volumes found for your volume container! -VERBOSE: Volume container with name: Container03 is found. - +-- VSN</maml:para></maml:description><command:syntax><command:syntaxItem><maml:name>Get-AzureStorSimpleDeviceVolume</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>DeviceName</maml:name><maml:description><maml:para>Specifies the name of the StorSimple device from which to get volumes.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue)" position="2" aliases="none"><maml:name>VolumeContainer</maml:name><maml:description><maml:para>Specifies the volume container, as a DataContainer object, that includes the volumes to get. To obtain a DataContainer, use the Get-AzureStorSimpleDeviceVolumeContainer cmdlet.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">DataContainer</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">Microsoft.Azure.Common.Authentication.Models.AzureProfile</command:parameterValue></command:parameter></command:syntaxItem><command:syntaxItem><maml:name>Get-AzureStorSimpleDeviceVolume</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>DeviceName</maml:name><maml:description><maml:para>Specifies the name of the StorSimple device from which to get volumes.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="Name"><maml:name>VolumeName</maml:name><maml:description><maml:para>Specifies the name of the volume to get. </maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">Microsoft.Azure.Common.Authentication.Models.AzureProfile</command:parameterValue></command:parameter></command:syntaxItem></command:syntax><command:parameters><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>DeviceName</maml:name><maml:description><maml:para>Specifies the name of the StorSimple device from which to get volumes.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">Microsoft.Azure.Common.Authentication.Models.AzureProfile</command:parameterValue><dev:type><maml:name>Microsoft.Azure.Common.Authentication.Models.AzureProfile</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue)" position="2" aliases="none"><maml:name>VolumeContainer</maml:name><maml:description><maml:para>Specifies the volume container, as a DataContainer object, that includes the volumes to get. To obtain a DataContainer, use the Get-AzureStorSimpleDeviceVolumeContainer cmdlet.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">DataContainer</command:parameterValue><dev:type><maml:name>DataContainer</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="Name"><maml:name>VolumeName</maml:name><maml:description><maml:para>Specifies the name of the volume to get. </maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter></command:parameters><command:inputTypes><command:inputType><dev:type><maml:name>DataContainer</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para>This cmdlet accepts a DataContainer object that contains the volume to get.</maml:para></maml:description></command:inputType></command:inputTypes><command:returnValues><command:returnValue><dev:type><maml:name>VirtualDisk, IList&lt;VirtualDisk&gt;</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para>This cmdlet returns a VirtualDisk object if you specify the VolumeName parameter. If you specify the VolumeContainer, this cmdlet returns an IList&lt;VirtualDisk&gt; object.</maml:para></maml:description></command:returnValue></command:returnValues><command:terminatingErrors /><command:nonTerminatingErrors /><command:examples><command:example><maml:title>Example 1: Get volumes in a specified container</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Get-AzureStorSimpleDeviceVolumeContainer -DeviceName "Contoso63-AppVm" -VolumeContainerName "Container03" | Get-AzureStorSimpleDeviceVolume -DeviceName "Contoso63-AppVm" +InstanceId : BA-1503262017214433280-ade42af6-dabb-449d-b66b-4f5d06891d4c +Name : Volume 1 Clone +Online : True +SizeInBytes : 3298534883328 AccessType : ReadWrite -AcrIdList : {} -AcrList : {acr101, acr104} -AppType : PrimaryVolume -DataContainer : Microsoft.WindowsAzure.Management.StorSimple.Models.DataContainer -DataContainerId : e8860763-7e04-4fca-9506-e5023251deb8 -InstanceId : SS-VOL-dfd27819-b445-41f8-a6c0-f44e98a26a9a -InternalInstanceId : -IsBackupEnabled : False +AcrList : {Windows_XYUSFL718-RV_ACR} +AppType : Invalid +DataContainerId : 127135b6-92de-4f53-850d-70e1f9a38cbe +IsBackupEnabled : True IsDefaultBackupEnabled : False IsMonitoringEnabled : False -Name : Volume01 -Online : True -OperationInProgress : None -SizeInBytes : 2000000000 -VSN : SS-VOL-dfd27819-b445-41f8-a6c0-f44e98a26a9a +VSN : BA-1503262017214433280-ade42af6-dabb-449d-b66b-4f5d06891d4c +InstanceId : BA-1503262017366008684-cf8bb1a3-21e5-4cfc-ba0d-bfe238d77ebe +Name : Volume 3 Clone +Online : True +SizeInBytes : 1717986918400 AccessType : ReadWrite -AcrIdList : {} -AcrList : {acr101, acr104} -AppType : PrimaryVolume -DataContainer : Microsoft.WindowsAzure.Management.StorSimple.Models.DataContainer -DataContainerId : e8860763-7e04-4fca-9506-e5023251deb8 -InstanceId : SS-VOL-e993efaa-7689-494b-ae55-1873e6875a47 -InternalInstanceId : -IsBackupEnabled : False +AcrList : {Linux_XYUSFL719_ACR} +AppType : Invalid +DataContainerId : 127135b6-92de-4f53-850d-70e1f9a38cbe +IsBackupEnabled : True IsDefaultBackupEnabled : False IsMonitoringEnabled : False -Name : Volume02 -Online : True -OperationInProgress : None -SizeInBytes : 2000000000 -VSN : SS-VOL-e993efaa-7689-494b-ae55-1873e6875a47 -</dev:code><dev:remarks><maml:para>This command gets the volume container named Container03 on the device named Contoso63-AppVm by using the Get-AzureStorSimpleDeviceVolumeContainer cmdlet. The command uses the pipeline operator to pass that container to the current cmdlet. That cmdlet gets all the volumes in that container for the device named Contoso63-AppVm.</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>Example 2: Get a volume by using its name</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Get-AzureStorSimpleDeviceVolume -DeviceName "Contoso63-AppVm" -VolumeName "Volume18" -VERBOSE: ClientRequestId: 4f2f4716-6315-456a-966b-7020c1d7503f_PS -VERBOSE: ClientRequestId: a53fcae1-a459-4b8b-b690-58d39bb82fb7_PS -VERBOSE: ClientRequestId: 1f053107-e781-4a70-ac6d-74ca9ef3b4d2_PS - +VSN : BA-1503262017366008684-cf8bb1a3-21e5-4cfc-ba0d-bfe238d77ebe +InstanceId : SS-VOL-2180be94-36f1-473e-a42b-a3ebd2cdb481 +Name : Volume 4 +Online : True +SizeInBytes : 1610612736000 AccessType : ReadWrite -AcrIdList : {} -AcrList : { EvanNarvaez, DavidChew, ElisaDaugherty PattiFuller } -AppType : PrimaryVolume -DataContainer : Microsoft.WindowsAzure.Management.StorSimple.Models.DataContainer -DataContainerId : 04ea9aad-7a56-4a50-b195-86061b0a810a -InstanceId : SS-VOL-e84e0105-7510-4eda-9829-069a2a02d118 -InternalInstanceId : -IsBackupEnabled : False +AcrList : {Linux_XYUSFL719_ACR} +AppType : Invalid +DataContainerId : 127135b6-92de-4f53-850d-70e1f9a38cbe +IsBackupEnabled : True IsDefaultBackupEnabled : False IsMonitoringEnabled : False +VSN : SS-VOL-2180be94-36f1-473e-a42b-a3ebd2cdb481 +</dev:code><dev:remarks><maml:para>This command gets the volume container named Container03 on the device named Contoso63-AppVm by using the Get-AzureStorSimpleDeviceVolumeContainer cmdlet. The command uses the pipeline operator to pass that container to the current cmdlet. That cmdlet gets all the volumes in that container for the device named Contoso63-AppVm.</maml:para><maml:para /><maml:para /></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>Example 2: Get a volume by using its name</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Get-AzureStorSimpleDeviceVolume -DeviceName "Contoso63-AppVm" -VolumeName "Volume18" +InstanceId : SS-VOL-c75e9636-1dcf-43db-92df-3af1ecf3f18a Name : Volume18 Online : True -OperationInProgress : None -SizeInBytes : 2000000000 -VSN : SS-VOL-e84e0105-7510-4eda-9829-069a2a02d118 - -VERBOSE: Volume with name: Volume18 is found. -</dev:code><dev:remarks><maml:para>This command gets the volume named Volume18 on the device named Contoso63-AppVm.</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example></command:examples><maml:relatedLinks><maml:navigationLink><maml:linkText>New-AzureStorSimpleDeviceVolume</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>Remove-AzureStorSimpleDeviceVolume</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>Set-AzureStorSimpleDeviceVolume</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>Get-AzureStorSimpleDeviceVolumeContainer</maml:linkText><maml:uri /></maml:navigationLink></maml:relatedLinks></command:command><command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><command:details><command:name>Get-AzureStorSimpleDeviceVolumeContainer</command:name><maml:description><maml:para>Gets volume containers on a device.</maml:para></maml:description><maml:copyright><maml:para /></maml:copyright><command:verb>Get</command:verb><command:noun>AzureStorSimpleDeviceVolumeContainer</command:noun><dev:version /></command:details><maml:description><maml:para>The Get-AzureStorSimpleDeviceVolumeContainer cmdlet gets a list of volume containers on a device, or volume container that has the specified name. The returned object contains the following properties: +SizeInBytes : 2748779069440 +AccessType : ReadWrite +AcrList : {Windows_XYUSFL718-RV_ACR} +AppType : Invalid +DataContainerId : 127135b6-92de-4f53-850d-70e1f9a38cbe +IsBackupEnabled : True +IsDefaultBackupEnabled : False +IsMonitoringEnabled : False +VSN : SS-VOL-c75e9636-1dcf-43db-92df-3af1ecf3f18a +</dev:code><dev:remarks><maml:para>This command gets the volume named Volume18 on the device named Contoso63-AppVm.</maml:para><maml:para /><maml:para /></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example></command:examples><maml:relatedLinks><maml:navigationLink><maml:linkText>New-AzureStorSimpleDeviceVolume</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>Remove-AzureStorSimpleDeviceVolume</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>Set-AzureStorSimpleDeviceVolume</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>Get-AzureStorSimpleDeviceVolumeContainer</maml:linkText><maml:uri /></maml:navigationLink></maml:relatedLinks></command:command><command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><command:details><command:name>Get-AzureStorSimpleDeviceVolumeContainer</command:name><maml:description><maml:para>Gets volume containers on a device.</maml:para></maml:description><maml:copyright><maml:para /></maml:copyright><command:verb>Get</command:verb><command:noun>AzureStorSimpleDeviceVolumeContainer</command:noun><dev:version /></command:details><maml:description><maml:para>The Get-AzureStorSimpleDeviceVolumeContainer cmdlet gets a list of volume containers on a device, or volume container that has the specified name. The returned object contains the following properties: -- BandwidthRate -- EncryptionKey @@ -453,26 +364,12 @@ VERBOSE: Volume with name: Volume18 is found. -- Owned -- PrimaryStorageAccountCredential -- SecretsEncryptionThumbprint --- VolumeCount</maml:para></maml:description><command:syntax><command:syntaxItem><maml:name>Get-AzureStorSimpleDeviceVolumeContainer</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>DeviceName</maml:name><maml:description><maml:para>Specifies the name of a StorSimple device. This cmdlet gets volume containers from the device that this parameter specifies.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="Name"><maml:name>VolumeContainerName</maml:name><maml:description><maml:para>Specifies the name of the volume container to get.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">String</command:parameterValue></command:parameter></command:syntaxItem></command:syntax><command:parameters><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>DeviceName</maml:name><maml:description><maml:para>Specifies the name of a StorSimple device. This cmdlet gets volume containers from the device that this parameter specifies.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="Name"><maml:name>VolumeContainerName</maml:name><maml:description><maml:para>Specifies the name of the volume container to get.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter></command:parameters><command:inputTypes><command:inputType><dev:type><maml:name>None</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para></maml:para></maml:description></command:inputType></command:inputTypes><command:returnValues><command:returnValue><dev:type><maml:name>DataContainer, IList&lt;DataContainer&gt;</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para>This cmdlet returns a DataContainer object, if you specify the VolumeContainerName parameter. If you do not specify that parameter, this cmdlet returns an IList&lt;DataContainer&gt; object.</maml:para></maml:description></command:returnValue></command:returnValues><command:terminatingErrors /><command:nonTerminatingErrors /><command:examples><command:example><maml:title>Example 1: Get all the containers on a device</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Get-AzureStorSimpleDeviceVolumeContainer -DeviceName "Contoso63-AppVm" -VERBOSE: ClientRequestId: 8d1f3b9a-e0e6-4dae-984c-a034d1366987_PS -VERBOSE: ClientRequestId: 63a11e29-1721-42e7-9fa3-d222308c0b10_PS -VERBOSE: ClientRequestId: b48eca6a-12b4-444d-845b-0953c234b512_PS - - -BandwidthRate : 256 -EncryptionKey : -InstanceId : 04ea9aad-7a56-4a50-b195-86061b0a810a -IsDefault : False -IsEncryptionEnabled : False -Name : Containter03 -OperationInProgress : None -Owned : True -PrimaryStorageAccountCredential : Microsoft.WindowsAzure.Management.StorSimple.Models.StorageAccountCredentialResponse -SecretsEncryptionThumbprint : -VolumeCount : 5 +-- VolumeCount</maml:para></maml:description><command:syntax><command:syntaxItem><maml:name>Get-AzureStorSimpleDeviceVolumeContainer</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>DeviceName</maml:name><maml:description><maml:para>Specifies the name of a StorSimple device. This cmdlet gets volume containers from the device that this parameter specifies.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="Name"><maml:name>VolumeContainerName</maml:name><maml:description><maml:para>Specifies the name of the volume container to get.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">Microsoft.Azure.Common.Authentication.Models.AzureProfile</command:parameterValue></command:parameter></command:syntaxItem></command:syntax><command:parameters><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>DeviceName</maml:name><maml:description><maml:para>Specifies the name of a StorSimple device. This cmdlet gets volume containers from the device that this parameter specifies.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">Microsoft.Azure.Common.Authentication.Models.AzureProfile</command:parameterValue><dev:type><maml:name>Microsoft.Azure.Common.Authentication.Models.AzureProfile</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="Name"><maml:name>VolumeContainerName</maml:name><maml:description><maml:para>Specifies the name of the volume container to get.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter></command:parameters><command:inputTypes><command:inputType><dev:type><maml:name>None</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para></maml:para></maml:description></command:inputType></command:inputTypes><command:returnValues><command:returnValue><dev:type><maml:name>DataContainer, IList&lt;DataContainer&gt;</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para>This cmdlet returns a DataContainer object, if you specify the VolumeContainerName parameter. If you do not specify that parameter, this cmdlet returns an IList&lt;DataContainer&gt; object.</maml:para></maml:description></command:returnValue></command:returnValues><command:terminatingErrors /><command:nonTerminatingErrors /><command:examples><command:example><maml:title>Example 1: Get all the containers on a device</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Get-AzureStorSimpleDeviceVolumeContainer -DeviceName "8600-Bravo 001" +InstanceId Name IsEncryptionEnabled Owned BandwidthRate PrimaryStorageAccountCredential VolumeCount +---------- ---- ------------------- ----- ------------- ------------------------------- ----------- +127135b6-92de-4f53-850d-70e1f9a38cbe Test_Container False True 0 Test_Account 6 -VERBOSE: 1 volume container found! -</dev:code><dev:remarks><maml:para>This command gets a list of the volume containers on the device named Contoso63-AppVm.</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>Example 2: Get a container by using its name</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Get-AzureStorSimpleDeviceVolumeContainer -DeviceName "Contoso63-AppVm" -VolumeContainerName "Container08" +</dev:code><dev:remarks><maml:para>This command gets a list of the volume containers on the device named 8600-Bravo 001.</maml:para><maml:para /><maml:para /></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>Example 2: Get a container by using its name</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Get-AzureStorSimpleDeviceVolumeContainer -DeviceName "Contoso63-AppVm" -VolumeContainerName "Container08" VERBOSE: ClientRequestId: 8027c66a-869b-4ea3-97a2-e17d98ec751c_PS VERBOSE: ClientRequestId: 344f9be5-0887-4d37-98ef-e45c557774f1_PS VERBOSE: ClientRequestId: 14919be5-d6f5-4f81-b7f1-d7fafff2238c_PS @@ -491,97 +388,216 @@ SecretsEncryptionThumbprint : VolumeCount : 5 VERBOSE: Volume container with name: Container03 is found. -</dev:code><dev:remarks><maml:para>This command gets the volume container named Container08 on the device named Contoso63-AppVm.</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example></command:examples><maml:relatedLinks><maml:navigationLink><maml:linkText>New-AzureStorSimpleDeviceVolumeContainer</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>Remove-AzureStorSimpleDeviceVolumeContainer</maml:linkText><maml:uri /></maml:navigationLink></maml:relatedLinks></command:command><command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><command:details><command:name>Get-AzureStorSimpleResource</command:name><maml:description><maml:para>Gets all resources that you created.</maml:para></maml:description><maml:copyright><maml:para /></maml:copyright><command:verb>Get</command:verb><command:noun>AzureStorSimpleResource</command:noun><dev:version /></command:details><maml:description><maml:para>The Get-AzureStorSimpleResource cmdlet gets all resources that you created by using Azure Portal. The cmdlet gets details you can use to connect to the resources.</maml:para></maml:description><command:syntax><command:syntaxItem><maml:name>Get-AzureStorSimpleResource</maml:name></command:syntaxItem></command:syntax><command:parameters></command:parameters><command:inputTypes><command:inputType><dev:type><maml:name>None</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para></maml:para></maml:description></command:inputType></command:inputTypes><command:returnValues><command:returnValue><dev:type><maml:name>IEnumerable&lt;ResourceCredentials&gt;, ResourceCredentials</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para>This cmdlet returns ResourceCredentials objects that contain the following properties: +</dev:code><dev:remarks><maml:para>This command gets the volume container named Container08 on the device named Contoso63-AppVm.</maml:para><maml:para /><maml:para /></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example></command:examples><maml:relatedLinks><maml:navigationLink><maml:linkText>New-AzureStorSimpleDeviceVolumeContainer</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>Remove-AzureStorSimpleDeviceVolumeContainer</maml:linkText><maml:uri /></maml:navigationLink></maml:relatedLinks></command:command><command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><command:details><command:name>Get-AzureStorSimpleFailoverVolumeContainers</command:name><maml:description><maml:para>Gets the volume container groups for device failover.</maml:para></maml:description><maml:copyright><maml:para /></maml:copyright><command:verb>Get</command:verb><command:noun>AzureStorSimpleFailoverVolumeContainers</command:noun><dev:version /></command:details><maml:description><maml:para>The Get-AzureStorSimpleFailoverVolumeContainers cmdlet gets the volume container groups for device failover. Pass a single VolumeContainer group or an array of VolumeContainer groups to the Start-AzureStorSimpleDeviceFailover cmdlet. Only groups that have a value of $True for the IsDCGroupEligibleForDR property are eligible for failover. </maml:para></maml:description><command:syntax><command:syntaxItem><maml:name>Get-AzureStorSimpleFailoverVolumeContainers</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>DeviceId</maml:name><maml:description><maml:para>Specifies the instance ID of the StorSimple device on which to run the cmdlet.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">Microsoft.Azure.Common.Authentication.Models.AzureProfile</command:parameterValue></command:parameter></command:syntaxItem><command:syntaxItem><maml:name>Get-AzureStorSimpleFailoverVolumeContainers</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>DeviceName</maml:name><maml:description><maml:para>Specifies the name of the StorSimple device on which to run the cmdlet. </maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">Microsoft.Azure.Common.Authentication.Models.AzureProfile</command:parameterValue></command:parameter></command:syntaxItem></command:syntax><command:parameters><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>DeviceId</maml:name><maml:description><maml:para>Specifies the instance ID of the StorSimple device on which to run the cmdlet.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>DeviceName</maml:name><maml:description><maml:para>Specifies the name of the StorSimple device on which to run the cmdlet. </maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">Microsoft.Azure.Common.Authentication.Models.AzureProfile</command:parameterValue><dev:type><maml:name>Microsoft.Azure.Common.Authentication.Models.AzureProfile</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter></command:parameters><command:inputTypes><command:inputType><dev:type><maml:name></maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para></maml:para></maml:description></command:inputType></command:inputTypes><command:returnValues><command:returnValue><dev:type><maml:name>IList&lt;DataContainerGroup&gt;</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para>This cmdlet returns a list of VolumeContainer groups.</maml:para></maml:description></command:returnValue></command:returnValues><command:terminatingErrors /><command:nonTerminatingErrors /><command:examples><command:example><maml:title>Example 1: Get failover volume containers</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Get-AzureStorSimpleFailoverVolumeContainers -DeviceName "ChewD_App7" + +DCGroup IneligibilityMessage IsDCGroupEligibleForDR +------- -------------------- ---------------------- +{VolumeContainer1889078... True +{VC_01} No cloud snapshot found False +{VolumeContainer7306959} No cloud snapshot found False +{VolumeContainer407850151} No cloud snapshot found False +</dev:code><dev:remarks><maml:para>This command gets failover volume containers. Only the DCGroups that have a value of $True for the IsDCGroupEligibleForDR property can be used for device failover.</maml:para><maml:para /><maml:para /></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example></command:examples><maml:relatedLinks><maml:navigationLink><maml:linkText>Start-AzureStorSimpleDeviceFailoverJob</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>Get-AzureStorSimpleDeviceVolumeContainer</maml:linkText><maml:uri /></maml:navigationLink></maml:relatedLinks></command:command><command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><command:details><command:name>Get-AzureStorSimpleJob</command:name><maml:description><maml:para>Gets StorSimple jobs. </maml:para></maml:description><maml:copyright><maml:para /></maml:copyright><command:verb>Get</command:verb><command:noun>AzureStorSimpleJob</command:noun><dev:version /></command:details><maml:description><maml:para>The Get-AzureStorSimpleJob cmdlet gets Azure StorSimple jobs. Specify an instance ID to get a specific job. Specify other parameters to limit the jobs that this cmdlet gets. </maml:para><maml:para>This cmdlet can return a maximum of 200 jobs. If more than 200 jobs exist, get the remaining jobs by using the First and Skip parameters. If you specify a value of 100 for Skip and 50 for First, this cmdlet does not return the first 100 results. It returns the next 50 results after the 100 that it skips.</maml:para></maml:description><command:syntax><command:syntaxItem><maml:name>Get-AzureStorSimpleJob</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>DeviceName</maml:name><maml:description><maml:para>Specifies the name of StorSimple device for which the cmdlet gets jobs.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="none"><maml:name>From</maml:name><maml:description><maml:para>Specifies the start date and time for the jobs that this cmdlet gets. This cmdlet gets completed jobs based on their end times.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">DateTime</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>To</maml:name><maml:description><maml:para>Specifies the end date and time for the jobs that this cmdlet gets. This cmdlet gets completed jobs based on their end times. </maml:para></maml:description><command:parameterValue required="false" variableLength="false">DateTime</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">AzureProfile</command:parameterValue></command:parameter></command:syntaxItem><command:syntaxItem><maml:name>Get-AzureStorSimpleJob</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>InstanceId</maml:name><maml:description><maml:para>Specifies the ID of a job to get.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="none"><maml:name>From</maml:name><maml:description><maml:para>Specifies the start date and time for the jobs that this cmdlet gets. This cmdlet gets completed jobs based on their end times.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">DateTime</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>To</maml:name><maml:description><maml:para>Specifies the end date and time for the jobs that this cmdlet gets. This cmdlet gets completed jobs based on their end times. </maml:para></maml:description><command:parameterValue required="false" variableLength="false">DateTime</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">AzureProfile</command:parameterValue></command:parameter></command:syntaxItem><command:syntaxItem><maml:name>Get-AzureStorSimpleJob</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>Status</maml:name><maml:description><maml:para>Specifies the status of the jobs that this cmdlet gets. Valid values are: + +-- Running +-- Completed +-- Cancelled +-- Failed +-- Cancelling +-- CompletedWithErrors</maml:para></maml:description><command:parameterValueGroup><command:parameterValue required="true" variableLength="false">Running</command:parameterValue><command:parameterValue required="true" variableLength="false">Completed</command:parameterValue><command:parameterValue required="true" variableLength="false">Cancelled</command:parameterValue><command:parameterValue required="true" variableLength="false">Failed</command:parameterValue><command:parameterValue required="true" variableLength="false">Cancelling</command:parameterValue><command:parameterValue required="true" variableLength="false">CompletedWithErrors</command:parameterValue></command:parameterValueGroup></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="none"><maml:name>From</maml:name><maml:description><maml:para>Specifies the start date and time for the jobs that this cmdlet gets. This cmdlet gets completed jobs based on their end times.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">DateTime</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>To</maml:name><maml:description><maml:para>Specifies the end date and time for the jobs that this cmdlet gets. This cmdlet gets completed jobs based on their end times. </maml:para></maml:description><command:parameterValue required="false" variableLength="false">DateTime</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">AzureProfile</command:parameterValue></command:parameter></command:syntaxItem><command:syntaxItem><maml:name>Get-AzureStorSimpleJob</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>Type</maml:name><maml:description><maml:para>Specifies the type of the jobs that this cmdlet gets. Valid values are: + +-- Backup +-- ManualBackup +-- Restore +-- CloneWorkflow +-- DeviceRestore +-- Update +-- SupportPackage +-- VirtualApplianceProvisioning</maml:para></maml:description><command:parameterValueGroup><command:parameterValue required="true" variableLength="false">Backup</command:parameterValue><command:parameterValue required="true" variableLength="false">ManualBackup</command:parameterValue><command:parameterValue required="true" variableLength="false">Restore</command:parameterValue><command:parameterValue required="true" variableLength="false">CloneWorkflow</command:parameterValue><command:parameterValue required="true" variableLength="false">DeviceRestore</command:parameterValue><command:parameterValue required="true" variableLength="false">Update</command:parameterValue><command:parameterValue required="true" variableLength="false">SupportPackage</command:parameterValue><command:parameterValue required="true" variableLength="false">VirtualApplianceProvisioning</command:parameterValue></command:parameterValueGroup></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="none"><maml:name>From</maml:name><maml:description><maml:para>Specifies the start date and time for the jobs that this cmdlet gets. This cmdlet gets completed jobs based on their end times.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">DateTime</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>To</maml:name><maml:description><maml:para>Specifies the end date and time for the jobs that this cmdlet gets. This cmdlet gets completed jobs based on their end times. </maml:para></maml:description><command:parameterValue required="false" variableLength="false">DateTime</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">AzureProfile</command:parameterValue></command:parameter></command:syntaxItem></command:syntax><command:parameters><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>DeviceName</maml:name><maml:description><maml:para>Specifies the name of StorSimple device for which the cmdlet gets jobs.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="none"><maml:name>From</maml:name><maml:description><maml:para>Specifies the start date and time for the jobs that this cmdlet gets. This cmdlet gets completed jobs based on their end times.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">DateTime</command:parameterValue><dev:type><maml:name>DateTime</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>InstanceId</maml:name><maml:description><maml:para>Specifies the ID of a job to get.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">AzureProfile</command:parameterValue><dev:type><maml:name>AzureProfile</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>Status</maml:name><maml:description><maml:para>Specifies the status of the jobs that this cmdlet gets. Valid values are: + +-- Running +-- Completed +-- Cancelled +-- Failed +-- Cancelling +-- CompletedWithErrors</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>To</maml:name><maml:description><maml:para>Specifies the end date and time for the jobs that this cmdlet gets. This cmdlet gets completed jobs based on their end times. </maml:para></maml:description><command:parameterValue required="false" variableLength="false">DateTime</command:parameterValue><dev:type><maml:name>DateTime</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>Type</maml:name><maml:description><maml:para>Specifies the type of the jobs that this cmdlet gets. Valid values are: + +-- Backup +-- ManualBackup +-- Restore +-- CloneWorkflow +-- DeviceRestore +-- Update +-- SupportPackage +-- VirtualApplianceProvisioning</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter></command:parameters><command:inputTypes><command:inputType><dev:type><maml:name>None</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para>You cannot pipe input to this cmdlet. </maml:para></maml:description></command:inputType></command:inputTypes><command:returnValues><command:returnValue><dev:type><maml:name>IList&lt;DeviceJobDetails&gt;, DeviceJobDetails</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para>This cmdlet returns a list of job details objects, or, if you specify the InstanceID parameter, it returns a single job detail object. </maml:para></maml:description></command:returnValue></command:returnValues><command:terminatingErrors /><command:nonTerminatingErrors /><command:examples><command:example><maml:title>Example 1: Get a job by using an ID</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Get-AzureStorSimpleJob -InstanceId "574f47e0-44e9-495c-b8a5-0203c57ebf6d" +BackupPolicy : +BackupTimeStamp : 1/1/0001 12:00:00 AM +BackupType : CloudSnapshot +DataStats : Microsoft.WindowsAzure.Management.StorSimple.Models.DataStatistics +Device : Microsoft.WindowsAzure.Management.StorSimple.Models.CisBaseObject +Entity : Microsoft.WindowsAzure.Management.StorSimple.Models.CisBaseObject +ErrorDetails : {} +HideProgressDetails : False +InstanceId : 574f47e0-44e9-495c-b8a5-0203c57ebf6d +IsInstantRestoreComplete : False +IsJobCancellable : True +JobDetails : Microsoft.WindowsAzure.Management.StorSimple.Models.JobStatusInfo +Name : 26447caf-59bb-41c9-a028-3224d296c7dc +Progress : 100 +SourceDevice : Microsoft.WindowsAzure.Management.StorSimple.Models.CisBaseObject +SourceEntity : Microsoft.WindowsAzure.Management.StorSimple.Models.CisBaseObject +SourceVolume : Microsoft.WindowsAzure.Management.StorSimple.Models.CisBaseObject +Status : Completed +TimeStats : Microsoft.WindowsAzure.Management.StorSimple.Models.TimeStatistics +Type : Backup +Volume : Microsoft.WindowsAzure.Management.StorSimple.Models.CisBaseObject +</dev:code><dev:remarks><maml:para>This command gets information for the job that has the specified ID. </maml:para><maml:para /><maml:para /></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>Example 2: Get jobs by using a device name</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Get-AzureStorSimpleJob -DeviceName "8600-Bravo 001" -First 2 +InstanceId Type Status DeviceName StartTime Progress +---------- ---- ------ ---------- --------- -------- +1997c33f-bfcc-4d08-9aba-28068340a1f9 Backup Running 8600-Bravo 001 4/15/2015 1:30:02 PM 92 +85074062-ef6a-408a-b6c9-2a0904bb99ca Backup Completed 8600-Bravo 001 4/15/2015 1:30:02 PM 100 + +</dev:code><dev:remarks><maml:para>This command gets information for the jobs for the device named 8600-Bravo 001. The command gets the first two jobs for the device. </maml:para><maml:para /><maml:para /></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>Example 3: Get completed jobs</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Get-AzureStorSimpleJob -Status Completed -Skip 10 -First 2 + +</dev:code><dev:remarks><maml:para>This command gets completed jobs. The command gets only the first two jobs after it skips the first ten jobs. </maml:para><maml:para /><maml:para /></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>Example 4: Get manual backup jobs</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Get-AzureStorSimpleJob -Type ManualBackup + +</dev:code><dev:remarks><maml:para>This command gets jobs of the manual backup type. </maml:para><maml:para /><maml:para /></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>Example 5: Get jobs between specified times</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;$StartTime = Get-Date -Year 2015 -Month 3 -Day 10 +PS C:\&gt; $EndTime = Get-Date -Year 2015 -Month 3 -Day 11 -Hour 12 -Minute 15 +PS C:\&gt;Get-AzureStorSimpleJob -DeviceName "Device07" -From $StartTime -To $EndTime + +</dev:code><dev:remarks><maml:para>The first two commands create DateTime objects by using the Get-Date cmdlet. The commands store the new times in the $StartTime and $EndTime variables. For more information, type Get-Help Get-Date.</maml:para><maml:para>The final command gets jobs for the device named Device07 between the times stored in $StartTime and $EndTime. </maml:para><maml:para /><maml:para /></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example></command:examples><maml:relatedLinks><maml:navigationLink><maml:linkText>Stop-AzureStorSimpleJob</maml:linkText><maml:uri /></maml:navigationLink></maml:relatedLinks></command:command><command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><command:details><command:name>Get-AzureStorSimpleLegacyVolumeContainerConfirmStatus</command:name><maml:description><maml:para>Gets the status of a commit or rollback operation.</maml:para></maml:description><maml:copyright><maml:para /></maml:copyright><command:verb>Get</command:verb><command:noun>AzureStorSimpleLegacyVolumeContainerConfirmStatus</command:noun><dev:version /></command:details><maml:description><maml:para>The Get-AzureStorSimpleLegacyVolumeContainerConfirmStatus cmdlet gets the status of the commit or rollback operation.</maml:para></maml:description><command:syntax><command:syntaxItem><maml:name>Get-AzureStorSimpleLegacyVolumeContainerConfirmStatus</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>LegacyConfigId</maml:name><maml:description><maml:para>Specifies the unique ID of the configuration of the legacy appliance. </maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="2" aliases="none"><maml:name>LegacyContainerNames</maml:name><maml:description><maml:para>Specifies an array of data container names for which the migration plan applies. </maml:para></maml:description><command:parameterValue required="false" variableLength="false">String[]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">AzureProfile</command:parameterValue></command:parameter></command:syntaxItem></command:syntax><command:parameters><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>LegacyConfigId</maml:name><maml:description><maml:para>Specifies the unique ID of the configuration of the legacy appliance. </maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="2" aliases="none"><maml:name>LegacyContainerNames</maml:name><maml:description><maml:para>Specifies an array of data container names for which the migration plan applies. </maml:para></maml:description><command:parameterValue required="false" variableLength="false">String[]</command:parameterValue><dev:type><maml:name>String[]</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">AzureProfile</command:parameterValue><dev:type><maml:name>AzureProfile</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter></command:parameters><command:inputTypes><command:inputType><dev:type><maml:name>None</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para></maml:para></maml:description></command:inputType></command:inputTypes><command:returnValues><command:returnValue><dev:type><maml:name>ConfirmMigrationStatusMsg</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para>This cmdlet returns the status of the confirm migration operation that is performed.</maml:para></maml:description></command:returnValue></command:returnValues><command:terminatingErrors /><command:nonTerminatingErrors /><command:examples><command:example><maml:title>Example 1: Get the status of a completed commit operation</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Get-AzureStorSimpleLegacyVolumeContainerConfirmStatus -LegacyConfigId "f16463bd-94a9-4c3c-91c2-7a3ba7120087" -LegacyContainerNames "OneSDKAzureCloud" +VERBOSE: 2015-04-08 13:51:01 ClientRequestId: 2bda2b9b-1361-4787-bc04-1e081218ed76_PS +VERBOSE: 2015-04-08 13:51:01 ClientRequestId: 84bf18d8-c459-47a7-b4a8-f82ca8659672_PS +VERBOSE: 2015-04-08 13:51:12 ClientRequestId: e93f9cb7-df58-497e-bb9f-9a6a23e68925_PS + + +LegacyConfigId : f16463bd-94a9-4c3c-91c2-7a3ba7120087 +CommitComplete : CloudConfigurationName : OneSDKAzureCloud + Operation : Commit + PercentageCompleted : 100 + Messages : + +CommitInProgress : None +CommitFailed : None +RollbackComplete : None +RollbackInProgress : None +RollbackFailed : None +CommitOrRollbackNotStarted : None +</dev:code><dev:remarks><maml:para>This command gets the status of a commit operation for the named container. This operation has a status of completed. </maml:para><maml:para /><maml:para /></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>Example 2: Get the status of a completed rollback operation</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Get-AzureStorSimpleLegacyVolumeContainerConfirmStatus -LegacyConfigId "f16463bd-94a9-4c3c-91c2-7a3ba7120087" -LegacyContainerNames "OneSDKAzureCloud" +VERBOSE: 2015-04-08 13:51:01 ClientRequestId: 2bda2b9b-1361-4787-bc04-1e081218ed76_PS +VERBOSE: 2015-04-08 13:51:01 ClientRequestId: 84bf18d8-c459-47a7-b4a8-f82ca8659672_PS +VERBOSE: 2015-04-08 13:51:12 ClientRequestId: e93f9cb7-df58-497e-bb9f-9a6a23e68925_PS + + +LegacyConfigId : f16463bd-94a9-4c3c-91c2-7a3ba7120087 +CommitComplete : None +CommitInProgress : None +CommitFailed : None +RollbackComplete : CloudConfigurationName : OneSDKAzureCloud + Operation : Rollback + PercentageCompleted : 100 + Messages : + +RollbackInProgress : None +RollbackFailed : None +CommitOrRollbackNotStarted : None +</dev:code><dev:remarks><maml:para>This command gets the status of a rollback operation for the named container. This operation has a status of completed. </maml:para><maml:para /><maml:para /></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example></command:examples><maml:relatedLinks><maml:navigationLink><maml:linkText>Confirm-AzureStorSimpleLegacyVolumeContainerStatus</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>Get-AzureStorSimpleLegacyVolumeContainerStatus</maml:linkText><maml:uri /></maml:navigationLink></maml:relatedLinks></command:command><command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><command:details><command:name>Get-AzureStorSimpleLegacyVolumeContainerMigrationPlan</command:name><maml:description><maml:para>Gets migration plans for legacy containers.</maml:para></maml:description><maml:copyright><maml:para /></maml:copyright><command:verb>Get</command:verb><command:noun>AzureStorSimpleLegacyVolumeContainerMigrationPlan</command:noun><dev:version /></command:details><maml:description><maml:para>The Get-AzureStorSimpleLEgacyVolumeContainerMigrationPlan cmdlet gets migration plans for legacy containers. Specify a migration plan by its legacy configuration ID. If creation of the migration plan is still in progress, this cmdlet gets the status of the migration plan. If the migration plan is completed, this cmdlet returns the actual migration plan for the set of legacy containers. If you do not specify the LegacyConfigId parameter, this cmdlet returns a list of configuration IDs.</maml:para></maml:description><command:syntax><command:syntaxItem><maml:name>Get-AzureStorSimpleLegacyVolumeContainerMigrationPlan</maml:name><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>LegacyConfigId</maml:name><maml:description><maml:para>Specifies the unique ID of the configuration of the legacy appliance. </maml:para></maml:description><command:parameterValue required="false" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="2" aliases="none"><maml:name>LegacyContainerNames</maml:name><maml:description><maml:para>Specifies an array of data container names for which this cmdlet gets a migration plan. </maml:para></maml:description><command:parameterValue required="false" variableLength="true">String[]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">AzureProfile</command:parameterValue></command:parameter></command:syntaxItem></command:syntax><command:parameters><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>LegacyConfigId</maml:name><maml:description><maml:para>Specifies the unique ID of the configuration of the legacy appliance. </maml:para></maml:description><command:parameterValue required="false" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="2" aliases="none"><maml:name>LegacyContainerNames</maml:name><maml:description><maml:para>Specifies an array of data container names for which this cmdlet gets a migration plan. </maml:para></maml:description><command:parameterValue required="false" variableLength="true">String[]</command:parameterValue><dev:type><maml:name>String[]</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">AzureProfile</command:parameterValue><dev:type><maml:name>AzureProfile</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter></command:parameters><command:inputTypes><command:inputType><dev:type><maml:name>None</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para></maml:para></maml:description></command:inputType></command:inputTypes><command:returnValues><command:returnValue><dev:type><maml:name>MigrationPlanMsg</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para>This cmdlet returns a MigrationPlanMsg object that contains the status of the migration plan job, assumed bandwidth in megabits per second, and estimated time in minutes.</maml:para></maml:description></command:returnValue></command:returnValues><command:terminatingErrors /><command:nonTerminatingErrors /><command:examples><command:example><maml:title>Example 1: Get the status of a plan</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Get-AzureStorSimpleLegacyVolumeContainerMigrationPlan -LegacyConfigId "f16463bd-94a9-4c3c-91c2-7a3ba7120087" -LegacyContainerNames "OneSDKAzureCloud" +VERBOSE: 2015-04-08 13:48:05 ClientRequestId: 51e413fd-c2c9-4108-88cd-a0e792eab80a_PS +VERBOSE: 2015-04-08 13:48:05 ClientRequestId: 4c6398ef-35a0-4d1c-931e-d9d45599a97a_PS +VERBOSE: 2015-04-08 13:48:17 ClientRequestId: ef7a7e35-6dff-46cd-9df3-cb5fa25d149e_PS +VERBOSE: Request Id : fd7e502f273885468f633a44567bcb3f, HttpResponse OK +VERBOSE: List of volume containers: + + +LegacyConfigId : f16463bd-94a9-4c3c-91c2-7a3ba7120087 +DeviceName : ARUNKM-N4 +MigrationTimeEstimationCompleted : CloudConfigurationName : OneSDKAzureCloud + EstimatedTimeForLatestBackup : 15Minutes + EstimatedTimeForAllBackups : 15Minutes + These estimates are assuming 20 MBps bandwidth. Refer to migration guide to re-calculate for lower bandwidths. + + + +MigrationTimeEstimationInProgress : None +MigrationTimeEstimationFailed : None +MigrationTimeEstimationNotStarted : None +</dev:code><dev:remarks><maml:para>This command gets the status of the migration plan. The status includes assumed bandwidth, estimated time and, related information.</maml:para><maml:para /><maml:para /></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>Example 2: Get the IDs of existing plans</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Get-AzureStorSimpleLegacyVolumeContainerMigrationPlan +VERBOSE: 2015-04-08 13:46:51 ClientRequestId: 813da56c-0cfc-4325-80db-08ef32bdde1e_PS +VERBOSE: 2015-04-08 13:46:51 ClientRequestId: 9e7cf244-1894-490a-be02-749834a99318_PS +VERBOSE: List of LegacyConfig Ids on the resource: + +LegacyConfigId DeviceName +-------------- ---------- +1e1f10a0-3dff-4249-b847-4930061cd87a ARUNKM-N4 +26d4096d-49b6-4102-b188-0446ece73c8b ARUNKM-N4 +</dev:code><dev:remarks><maml:para>This command gets all the configuration IDs of migration plans. </maml:para><maml:para /><maml:para /></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example></command:examples><maml:relatedLinks><maml:navigationLink><maml:linkText>Start-AzureStorSimpleLegacyVolumeContainerMigrationPlan</maml:linkText><maml:uri /></maml:navigationLink></maml:relatedLinks></command:command><command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><command:details><command:name>Get-AzureStorSimpleLegacyVolumeContainerStatus</command:name><maml:description><maml:para>Gets the migration status of the data containers.</maml:para></maml:description><maml:copyright><maml:para /></maml:copyright><command:verb>Get</command:verb><command:noun>AzureStorSimpleLegacyVolumeContainerStatus</command:noun><dev:version /></command:details><maml:description><maml:para>The Get-AzureStorSimpleLegacyVolumeContainerStatus cmdlet gets the migration status of the data containers. This cmdlet returns status information which includes whether the data container migration is still in progress, completed, or failed.</maml:para></maml:description><command:syntax><command:syntaxItem><maml:name>Get-AzureStorSimpleLegacyVolumeContainerStatus</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>LegacyConfigId</maml:name><maml:description><maml:para>Specifies the unique ID of the configuration of the legacy appliance. </maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="2" aliases="none"><maml:name>LegacyContainerNames</maml:name><maml:description><maml:para>Specifies an array of data container names for which the migration plan applies. </maml:para></maml:description><command:parameterValue required="false" variableLength="false">String[]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">AzureProfile</command:parameterValue></command:parameter></command:syntaxItem></command:syntax><command:parameters><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>LegacyConfigId</maml:name><maml:description><maml:para>Specifies the unique ID of the configuration of the legacy appliance. </maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="2" aliases="none"><maml:name>LegacyContainerNames</maml:name><maml:description><maml:para>Specifies an array of data container names for which the migration plan applies. </maml:para></maml:description><command:parameterValue required="false" variableLength="false">String[]</command:parameterValue><dev:type><maml:name>String[]</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">AzureProfile</command:parameterValue><dev:type><maml:name>AzureProfile</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter></command:parameters><command:inputTypes><command:inputType><dev:type><maml:name></maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para></maml:para></maml:description></command:inputType></command:inputTypes><command:returnValues><command:returnValue><dev:type><maml:name></maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para></maml:para></maml:description></command:returnValue></command:returnValues><command:terminatingErrors /><command:nonTerminatingErrors /><command:examples><command:example><maml:title>Example 1: Get status for a failed migration</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Get-AzureStorSimpleLegacyVolumeContainerStatus -LegacyConfigId "dcddbb51-2ab2-4d22-8204-fefdbd6b7ba4" -LegacyContainerNames "OneSDKAzureCloud" +ConfigId : dcddbb51-2ab2-4d22-8204-fefdbd6b7ba4 +MigrationCompleted : No Cloud Configuration(s) are found to be in Completed state of Migration +MigrationInprogress : No Cloud Configuration(s) are found to be in InProgress state of Migration +MigrationNotStarted : No Cloud Configuration(s) are found to be in NotStarted state of Migration +MigrationFailed : Cloud Configuration Name: OneSDKAzureCloud + PercentageCompleted : 0 + MigrationStatus : Failed + No Backup sets found +</dev:code><dev:remarks><maml:para>This command gets the migration status for the named legacy container. The results show that the migration failed.</maml:para><maml:para /><maml:para /></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>Example 2: Get status for a migration in progress</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Get-AzureStorSimpleLegacyVolumeContainerStatus -LegacyConfigId "dcddbb51-2ab2-4d22-8204-fefdbd6b7ba4" -LegacyContainerNames "OneSDKAzureCloud" +ConfigId : 5a83ec88-9e0a-4722-9fb0-9131caa7387a +MigrationCompleted : No Cloud Configuration(s) are found to be in Completed state of Migration +MigrationInprogress : CloudConfigurationName: OneSDKAzureCloud + PercentageCompleted : 10 + MigrationStatus : InProgress + BackupSets : + Policy : OneSDKBackupPolicy, Status : InProgress +MigrationNotStarted : No Cloud Configuration(s) are found to be in NotStarted state of Migration +MigrationFailed : No Cloud Configuration(s) are found to be in Failed state of Migration +</dev:code><dev:remarks><maml:para>This command gets the migration status for the named legacy container. The results show that the migration is in progress.</maml:para><maml:para /><maml:para /></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>Example 3: Get status for a completed migration</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Get-AzureStorSimpleLegacyVolumeContainerStatus -LegacyConfigId dcddbb51-2ab2-4d22-8204-fefdbd6b7ba4 -LegacyContainerNames OneSDKAzureCloud +ConfigId : 5a83ec88-9e0a-4722-9fb0-9131caa7387a +MigrationCompleted : Cloud ConfigurationName: OneSDKAzureCloud + PercentageCompleted : 100 + MigrationStatus : Completed + BackupSets : + Policy : vg1p1, Created On : 04/06/2015 11:22:00, Status : Completed + Policy : vg1p1, Created On : 03/30/2015 11:22:00, Status : Completed + Policy : c1v1-Auto-Daily-CloudSnapshot, Created On : 03/30/2015 03:30:00, Status : Completed +MigrationInprogress : No Cloud Configuration(s) are found to be in InProgress state of Migration +MigrationNotStarted : No Cloud Configuration(s) are found to be in NotStarted state of Migration +MigrationFailed : No Cloud Configuration(s) are found to be in Failed state of Migration +</dev:code><dev:remarks><maml:para>This command gets the migration status for the named legacy container. The results show that the migration is completed.</maml:para><maml:para /><maml:para /></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example></command:examples><maml:relatedLinks><maml:navigationLink><maml:linkText>Confirm-AzureStorSimpleLegacyVolumeContainerStatus</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>Get-AzureStorSimpleLegacyVolumeContainerConfirmStatus</maml:linkText><maml:uri /></maml:navigationLink></maml:relatedLinks></command:command><command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><command:details><command:name>Get-AzureStorSimpleResource</command:name><maml:description><maml:para>Gets all resources that you created.</maml:para></maml:description><maml:copyright><maml:para /></maml:copyright><command:verb>Get</command:verb><command:noun>AzureStorSimpleResource</command:noun><dev:version /></command:details><maml:description><maml:para>The Get-AzureStorSimpleResource cmdlet gets all resources that you created by using Azure Portal. The cmdlet gets details you can use to connect to the resources.</maml:para></maml:description><command:syntax><command:syntaxItem><maml:name>Get-AzureStorSimpleResource</maml:name><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="Name"><maml:name>ResourceName</maml:name><maml:description><maml:para>Specifies the name of the resource that this cmdlet gets.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">System.String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">Microsoft.Azure.Common.Authentication.Models.AzureProfile</command:parameterValue></command:parameter></command:syntaxItem></command:syntax><command:parameters><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">Microsoft.Azure.Common.Authentication.Models.AzureProfile</command:parameterValue><dev:type><maml:name>Microsoft.Azure.Common.Authentication.Models.AzureProfile</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="Name"><maml:name>ResourceName</maml:name><maml:description><maml:para>Specifies the name of the resource that this cmdlet gets.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">System.String</command:parameterValue><dev:type><maml:name>System.String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter></command:parameters><command:inputTypes><command:inputType><dev:type><maml:name>None</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para></maml:para></maml:description></command:inputType></command:inputTypes><command:returnValues><command:returnValue><dev:type><maml:name>IEnumerable&lt;ResourceCredentials&gt;, ResourceCredentials</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para>This cmdlet returns ResourceCredentials objects that contain the following properties: -- ResourceName --- CloudServiceName --- ResourceNameSpace --- ResourceType --- StampId -- ResouceId --- BackendStampId -- ResourceState</maml:para></maml:description></command:returnValue></command:returnValues><command:terminatingErrors /><command:nonTerminatingErrors /><command:examples><command:example><maml:title>Example 1: Get all resources</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Get-AzureStorSimpleResource -ResourceName : Contoso63-Tsqa -CloudServiceName : CisService-3KMVAKGQRUBVUOQOYRNHMDI4U3DASWARAQQAEE5XOFJ6WBYVPNBA-west-us -ResourceNameSpace : CISBVT2 -ResourceType : CisVault -StampId : abeb635b-e186-4605-b464-c7c9e55b226a -ResourceId : 129568832932543915 -BackendStampId : daadc46b-4f56-4e24-8fd8-30d827983ef3 -ResourceState : Started - -ResourceName : oldAgentTest2 -CloudServiceName : CisService-3KMVAKGQRUBVUOQOYRNHMDI4U3DASWARAQQAEE5XOFJ6WBYVPNBA-west-us -ResourceNameSpace : CisBVT2 -ResourceType : CisVault -StampId : abeb635b-e186-4605-b464-c7c9e55b226a -ResourceId : 1166111113599012360 -BackendStampId : daadc46b-4f56-4e24-8fd8-30d827983ef3 -ResourceState : Started - -ResourceName : LqjdAx -CloudServiceName : CisService-3KMVAKGQRUBVUOQOYRNHMDI4U3DASWARAQQAEE5XOFJ6WBYVPNBA-west-us -ResourceNameSpace : CISBVT2 -ResourceType : CisVault -StampId : abeb635b-e186-4605-b464-c7c9e55b226a -ResourceId : 8143420525957257522 -BackendStampId : daadc46b-4f56-4e24-8fd8-30d827983ef3 -ResourceState : Started -</dev:code><dev:remarks><maml:para>This command gets all the resources you created. In this example, there are three resources. </maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>Example 2: Get a resource by using its name</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Get-AzureStorSimpleResource -ResourceName "Contoso63-Tsqa" -VERBOSE: ClientRequestId: 79782ab6-7368-4024-bae5-0ea15bc49067_PS - - -ResourceName : Contoso63-Tsqa -CloudServiceName : CisService-DTYHC5NYB4BUTV3ZHFNSE5EKIZZGLGYR44OJUL5OQGG4I2EMYOZA-west-us -ResourceNameSpace : Contoso -ResourceType : CisVault -StampId : e7b9e848-2f14-47a9-9bad-d77ce5f0ed9a -ResourceId : 1975530557201809476 -BackendStampId : 7ef900f6-ad91-497d-a9c5-2742b7ed4a75 -ResourceState : Started - -VERBOSE: 1 StorSimple resource found! -</dev:code><dev:remarks><maml:para>This command gets the resource named Contoso63-Tsqa.</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>Example 3: Attempt to get a nonexistent resource</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Get-AzureStorSimpleResource -ResourceName "Contoso64-Tsqa" -VERBOSE: ClientRequestId: a3f6c207-df66-40b3-9ae5-26d2631df20c_PS -VERBOSE: No resource found in your subscription with name : Contoso64-Tsqa! -</dev:code><dev:remarks><maml:para>This command attempts to get the resource named Contoso64-Tsqa. There is no resource that has this name. This example does not return any resource.</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example></command:examples><maml:relatedLinks><maml:navigationLink><maml:linkText>Get-AzureStorSimpleResourceContext</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>Select-AzureStorSimpleResource</maml:linkText><maml:uri /></maml:navigationLink></maml:relatedLinks></command:command><command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><command:details><command:name>Get-AzureStorSimpleResourceContext</command:name><maml:description><maml:para>Gets the current resource context.</maml:para></maml:description><maml:copyright><maml:para /></maml:copyright><command:verb>Get</command:verb><command:noun>AzureStorSimpleResourceContext</command:noun><dev:version /></command:details><maml:description><maml:para>The Get-AzureStorSimpleResourceContext cmdlet gets the current resource context.</maml:para></maml:description><command:syntax><command:syntaxItem><maml:name>Get-AzureStorSimpleResourceContext</maml:name></command:syntaxItem></command:syntax><command:parameters></command:parameters><command:inputTypes><command:inputType><dev:type><maml:name>None</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para></maml:para></maml:description></command:inputType></command:inputTypes><command:returnValues><command:returnValue><dev:type><maml:name>StorSimpleResourceContext</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para>This cmdlet returns a ResourceContext object.</maml:para></maml:description></command:returnValue></command:returnValues><command:terminatingErrors /><command:nonTerminatingErrors /><command:examples><command:example><maml:title>Example 1: Get the current context</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Select-AzureStorSimpleResource -ResourceName "Contoso63-Tsqa" +VERBOSE: ClientRequestId: 5cd61b91-ef40-43b4-986d-156e06d2ed65_PS + +ResourceName ResourceId ResourceState +------------ ---------- ------------- +Contoso63-Tsqa 8838459798595306468 Started +Contoso68-Tsqa 2859070203638134681 Started +Contoso73-Tsqa 7871392677286863733 Started +Contoso87-Tsqa 1909806764156522689 Started +VERBOSE: Found 4 StorSimple resources. +</dev:code><dev:remarks><maml:para>This command gets all the resources you created. In this example, there are three resources. </maml:para><maml:para /><maml:para /></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>Example 2: Get a resource by using its name</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Get-AzureStorSimpleResource -ResourceName "Contoso63-Tsqa" +VERBOSE: ClientRequestId: efc3c85c-12aa-4345-b6eb-ccc532de4825_PS + +ResourceName ResourceId ResourceState +------------ ---------- ------------- +Contoso63-Tsqa 1909806764156522689 Started +VERBOSE: Found 1 StorSimple resource. +</dev:code><dev:remarks><maml:para>This command gets the resource named Contoso63-Tsqa.</maml:para><maml:para /><maml:para /></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>Example 3: Attempt to get a nonexistent resource</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Get-AzureStorSimpleResource -ResourceName "Contoso64-Tsqa" +VERBOSE: ClientRequestId: 5d08d40b-f9d7-4d43-956f-13f01e89625b_PS +VERBOSE: Invalid input : Could not find a resource named Contoso64-Tsqa in your subscription. + +</dev:code><dev:remarks><maml:para>This command attempts to get the resource named Contoso64-Tsqa. There is no resource that has this name. This example does not return any resource.</maml:para><maml:para /><maml:para /></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example></command:examples><maml:relatedLinks><maml:navigationLink><maml:linkText>Get-AzureStorSimpleResourceContext</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>Select-AzureStorSimpleResource</maml:linkText><maml:uri /></maml:navigationLink></maml:relatedLinks></command:command><command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><command:details><command:name>Get-AzureStorSimpleResourceContext</command:name><maml:description><maml:para>Gets the current resource context.</maml:para></maml:description><maml:copyright><maml:para /></maml:copyright><command:verb>Get</command:verb><command:noun>AzureStorSimpleResourceContext</command:noun><dev:version /></command:details><maml:description><maml:para>The Get-AzureStorSimpleResourceContext cmdlet gets the current resource context.</maml:para></maml:description><command:syntax><command:syntaxItem><maml:name>Get-AzureStorSimpleResourceContext</maml:name><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">Microsoft.Azure.Common.Authentication.Models.AzureProfile</command:parameterValue></command:parameter></command:syntaxItem></command:syntax><command:parameters><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">Microsoft.Azure.Common.Authentication.Models.AzureProfile</command:parameterValue><dev:type><maml:name>Microsoft.Azure.Common.Authentication.Models.AzureProfile</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter></command:parameters><command:inputTypes><command:inputType><dev:type><maml:name>None</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para></maml:para></maml:description></command:inputType></command:inputTypes><command:returnValues><command:returnValue><dev:type><maml:name>StorSimpleResourceContext</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para>This cmdlet returns a ResourceContext object.</maml:para></maml:description></command:returnValue></command:returnValues><command:terminatingErrors /><command:nonTerminatingErrors /><command:examples><command:example><maml:title>Example 1: Get the current context</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Select-AzureStorSimpleResource -ResourceName "Contoso63-Tsqa" PS C:\&gt; Get-AzureStorSimpleResourceContext -VERBOSE: ClientRequestId: b05f27e2-4298-4913-b026-cd33803809ef_PS - - -ResourceId : 1975530557201809476 -StampId : 7ef900f6-ad91-497d-a9c5-2742b7ed4a75 -CloudServiceName : CisService-DTYHC5NYB4BUTV3ZHFNSE5EKIZZGLGYR44OJUL5OQGG4I2EMYOZA-west-us -ResourceProviderNameSpace : Contoso -ResourceType : CisVault -ResourceName : Contoso63-Tsqa -StorSimpleKeyManager : Microsoft.WindowsAzure.Commands.StorSimple.Encryption.StorSimpleKeyManager - -VERBOSE: You have a resource selected. Resource Name: Contoso63-Tsqa Id: Contoso63-Tsqa -</dev:code><dev:remarks><maml:para>The first command sets the current context to be the resource named Contoso63-Tsqa by using the Select-AzureStorSimpleResource cmdlet. </maml:para><maml:para>The second command gets the current resource context. </maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>Example 2: Attempt to get the current context</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Get-AzureStorSimpleResourceContext -VERBOSE: ClientRequestId: 4441afe2-9735-4f1a-aa1f-d16a97443f51_PS +ResourceId ResourceName +---------- ------------ +1909806764156522689 Contoso63-Tsqa +</dev:code><dev:remarks><maml:para>The first command sets the current context to be the resource named Contoso63-Tsqa by using the Select-AzureStorSimpleResource cmdlet. </maml:para><maml:para>The second command gets the current resource context. </maml:para><maml:para /><maml:para /></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>Example 2: Attempt to get the current context</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Get-AzureStorSimpleResourceContext Get-AzureStorSimpleResourceContext : Resource Context is not set for your subscription. Please use Select-AzureStorSimpleResource -ResourceName &lt;&lt;name&gt;&gt; to set -</dev:code><dev:remarks><maml:para>This command gets the current context. In this example, no context has been set. The command returns a message that explains the problem. </maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example></command:examples><maml:relatedLinks><maml:navigationLink><maml:linkText>Get-AzureStorSimpleResource</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>Select-AzureStorSimpleResource</maml:linkText><maml:uri /></maml:navigationLink></maml:relatedLinks></command:command><command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><command:details><command:name>Get-AzureStorSimpleStorageAccountCredential</command:name><maml:description><maml:para>Gets credentials for storage accounts.</maml:para></maml:description><maml:copyright><maml:para /></maml:copyright><command:verb>Get</command:verb><command:noun>AzureStorSimpleStorageAccountCredential</command:noun><dev:version /></command:details><maml:description><maml:para>The Get-AzureStorSimpleStorageAccountCredential cmdlet gets credentials for storage accounts. This cmdlet gets all StorageAccountCredential objects configured in the service or a named StorageAccountCredential.</maml:para></maml:description><command:syntax><command:syntaxItem><maml:name>Get-AzureStorSimpleStorageAccountCredential</maml:name><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="Name"><maml:name>StorageAccountName</maml:name><maml:description><maml:para>Specifies the name of the storage account for which to get credentials.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">String</command:parameterValue></command:parameter></command:syntaxItem></command:syntax><command:parameters><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="Name"><maml:name>StorageAccountName</maml:name><maml:description><maml:para>Specifies the name of the storage account for which to get credentials.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter></command:parameters><command:inputTypes><command:inputType><dev:type><maml:name>None</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para></maml:para></maml:description></command:inputType></command:inputTypes><command:returnValues><command:returnValue><dev:type><maml:name>StorageAccountCredential, IList&lt;StorageAccountCredential&gt;</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para>This cmdlet returns a StorageAccountCredential object, if you specify the StorageAccountName parameter, or if you do not specify that parameter, it returns an IList&lt;StorageAccountCredential&gt; object.</maml:para></maml:description></command:returnValue></command:returnValues><command:terminatingErrors /><command:nonTerminatingErrors /><command:examples><command:example><maml:title>Example 1: Get all credentials for a resource</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Get-AzureStorSimpleStorageAccountCredential -VERBOSE: ClientRequestId: e40014fe-3188-45a0-8acd-f0c5578120e0_PS -VERBOSE: ClientRequestId: 7f71b3ad-4130-48e3-9f36-3edde7f4b55c_PS - - -CloudType : Azure -Hostname : blob.core.windows.net -InstanceId : 2df01182-207e-4476-b6e4-3276fde325e8 -IsDefault : False -Location : West US -Login : ContosoCloudStorage -Name : ContosoCloudStorage -OperationInProgress : None -Password : -PasswordEncryptionCertThumbprint : -UseSSL : False -VolumeCount : 0 - -VERBOSE: 1 Storage Access Credential found! -</dev:code><dev:remarks><maml:para>This command gets all available credentials for storage accounts for the current resource.</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>Example 2: Get the credential for a specific storage account</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Get-AzureStorSimpleStorageAccountCredential -StorageAccountName "ContosoCloudStorage" +</dev:code><dev:remarks><maml:para>This command gets the current context. In this example, no context has been set. The command returns a message that explains the problem. </maml:para><maml:para /><maml:para /></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example></command:examples><maml:relatedLinks><maml:navigationLink><maml:linkText>Get-AzureStorSimpleResource</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>Select-AzureStorSimpleResource</maml:linkText><maml:uri /></maml:navigationLink></maml:relatedLinks></command:command><command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><command:details><command:name>Get-AzureStorSimpleStorageAccountCredential</command:name><maml:description><maml:para>Gets credentials for storage accounts.</maml:para></maml:description><maml:copyright><maml:para /></maml:copyright><command:verb>Get</command:verb><command:noun>AzureStorSimpleStorageAccountCredential</command:noun><dev:version /></command:details><maml:description><maml:para>The Get-AzureStorSimpleStorageAccountCredential cmdlet gets credentials for storage accounts. This cmdlet gets all StorageAccountCredential objects configured in the service or a named StorageAccountCredential.</maml:para></maml:description><command:syntax><command:syntaxItem><maml:name>Get-AzureStorSimpleStorageAccountCredential</maml:name><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="Name"><maml:name>StorageAccountName</maml:name><maml:description><maml:para>Specifies the name of the storage account for which to get credentials.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">Microsoft.Azure.Common.Authentication.Models.AzureProfile</command:parameterValue></command:parameter></command:syntaxItem></command:syntax><command:parameters><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">Microsoft.Azure.Common.Authentication.Models.AzureProfile</command:parameterValue><dev:type><maml:name>Microsoft.Azure.Common.Authentication.Models.AzureProfile</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="Name"><maml:name>StorageAccountName</maml:name><maml:description><maml:para>Specifies the name of the storage account for which to get credentials.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter></command:parameters><command:inputTypes><command:inputType><dev:type><maml:name>None</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para></maml:para></maml:description></command:inputType></command:inputTypes><command:returnValues><command:returnValue><dev:type><maml:name>StorageAccountCredential, IList&lt;StorageAccountCredential&gt;</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para>This cmdlet returns a StorageAccountCredential object, if you specify the StorageAccountName parameter, or if you do not specify that parameter, it returns an IList&lt;StorageAccountCredential&gt; object.</maml:para></maml:description></command:returnValue></command:returnValues><command:terminatingErrors /><command:nonTerminatingErrors /><command:examples><command:example><maml:title>Example 1: Get all credentials for a resource</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Get-AzureStorSimpleStorageAccountCredential +InstanceId Login Name UseSSL VolumeCount CloudType Location +---------- ----- ---- ------ ----------- --------- -------- +b5e0857f-82ef-4426-883b-a612889ebee4 qwertyuiopa AdminAccount True 24 Azure +</dev:code><dev:remarks><maml:para>This command gets all available credentials for storage accounts for the current resource.</maml:para><maml:para /><maml:para /></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>Example 2: Get the credential for a specific storage account</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Get-AzureStorSimpleStorageAccountCredential -StorageAccountName "ContosoCloudStorage" VERBOSE: ClientRequestId: 16551af6-3398-4d30-a389-1b8eb01ce92c_PS VERBOSE: ClientRequestId: 5041277d-4044-4b6c-ae19-4ea9e7ae135a_PS VERBOSE: Storage Access Credential with name ContosoCloudStorage found! @@ -599,7 +615,27 @@ Password : PasswordEncryptionCertThumbprint : UseSSL : True VolumeCount : 0 -</dev:code><dev:remarks><maml:para>This command gets the storage account credential for the storage account named ContosoCloudStorage. </maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example></command:examples><maml:relatedLinks><maml:navigationLink><maml:linkText>New-AzureStorSimpleStorageAccountCredential</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>Remove-AzureStorSimpleStorageAccountCredential</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>Set-AzureStorSimpleStorageAccountCredential</maml:linkText><maml:uri /></maml:navigationLink></maml:relatedLinks></command:command><command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><command:details><command:name>New-AzureStorSimpleAccessControlRecord</command:name><maml:description><maml:para>Creates an access control record.</maml:para></maml:description><maml:copyright><maml:para /></maml:copyright><command:verb>New</command:verb><command:noun>AzureStorSimpleAccessControlRecord</command:noun><dev:version /></command:details><maml:description><maml:para>The New-AzureStorSimpleAccessControlRecord cmdlet creates an access control record. You can use an AccessControlRecord object to configure volumes.</maml:para></maml:description><command:syntax><command:syntaxItem><maml:name>New-AzureStorSimpleAccessControlRecord</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="Name"><maml:name>ACRName</maml:name><maml:description><maml:para>Specifies a name for the access control record.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="IQN"><maml:name>IQNInitiatorName</maml:name><maml:description><maml:para>Specifies the iSCSI qualified name (IQN) of the iSCSI initiator to which this cmdlet provides access for the volume.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>WaitForComplete</maml:name><maml:description><maml:para>Indicates that this cmdlet waits for the operation to complete before it returns control to the Windows PowerShell® console.</maml:para></maml:description></command:parameter></command:syntaxItem></command:syntax><command:parameters><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="Name"><maml:name>ACRName</maml:name><maml:description><maml:para>Specifies a name for the access control record.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="IQN"><maml:name>IQNInitiatorName</maml:name><maml:description><maml:para>Specifies the iSCSI qualified name (IQN) of the iSCSI initiator to which this cmdlet provides access for the volume.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>WaitForComplete</maml:name><maml:description><maml:para>Indicates that this cmdlet waits for the operation to complete before it returns control to the Windows PowerShell® console.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter></command:parameters><command:inputTypes><command:inputType><dev:type><maml:name>None</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para></maml:para></maml:description></command:inputType></command:inputTypes><command:returnValues><command:returnValue><dev:type><maml:name>TaskStatusInfo, TaskResponse</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para>This cmdlet returns a TaskStatusInfo object if you specify the WaitForComplete parameter. If you do not specify that parameter, it returns a TaskResponse object.</maml:para></maml:description></command:returnValue></command:returnValues><command:terminatingErrors /><command:nonTerminatingErrors /><command:examples><command:example><maml:title>Example 1: Create an access control record and wait for the result</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;New-AzureStorSimpleAccessControlRecord -ACRName "Acr10" -IQNInitiatorName "Iqn10" -WaitForComplete +</dev:code><dev:remarks><maml:para>This command gets the storage account credential for the storage account named ContosoCloudStorage. </maml:para><maml:para /><maml:para /></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example></command:examples><maml:relatedLinks><maml:navigationLink><maml:linkText>New-AzureStorSimpleStorageAccountCredential</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>Remove-AzureStorSimpleStorageAccountCredential</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>Set-AzureStorSimpleStorageAccountCredential</maml:linkText><maml:uri /></maml:navigationLink></maml:relatedLinks></command:command><command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><command:details><command:name>Import-AzureStorSimpleLegacyApplianceConfig</command:name><maml:description><maml:para>Imports a configuration file.</maml:para></maml:description><maml:copyright><maml:para /></maml:copyright><command:verb>Import</command:verb><command:noun>AzureStorSimpleLegacyApplianceConfig</command:noun><dev:version /></command:details><maml:description><maml:para>The Import-AzureStorSimpleLegacyApplianceConfig cmdlet imports the configuration file from the legacy appliance. That file contains information about data containers, backup policies, and storage account credentials for the Azure StorSimple service. This cmdlet returns the legacy appliance configuration metadata.</maml:para></maml:description><command:syntax><command:syntaxItem><maml:name>Import-AzureStorSimpleLegacyApplianceConfig</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="FilePath"><maml:name>ConfigFilePath</maml:name><maml:description><maml:para>Specifies the absolute path of the configuration file to get. </maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="none"><maml:name>TargetDeviceName</maml:name><maml:description><maml:para>Specifies the name of the target device as presented in the portal.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>ConfigDecryptionKey</maml:name><maml:description><maml:para>Specifies the decryption key for the configuration of the legacy appliance.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">AzureProfile</command:parameterValue></command:parameter></command:syntaxItem></command:syntax><command:parameters><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>ConfigDecryptionKey</maml:name><maml:description><maml:para>Specifies the decryption key for the configuration of the legacy appliance.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="FilePath"><maml:name>ConfigFilePath</maml:name><maml:description><maml:para>Specifies the absolute path of the configuration file to get. </maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">AzureProfile</command:parameterValue><dev:type><maml:name>AzureProfile</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="none"><maml:name>TargetDeviceName</maml:name><maml:description><maml:para>Specifies the name of the target device as presented in the portal.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter></command:parameters><command:inputTypes><command:inputType><dev:type><maml:name>None</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para></maml:para></maml:description></command:inputType></command:inputTypes><command:returnValues><command:returnValue><dev:type><maml:name>LegacyApplianceConfiguration</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para>This cmdlet returns the details of the configuration. The LegacyApplianceConfiguration object contains the following information: configuration ID, volume container names, access control records, backup policies, bandwidth settings, volume containers, storage account credentials, and volumes.</maml:para></maml:description></command:returnValue></command:returnValues><command:terminatingErrors /><command:nonTerminatingErrors /><command:examples><command:example><maml:title>Example 1: Import a configuration file</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Import-AzureStorSimpleLegacyApplianceConfig -ConfigFilePath "C:\MigrationData\LegacyStorSimpleConfig.sse" -TargetDeviceName "8100-123456789" -ConfigDecryptionKey "fWs793hHVhR90NKdDYTeNq" +LegacyConfigId : e2d5c9b1-b528-4c21-b8ae-533feefc8a41 +ImportedOn : 4/8/2015 7:23:04 PM +ConfigFile : D:\configs\StorSimpleConfig_27_Mar_15_12_19.xml.sse +TargetApplianceName : Arunkm-N4 +Details : Available Cloud Configuration(s) for migration : + Cloud Configuration(s) 1 : TC8Cloud[Stingray19-FP6] + Cloud Configuration(s) 2 : fulle_cc4 + Cloud Configuration(s) 3 : fulle_cc2 + Cloud Configuration(s) 4 : fulle_cc3 + Cloud Configuration(s) 5 : TC9Cloud[Stingray18-FP3] + Cloud Configuration(s) 6 : fulle_cc1 + Cloud Configuration(s) 7 : Container-New[Stingray19-FP6] + Cloud Configuration(s) 8 : TC6Cloud[Stingray19-FP6] + Cloud Configuration(s) 9 : TC7Cloud[Stingray18-FP3] + +Result : Successfully imported config from the legacy appliance! +Save the legacy config id and cloud configuration(s) for future reference. +</dev:code><dev:remarks><maml:para>This command imports the configuration file at the specified path. The command includes the key to decrypt the file. </maml:para><maml:para /><maml:para /></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example></command:examples><maml:relatedLinks><maml:navigationLink><maml:linkText>Import-AzureStorSimpleLegacyVolumeContainer</maml:linkText><maml:uri /></maml:navigationLink></maml:relatedLinks></command:command><command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><command:details><command:name>Import-AzureStorSimpleLegacyVolumeContainer</command:name><maml:description><maml:para>Starts the migration of data containers.</maml:para></maml:description><maml:copyright><maml:para /></maml:copyright><command:verb>Import</command:verb><command:noun>AzureStorSimpleLegacyVolumeContainer</command:noun><dev:version /></command:details><maml:description><maml:para>The Import-AzureStorSimpleLegacyVolumeContainer cmdlet starts the migration of data containers from a legacy appliance to the target appliance.</maml:para></maml:description><command:syntax><command:syntaxItem><maml:name>Import-AzureStorSimpleLegacyVolumeContainer</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>LegacyConfigId</maml:name><maml:description><maml:para>Specifies the unique ID of the configuration of the legacy appliance. </maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="2" aliases="none"><maml:name>LegacyContainerNames</maml:name><maml:description><maml:para>Specifies an array of data container names for which the migration plan applies. </maml:para></maml:description><command:parameterValue required="false" variableLength="false">String[]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Force</maml:name><maml:description><maml:para>Indicates that this cmdlet imports data container on a different device, even if data container has been imported on a different device.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">AzureProfile</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>SkipACRs</maml:name><maml:description><maml:para>Indicates that the import process skips access control records for migration.</maml:para></maml:description></command:parameter></command:syntaxItem></command:syntax><command:parameters><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Force</maml:name><maml:description><maml:para>Indicates that this cmdlet imports data container on a different device, even if data container has been imported on a different device.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>LegacyConfigId</maml:name><maml:description><maml:para>Specifies the unique ID of the configuration of the legacy appliance. </maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="2" aliases="none"><maml:name>LegacyContainerNames</maml:name><maml:description><maml:para>Specifies an array of data container names for which the migration plan applies. </maml:para></maml:description><command:parameterValue required="false" variableLength="false">String[]</command:parameterValue><dev:type><maml:name>String[]</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">AzureProfile</command:parameterValue><dev:type><maml:name>AzureProfile</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>SkipACRs</maml:name><maml:description><maml:para>Indicates that the import process skips access control records for migration.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter></command:parameters><command:inputTypes><command:inputType><dev:type><maml:name></maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para></maml:para></maml:description></command:inputType></command:inputTypes><command:returnValues><command:returnValue><dev:type><maml:name>String</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para>This command returns the status of the migration import data container job if it has been successfully started in the appliance.</maml:para></maml:description></command:returnValue></command:returnValues><command:terminatingErrors /><command:nonTerminatingErrors /><command:examples><command:example><maml:title>Example 1: Import a legacy volume container</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Import-AzureStorSimpleLegacyVolumeContainer -LegacyConfigId "c5a831e1-7888-44f4-adf1-92994be630c3" -LegacyContainerNames "OneSDKAzureCloud" +Import started, Please check status with Get-AzureStorSimpleLegacyVolumeContainerStatus commandlet +</dev:code><dev:remarks><maml:para>This command imports a legacy volume container for the named container. The cmdlet starts the import, and then returns a message. </maml:para><maml:para /><maml:para /></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example></command:examples><maml:relatedLinks><maml:navigationLink><maml:linkText>Get-AzureStorSimpleLegacyVolumeContainerStatus</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>Import-AzureStorSimpleLegacyApplianceConfig</maml:linkText><maml:uri /></maml:navigationLink></maml:relatedLinks></command:command><command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><command:details><command:name>New-AzureStorSimpleAccessControlRecord</command:name><maml:description><maml:para>Creates an access control record.</maml:para></maml:description><maml:copyright><maml:para /></maml:copyright><command:verb>New</command:verb><command:noun>AzureStorSimpleAccessControlRecord</command:noun><dev:version /></command:details><maml:description><maml:para>The New-AzureStorSimpleAccessControlRecord cmdlet creates an access control record. You can use an AccessControlRecord object to configure volumes.</maml:para></maml:description><command:syntax><command:syntaxItem><maml:name>New-AzureStorSimpleAccessControlRecord</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="Name"><maml:name>ACRName</maml:name><maml:description><maml:para>Specifies a name for the access control record.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="IQN"><maml:name>IQNInitiatorName</maml:name><maml:description><maml:para>Specifies the iSCSI qualified name (IQN) of the iSCSI initiator to which this cmdlet provides access for the volume.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>WaitForComplete</maml:name><maml:description><maml:para>Indicates that this cmdlet waits for the operation to complete before it returns control to the Windows PowerShell® console.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">Microsoft.Azure.Common.Authentication.Models.AzureProfile</command:parameterValue></command:parameter></command:syntaxItem></command:syntax><command:parameters><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="Name"><maml:name>ACRName</maml:name><maml:description><maml:para>Specifies a name for the access control record.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="IQN"><maml:name>IQNInitiatorName</maml:name><maml:description><maml:para>Specifies the iSCSI qualified name (IQN) of the iSCSI initiator to which this cmdlet provides access for the volume.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">Microsoft.Azure.Common.Authentication.Models.AzureProfile</command:parameterValue><dev:type><maml:name>Microsoft.Azure.Common.Authentication.Models.AzureProfile</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>WaitForComplete</maml:name><maml:description><maml:para>Indicates that this cmdlet waits for the operation to complete before it returns control to the Windows PowerShell® console.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter></command:parameters><command:inputTypes><command:inputType><dev:type><maml:name>None</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para></maml:para></maml:description></command:inputType></command:inputTypes><command:returnValues><command:returnValue><dev:type><maml:name>TaskStatusInfo, TaskResponse</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para>This cmdlet returns a TaskStatusInfo object if you specify the WaitForComplete parameter. If you do not specify that parameter, it returns a TaskResponse object.</maml:para></maml:description></command:returnValue></command:returnValues><command:terminatingErrors /><command:nonTerminatingErrors /><command:examples><command:example><maml:title>Example 1: Create an Access Controlaccess control record and wait for the resultaccess control</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;New-AzureStorSimpleAccessControlRecord -ACRName "Acr10" -IQNInitiatorName "Iqn10" -WaitForComplete Error : Microsoft.WindowsAzure.Management.StorSimple.Models.ErrorDetails JobId : 08719243-3a76-43a5-a88b-e5f2b63ed3d9 JobSteps : {} @@ -608,10 +644,10 @@ Status : Completed TaskResult : Succeeded StatusCode : OK RequestId : e12362c2c06615108ba8436cf85fcd40 -</dev:code><dev:remarks><maml:para>This command creates an access control record named Acr10 for the iSCSI initiator named Iqn10. This command specifies the WaitForComplete parameter, and, therefore, the command waits until the operation is complete, and then returns a TaskStatusInfo object.</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>Example 2: Create an access control record</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;New-AzureStorSimpleAccessControlRecord -ACRName "Acr11" -IQNInitiatorName "Iqn11" +</dev:code><dev:remarks><maml:para>This command creates an access control record named Acr10 for the iSCSI initiator named Iqn10. This command specifies the WaitForComplete parameter, and, therefore, the command waits until the operation is complete, and then returns a TaskStatusInfo object.</maml:para><maml:para /><maml:para /></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>Example 2: Create an Access Controlaccess control recordaccess control</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;New-AzureStorSimpleAccessControlRecord -ACRName "Acr11" -IQNInitiatorName "Iqn11" VERBOSE: The create job is submitted successfully. Please use the command Get-AzureStorSimpleTask -InstanceId 2bd56fbb-4b95-4f2c-b99f-6321231a018d for tracking the job status -</dev:code><dev:remarks><maml:para>This command creates an access control record named Acr11 for the iSCSI initiator named Iqn11. This command does not specify the WaitForComplete parameter, and, therefore, the command starts the task, and then returns a TaskResponse object. To see the status of the task, use the Get-AzureStorSimpleTask cmdlet. </maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example></command:examples><maml:relatedLinks><maml:navigationLink><maml:linkText>Get-AzureStorSimpleAccessControlRecord</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>Remove-AzureStorSimpleAccessControlRecord</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>Set-AzureStorSimpleAccessControlRecord</maml:linkText><maml:uri /></maml:navigationLink></maml:relatedLinks></command:command><command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><command:details><command:name>New-AzureStorSimpleDeviceBackupPolicy</command:name><maml:description><maml:para>Creates a backup policy.</maml:para></maml:description><maml:copyright><maml:para /></maml:copyright><command:verb>New</command:verb><command:noun>AzureStorSimpleDeviceBackupPolicy</command:noun><dev:version /></command:details><maml:description><maml:para>The New-AzureStorSimpleDeviceBackupPolicy cmdlet creates a backup policy. A backup policy contains one or more backup schedules that can run on one or more volumes. To create a backup schedule, use the New-AzureStorSimpleDeviceBackupScheduleAddConfig cmdlet.</maml:para></maml:description><command:syntax><command:syntaxItem><maml:name>New-AzureStorSimpleDeviceBackupPolicy</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>DeviceName</maml:name><maml:description><maml:para>Specifies the name of the StorSimple device on which to create the backup policy.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="none"><maml:name>BackupPolicyName</maml:name><maml:description><maml:para>Specifies the name of the backup policy.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="true" variableLength="true" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>BackupSchedulesToAdd</maml:name><maml:description><maml:para>Specifies an array of BackupScheduleBase objects to add to the policy. Each object represents a schedule. A backup policy contains one or more schedules. To obtain a BackupScheduleBase object, use the New-AzureStorSimpleDeviceBackupScheduleAddConfig cmdlet.</maml:para></maml:description><command:parameterValue required="true" variableLength="true">PSObject[]</command:parameterValue></command:parameter><command:parameter required="true" variableLength="true" globbing="false" pipelineInput="false" position="4" aliases="none"><maml:name>VolumeIdsToAdd</maml:name><maml:description><maml:para>Specifies an array of the IDs of volumes to add to the backup policy.</maml:para></maml:description><command:parameterValue required="true" variableLength="true">PSObject[]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="5" aliases="none"><maml:name>WaitForComplete</maml:name><maml:description><maml:para>Indicates that this cmdlet waits for the operation to complete before it returns control to the Windows PowerShell® console.</maml:para></maml:description></command:parameter></command:syntaxItem></command:syntax><command:parameters><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="none"><maml:name>BackupPolicyName</maml:name><maml:description><maml:para>Specifies the name of the backup policy.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="true" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>BackupSchedulesToAdd</maml:name><maml:description><maml:para>Specifies an array of BackupScheduleBase objects to add to the policy. Each object represents a schedule. A backup policy contains one or more schedules. To obtain a BackupScheduleBase object, use the New-AzureStorSimpleDeviceBackupScheduleAddConfig cmdlet.</maml:para></maml:description><command:parameterValue required="true" variableLength="true">PSObject[]</command:parameterValue><dev:type><maml:name>PSObject[]</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>DeviceName</maml:name><maml:description><maml:para>Specifies the name of the StorSimple device on which to create the backup policy.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="true" globbing="false" pipelineInput="false" position="4" aliases="none"><maml:name>VolumeIdsToAdd</maml:name><maml:description><maml:para>Specifies an array of the IDs of volumes to add to the backup policy.</maml:para></maml:description><command:parameterValue required="true" variableLength="true">PSObject[]</command:parameterValue><dev:type><maml:name>PSObject[]</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="5" aliases="none"><maml:name>WaitForComplete</maml:name><maml:description><maml:para>Indicates that this cmdlet waits for the operation to complete before it returns control to the Windows PowerShell® console.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter></command:parameters><command:inputTypes><command:inputType><dev:type><maml:name>None</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para></maml:para></maml:description></command:inputType></command:inputTypes><command:returnValues><command:returnValue><dev:type><maml:name>BackupPolicy</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para>This cmdlet returns a BackupPolicy object that contains the new schedules and volumes.</maml:para></maml:description></command:returnValue></command:returnValues><command:terminatingErrors /><command:nonTerminatingErrors /><command:examples><command:example><maml:title>Example 1: Create a backup policy</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;$Schedule01 = New-AzureStorSimpleDeviceBackupScheduleAddConfig -BackupType LocalSnapshot -RecurrenceType Daily -RecurrenceValue 10 -RetentionCount 5 -Enabled $True +</dev:code><dev:remarks><maml:para>This command creates an access control record named Acr11 for the iSCSI initiator named Iqn11. This command does not specify the WaitForComplete parameter, and, therefore, the command starts the task, and then returns a TaskResponse object. To see the status of the task, use the Get-AzureStorSimpleTask cmdlet. </maml:para><maml:para /><maml:para /></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example></command:examples><maml:relatedLinks><maml:navigationLink><maml:linkText>Get-AzureStorSimpleAccessControlRecord</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>Remove-AzureStorSimpleAccessControlRecord</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>Set-AzureStorSimpleAccessControlRecord</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>Get-AzureStorSimpleJob</maml:linkText><maml:uri /></maml:navigationLink></maml:relatedLinks></command:command><command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><command:details><command:name>New-AzureStorSimpleDeviceBackupPolicy</command:name><maml:description><maml:para>Creates a backup policy.</maml:para></maml:description><maml:copyright><maml:para /></maml:copyright><command:verb>New</command:verb><command:noun>AzureStorSimpleDeviceBackupPolicy</command:noun><dev:version /></command:details><maml:description><maml:para>The New-AzureStorSimpleDeviceBackupPolicy cmdlet creates a backup policy. A backup policy contains one or more backup schedules that can run on one or more volumes. To create a backup schedule, use the New-AzureStorSimpleDeviceBackupScheduleAddConfig cmdlet.</maml:para></maml:description><command:syntax><command:syntaxItem><maml:name>New-AzureStorSimpleDeviceBackupPolicy</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>DeviceName</maml:name><maml:description><maml:para>Specifies the name of the StorSimple device on which to create the backup policy.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="none"><maml:name>BackupPolicyName</maml:name><maml:description><maml:para>Specifies the name of the backup policy.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="true" variableLength="true" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>BackupSchedulesToAdd</maml:name><maml:description><maml:para>Specifies an array of BackupScheduleBase objects to add to the policy. Each object represents a schedule. A backup policy contains one or more schedules. To obtain a BackupScheduleBase object, use the New-AzureStorSimpleDeviceBackupScheduleAddConfig cmdlet.</maml:para></maml:description><command:parameterValue required="true" variableLength="true">PSObject[]</command:parameterValue></command:parameter><command:parameter required="true" variableLength="true" globbing="false" pipelineInput="false" position="4" aliases="none"><maml:name>VolumeIdsToAdd</maml:name><maml:description><maml:para>Specifies an array of the IDs of volumes to add to the backup policy.</maml:para></maml:description><command:parameterValue required="true" variableLength="true">PSObject[]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="5" aliases="none"><maml:name>WaitForComplete</maml:name><maml:description><maml:para>Indicates that this cmdlet waits for the operation to complete before it returns control to the Windows PowerShell® console.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">Microsoft.Azure.Common.Authentication.Models.AzureProfile</command:parameterValue></command:parameter></command:syntaxItem></command:syntax><command:parameters><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="none"><maml:name>BackupPolicyName</maml:name><maml:description><maml:para>Specifies the name of the backup policy.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="true" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>BackupSchedulesToAdd</maml:name><maml:description><maml:para>Specifies an array of BackupScheduleBase objects to add to the policy. Each object represents a schedule. A backup policy contains one or more schedules. To obtain a BackupScheduleBase object, use the New-AzureStorSimpleDeviceBackupScheduleAddConfig cmdlet.</maml:para></maml:description><command:parameterValue required="true" variableLength="true">PSObject[]</command:parameterValue><dev:type><maml:name>PSObject[]</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>DeviceName</maml:name><maml:description><maml:para>Specifies the name of the StorSimple device on which to create the backup policy.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">Microsoft.Azure.Common.Authentication.Models.AzureProfile</command:parameterValue><dev:type><maml:name>Microsoft.Azure.Common.Authentication.Models.AzureProfile</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="true" globbing="false" pipelineInput="false" position="4" aliases="none"><maml:name>VolumeIdsToAdd</maml:name><maml:description><maml:para>Specifies an array of the IDs of volumes to add to the backup policy.</maml:para></maml:description><command:parameterValue required="true" variableLength="true">PSObject[]</command:parameterValue><dev:type><maml:name>PSObject[]</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="5" aliases="none"><maml:name>WaitForComplete</maml:name><maml:description><maml:para>Indicates that this cmdlet waits for the operation to complete before it returns control to the Windows PowerShell® console.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter></command:parameters><command:inputTypes><command:inputType><dev:type><maml:name>None</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para></maml:para></maml:description></command:inputType></command:inputTypes><command:returnValues><command:returnValue><dev:type><maml:name>BackupPolicy</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para>This cmdlet returns a BackupPolicy object that contains the new schedules and volumes.</maml:para></maml:description></command:returnValue></command:returnValues><command:terminatingErrors /><command:nonTerminatingErrors /><command:examples><command:example><maml:title>Example 1: Create a backup policy</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;$Schedule01 = New-AzureStorSimpleDeviceBackupScheduleAddConfig -BackupType LocalSnapshot -RecurrenceType Daily -RecurrenceValue 10 -RetentionCount 5 -Enabled $True PS C:\&gt; $Schedule02 = New-AzureStorSimpleDeviceBackupScheduleAddConfig -BackupType CloudSnapshot -RecurrenceType Hourly -RecurrenceValue 1 -RetentionCount 5 -Enabled $True PS C:\&gt; $ScheduleArray = @() PS C:\&gt; $ScheduleArray += $Schedule01 @@ -649,12 +685,12 @@ InstanceId : 8799c2f0-8850-4e91-aa23-ee18c67da8bd Name : GeneralPolicy07 OperationInProgress : None -</dev:code><dev:remarks><maml:para>The first command creates a backup schedule configuration object by using the New-AzureStorSimpleDeviceBackupScheduleAddConfig cmdlet, and then stores that object in the $Schedule01 variable. </maml:para><maml:para>The second command creates another backup configuration object by using New-AzureStorSimpleDeviceBackupScheduleAddConfig, and then stores that object in the $Schedule02 variable.</maml:para><maml:para>The third command creates an empty array variable, named $ScheduleArray. The next two commands add the objects created in the first two commands to $ScheduleArray.</maml:para><maml:para>The sixth command gets a volume container for the device named Contoso63-AppVm by using the Get-AzureStorSimpleDeviceVolumeContainer cmdlet, and then stores that container object in the $DeviceContainer variable. </maml:para><maml:para>The seventh command gets a volume for the volume container stored in the first member of $DeviceContainer by using the Get-AzureStorSimpleDeviceVolume cmdlet, and then stores that volume in the $Volume variable.</maml:para><maml:para>The eighth command creates an empty array variable, named $VolumeArray. The next command adds a volume ID to $VolumeArray. This value identifies the volume, stored in $Volume, on which the backup policy runs. You can add additional volume IDs to $VolumeArray.</maml:para><maml:para>The final command creates the backup policy named GeneralPolicy07 for the device named Contoso63-AppVm. The command specifies the schedule configuration objects stored in $ScheduleArray. The command specifies the volume or volumes to which to apply the policy in $VolumeArray. You can verify the backup policy by using the Get-AzureStorSimpleDeviceBackupPolicy cmdlet.</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example></command:examples><maml:relatedLinks><maml:navigationLink><maml:linkText>Get-AzureStorSimpleDeviceBackupPolicy</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>Get-AzureStorSimpleDeviceVolume</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>Get-AzureStorSimpleDeviceVolumeContainer</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>Remove-AzureStorSimpleDeviceBackupPolicy</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>Set-AzureStorSimpleDeviceBackupPolicy</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>New-AzureStorSimpleDeviceBackupScheduleAddConfig</maml:linkText><maml:uri /></maml:navigationLink></maml:relatedLinks></command:command><command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><command:details><command:name>New-AzureStorSimpleDeviceBackupScheduleAddConfig</command:name><maml:description><maml:para>Creates a backup schedule configuration object.</maml:para></maml:description><maml:copyright><maml:para /></maml:copyright><command:verb>New</command:verb><command:noun>AzureStorSimpleDeviceBackupScheduleAddConfig</command:noun><dev:version /></command:details><maml:description><maml:para>The New-AzureStorSimpleDeviceBackupScheduleAddConfig cmdlet creates a BackupScheduleBase configuration object. Use this configuration object to create new backup policy by using the New-AzureStorSimpleDeviceBackupPolicy cmdlet.</maml:para></maml:description><command:syntax><command:syntaxItem><maml:name>New-AzureStorSimpleDeviceBackupScheduleAddConfig</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>BackupType</maml:name><maml:description><maml:para>Specifies the backup type. Valid values are: LocalSnapshot and CloudSnapshot.</maml:para></maml:description><command:parameterValueGroup><command:parameterValue required="true" variableLength="false">LocalSnapshot</command:parameterValue><command:parameterValue required="true" variableLength="false">CloudSnapshot</command:parameterValue></command:parameterValueGroup></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="none"><maml:name>RecurrenceType</maml:name><maml:description><maml:para>Specifies the type of recurrence for this backup schedule. Valid values are: +</dev:code><dev:remarks><maml:para>The first command creates a backup schedule configuration object by using the New-AzureStorSimpleDeviceBackupScheduleAddConfig cmdlet, and then stores that object in the $Schedule01 variable. </maml:para><maml:para>The second command creates another backup configuration object by using New-AzureStorSimpleDeviceBackupScheduleAddConfig, and then stores that object in the $Schedule02 variable.</maml:para><maml:para>The third command creates an empty array variable, named $ScheduleArray. The next two commands add the objects created in the first two commands to $ScheduleArray.</maml:para><maml:para>The sixth command gets a volume container for the device named Contoso63-AppVm by using the Get-AzureStorSimpleDeviceVolumeContainer cmdlet, and then stores that container object in the $DeviceContainer variable. </maml:para><maml:para>The seventh command gets a volume for the volume container stored in the first member of $DeviceContainer by using the Get-AzureStorSimpleDeviceVolume cmdlet, and then stores that volume in the $Volume variable.</maml:para><maml:para>The eighth command creates an empty array variable, named $VolumeArray. The next command adds a volume ID to $VolumeArray. This value identifies the volume, stored in $Volume, on which the backup policy runs. You can add additional volume IDs to $VolumeArray.</maml:para><maml:para>The final command creates the backup policy named GeneralPolicy07 for the device named Contoso63-AppVm. The command specifies the schedule configuration objects stored in $ScheduleArray. The command specifies the volume or volumes to which to apply the policy in $VolumeArray. You can verify the backup policy by using the Get-AzureStorSimpleDeviceBackupPolicy cmdlet.</maml:para><maml:para /><maml:para /></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example></command:examples><maml:relatedLinks><maml:navigationLink><maml:linkText>Get-AzureStorSimpleDeviceBackupPolicy</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>Get-AzureStorSimpleDeviceVolume</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>Get-AzureStorSimpleDeviceVolumeContainer</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>Remove-AzureStorSimpleDeviceBackupPolicy</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>Set-AzureStorSimpleDeviceBackupPolicy</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>New-AzureStorSimpleDeviceBackupScheduleAddConfig</maml:linkText><maml:uri /></maml:navigationLink></maml:relatedLinks></command:command><command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><command:details><command:name>New-AzureStorSimpleDeviceBackupScheduleAddConfig</command:name><maml:description><maml:para>Creates a backup schedule configuration object.</maml:para></maml:description><maml:copyright><maml:para /></maml:copyright><command:verb>New</command:verb><command:noun>AzureStorSimpleDeviceBackupScheduleAddConfig</command:noun><dev:version /></command:details><maml:description><maml:para>The New-AzureStorSimpleDeviceBackupScheduleAddConfig cmdlet creates a BackupScheduleBase configuration object. Use this configuration object to create new backup policy by using the New-AzureStorSimpleDeviceBackupPolicy cmdlet.</maml:para></maml:description><command:syntax><command:syntaxItem><maml:name>New-AzureStorSimpleDeviceBackupScheduleAddConfig</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>BackupType</maml:name><maml:description><maml:para>Specifies the backup type. Valid values are: LocalSnapshot and CloudSnapshot.</maml:para></maml:description><command:parameterValueGroup><command:parameterValue required="true" variableLength="false">LocalSnapshot</command:parameterValue><command:parameterValue required="true" variableLength="false">CloudSnapshot</command:parameterValue></command:parameterValueGroup></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="none"><maml:name>RecurrenceType</maml:name><maml:description><maml:para>Specifies the type of recurrence for this backup schedule. Valid values are: -- Minutes -- Hourly -- Daily --- Weekly</maml:para></maml:description><command:parameterValueGroup><command:parameterValue required="true" variableLength="false">Minutes</command:parameterValue><command:parameterValue required="true" variableLength="false">Hourly</command:parameterValue><command:parameterValue required="true" variableLength="false">Daily</command:parameterValue><command:parameterValue required="true" variableLength="false">Weekly</command:parameterValue></command:parameterValueGroup></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>RecurrenceValue</maml:name><maml:description><maml:para>Specifies how often to make a backup. This parameter uses the unit specified by the RecurrenceType parameter.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="4" aliases="none"><maml:name>RetentionCount</maml:name><maml:description><maml:para>Specifies the number of days to keep a backup.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int64</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="5" aliases="none"><maml:name>StartFromDateTime</maml:name><maml:description><maml:para>Specifies the date from which to start making backups. The default value is the current time.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="6" aliases="none"><maml:name>Enabled</maml:name><maml:description><maml:para>Indicates whether to enable the backup schedule.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Boolean</command:parameterValue></command:parameter></command:syntaxItem></command:syntax><command:parameters><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>BackupType</maml:name><maml:description><maml:para>Specifies the backup type. Valid values are: LocalSnapshot and CloudSnapshot.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="6" aliases="none"><maml:name>Enabled</maml:name><maml:description><maml:para>Indicates whether to enable the backup schedule.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Boolean</command:parameterValue><dev:type><maml:name>Boolean</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="none"><maml:name>RecurrenceType</maml:name><maml:description><maml:para>Specifies the type of recurrence for this backup schedule. Valid values are: +-- Weekly</maml:para></maml:description><command:parameterValueGroup><command:parameterValue required="true" variableLength="false">Minutes</command:parameterValue><command:parameterValue required="true" variableLength="false">Hourly</command:parameterValue><command:parameterValue required="true" variableLength="false">Daily</command:parameterValue><command:parameterValue required="true" variableLength="false">Weekly</command:parameterValue></command:parameterValueGroup></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>RecurrenceValue</maml:name><maml:description><maml:para>Specifies how often to make a backup. This parameter uses the unit specified by the RecurrenceType parameter.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="4" aliases="none"><maml:name>RetentionCount</maml:name><maml:description><maml:para>Specifies the number of days to keep a backup.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int64</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="5" aliases="none"><maml:name>StartFromDateTime</maml:name><maml:description><maml:para>Specifies the date from which to start making backups. The default value is the current time.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="6" aliases="none"><maml:name>Enabled</maml:name><maml:description><maml:para>Indicates whether to enable the backup schedule.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Boolean</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">Microsoft.Azure.Common.Authentication.Models.AzureProfile</command:parameterValue></command:parameter></command:syntaxItem></command:syntax><command:parameters><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>BackupType</maml:name><maml:description><maml:para>Specifies the backup type. Valid values are: LocalSnapshot and CloudSnapshot.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="6" aliases="none"><maml:name>Enabled</maml:name><maml:description><maml:para>Indicates whether to enable the backup schedule.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Boolean</command:parameterValue><dev:type><maml:name>Boolean</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">Microsoft.Azure.Common.Authentication.Models.AzureProfile</command:parameterValue><dev:type><maml:name>Microsoft.Azure.Common.Authentication.Models.AzureProfile</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="none"><maml:name>RecurrenceType</maml:name><maml:description><maml:para>Specifies the type of recurrence for this backup schedule. Valid values are: -- Minutes -- Hourly @@ -668,12 +704,12 @@ Recurrence : Microsoft.WindowsAzure.Management.StorSimple.Models.ScheduleRec RetentionCount : 100 StartTime : 2014-12-16T00:37:19+05:30 Status : Enabled -</dev:code><dev:remarks><maml:para>This command creates a backup schedule base object for cloud snapshot backups. The backup occurs every day, and the backups are kept for 100 days. This schedule is enabled from the default time, which is the current time. </maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example></command:examples><maml:relatedLinks><maml:navigationLink><maml:linkText>New-AzureStorSimpleDeviceBackupScheduleUpdateConfig</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>New-AzureStorSimpleDeviceBackupPolicy</maml:linkText><maml:uri /></maml:navigationLink></maml:relatedLinks></command:command><command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><command:details><command:name>New-AzureStorSimpleDeviceBackupScheduleUpdateConfig</command:name><maml:description><maml:para>Creates a backup schedule update configuration object.</maml:para></maml:description><maml:copyright><maml:para /></maml:copyright><command:verb>New</command:verb><command:noun>AzureStorSimpleDeviceBackupScheduleUpdateConfig</command:noun><dev:version /></command:details><maml:description><maml:para>The New-AzureStorSimpleDeviceBackupScheduleUpdateConfig cmdlet creates a BackupScheduleUpdateRequest configuration object. Use this configuration object to update a backup policy by using the Set-AzureStorSimpleDeviceBackupPolicy cmdlet. </maml:para></maml:description><command:syntax><command:syntaxItem><maml:name>New-AzureStorSimpleDeviceBackupScheduleUpdateConfig</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>Id</maml:name><maml:description><maml:para>Specifies the instance ID of the backup schedule to update.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="none"><maml:name>BackupType</maml:name><maml:description><maml:para>Specifies the backup type. Valid values are: LocalSnapshot and CloudSnapshot.</maml:para></maml:description><command:parameterValueGroup><command:parameterValue required="true" variableLength="false">LocalSnapshot</command:parameterValue><command:parameterValue required="true" variableLength="false">CloudSnapshot</command:parameterValue></command:parameterValueGroup></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>RecurrenceType</maml:name><maml:description><maml:para>Specifies the type of recurrence for this backup schedule. Valid values are: +</dev:code><dev:remarks><maml:para>This command creates a backup schedule base object for cloud snapshot backups. The backup occurs every day, and the backups are kept for 100 days. This schedule is enabled from the default time, which is the current time. </maml:para><maml:para /><maml:para /></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example></command:examples><maml:relatedLinks><maml:navigationLink><maml:linkText>New-AzureStorSimpleDeviceBackupScheduleUpdateConfig</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>New-AzureStorSimpleDeviceBackupPolicy</maml:linkText><maml:uri /></maml:navigationLink></maml:relatedLinks></command:command><command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><command:details><command:name>New-AzureStorSimpleDeviceBackupScheduleUpdateConfig</command:name><maml:description><maml:para>Creates a backup schedule update configuration object.</maml:para></maml:description><maml:copyright><maml:para /></maml:copyright><command:verb>New</command:verb><command:noun>AzureStorSimpleDeviceBackupScheduleUpdateConfig</command:noun><dev:version /></command:details><maml:description><maml:para>The New-AzureStorSimpleDeviceBackupScheduleUpdateConfig cmdlet creates a BackupScheduleUpdateRequest configuration object. Use this configuration object to update a backup policy by using the Set-AzureStorSimpleDeviceBackupPolicy cmdlet. </maml:para></maml:description><command:syntax><command:syntaxItem><maml:name>New-AzureStorSimpleDeviceBackupScheduleUpdateConfig</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>Id</maml:name><maml:description><maml:para>Specifies the instance ID of the backup schedule to update.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="none"><maml:name>BackupType</maml:name><maml:description><maml:para>Specifies the backup type. Valid values are: LocalSnapshot and CloudSnapshot.</maml:para></maml:description><command:parameterValueGroup><command:parameterValue required="true" variableLength="false">LocalSnapshot</command:parameterValue><command:parameterValue required="true" variableLength="false">CloudSnapshot</command:parameterValue></command:parameterValueGroup></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>RecurrenceType</maml:name><maml:description><maml:para>Specifies the type of recurrence for this backup schedule. Valid values are: -- Minutes -- Hourly -- Daily --- Weekly</maml:para></maml:description><command:parameterValueGroup><command:parameterValue required="true" variableLength="false">Minutes</command:parameterValue><command:parameterValue required="true" variableLength="false">Hourly</command:parameterValue><command:parameterValue required="true" variableLength="false">Daily</command:parameterValue><command:parameterValue required="true" variableLength="false">Weekly</command:parameterValue></command:parameterValueGroup></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="4" aliases="none"><maml:name>RecurrenceValue</maml:name><maml:description><maml:para>Specifies how often to make a backup. This parameter uses the unit specified by the RecurrenceType parameter.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="5" aliases="none"><maml:name>RetentionCount</maml:name><maml:description><maml:para>Specifies the number of days to keep a backup.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int64</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="6" aliases="none"><maml:name>StartFromDateTime</maml:name><maml:description><maml:para>Specifies the date from which to start making backups. The default value is the current time.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="7" aliases="none"><maml:name>Enabled</maml:name><maml:description><maml:para>Indicates whether to enable the backup schedule.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">Boolean</command:parameterValue></command:parameter></command:syntaxItem></command:syntax><command:parameters><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="none"><maml:name>BackupType</maml:name><maml:description><maml:para>Specifies the backup type. Valid values are: LocalSnapshot and CloudSnapshot.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="7" aliases="none"><maml:name>Enabled</maml:name><maml:description><maml:para>Indicates whether to enable the backup schedule.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">Boolean</command:parameterValue><dev:type><maml:name>Boolean</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>Id</maml:name><maml:description><maml:para>Specifies the instance ID of the backup schedule to update.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>RecurrenceType</maml:name><maml:description><maml:para>Specifies the type of recurrence for this backup schedule. Valid values are: +-- Weekly</maml:para></maml:description><command:parameterValueGroup><command:parameterValue required="true" variableLength="false">Minutes</command:parameterValue><command:parameterValue required="true" variableLength="false">Hourly</command:parameterValue><command:parameterValue required="true" variableLength="false">Daily</command:parameterValue><command:parameterValue required="true" variableLength="false">Weekly</command:parameterValue></command:parameterValueGroup></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="4" aliases="none"><maml:name>RecurrenceValue</maml:name><maml:description><maml:para>Specifies how often to make a backup. This parameter uses the unit specified by the RecurrenceType parameter.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int32</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="5" aliases="none"><maml:name>RetentionCount</maml:name><maml:description><maml:para>Specifies the number of days to keep a backup.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Int64</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="6" aliases="none"><maml:name>StartFromDateTime</maml:name><maml:description><maml:para>Specifies the date from which to start making backups. The default value is the current time.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="7" aliases="none"><maml:name>Enabled</maml:name><maml:description><maml:para>Indicates whether to enable the backup schedule.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">Boolean</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">Microsoft.Azure.Common.Authentication.Models.AzureProfile</command:parameterValue></command:parameter></command:syntaxItem></command:syntax><command:parameters><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="none"><maml:name>BackupType</maml:name><maml:description><maml:para>Specifies the backup type. Valid values are: LocalSnapshot and CloudSnapshot.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="7" aliases="none"><maml:name>Enabled</maml:name><maml:description><maml:para>Indicates whether to enable the backup schedule.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">Boolean</command:parameterValue><dev:type><maml:name>Boolean</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>Id</maml:name><maml:description><maml:para>Specifies the instance ID of the backup schedule to update.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">Microsoft.Azure.Common.Authentication.Models.AzureProfile</command:parameterValue><dev:type><maml:name>Microsoft.Azure.Common.Authentication.Models.AzureProfile</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>RecurrenceType</maml:name><maml:description><maml:para>Specifies the type of recurrence for this backup schedule. Valid values are: -- Minutes -- Hourly @@ -688,7 +724,7 @@ Recurrence : Microsoft.WindowsAzure.Management.StorSimple.Models.ScheduleRec RetentionCount : 50 StartTime : 2014-12-16T00:39:32+05:30 Status : Enabled -</dev:code><dev:remarks><maml:para>This command creates a backup schedule update request for the schedule that has the specified ID. The request is to make the schedule a cloud snapshot backup that recurs every hour. The backups are kept for 50 days. This schedule is enabled from the default time, which is the current time.</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example></command:examples><maml:relatedLinks><maml:navigationLink><maml:linkText>New-AzureStorSimpleDeviceBackupScheduleAddConfig</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>Set-AzureStorSimpleDeviceBackupPolicy</maml:linkText><maml:uri /></maml:navigationLink></maml:relatedLinks></command:command><command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><command:details><command:name>New-AzureStorSimpleDeviceVolume</command:name><maml:description><maml:para>Creates a volume in a specified volume container.</maml:para></maml:description><maml:copyright><maml:para /></maml:copyright><command:verb>New</command:verb><command:noun>AzureStorSimpleDeviceVolume</command:noun><dev:version /></command:details><maml:description><maml:para>The New-AzureStorSimpleDeviceVolume cmdlet creates a volume in a specified volume container. This cmdlet associates each volume with one or more access control records. To obtain AccessControlRecord objects, use the Get-AzureStorSimpleAccessControlRecord cmdlet. Specify a name, size, and AppType for the volume. Also, specify whether to create the volume online, whether to enable default backup, and whether to enable monitoring.</maml:para></maml:description><command:syntax><command:syntaxItem><maml:name>New-AzureStorSimpleDeviceVolume</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>DeviceName</maml:name><maml:description><maml:para>Specifies the name of the StorSimple device on which to create the volume.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="10" aliases="none"><maml:name>WaitForComplete</maml:name><maml:description><maml:para>Indicates that this cmdlet waits for the operation to complete before it returns control to the Windows PowerShell® console.</maml:para></maml:description></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true(ByValue)" position="2" aliases="Container"><maml:name>VolumeContainer</maml:name><maml:description><maml:para>Specifies the container, as a DataContainer object, in which to create the volume. To obtain a VirtualDisk object, use the Get-AzureStorSimpleDeviceVolumeContainer cmdlet.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">DataContainer</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="Name"><maml:name>VolumeName</maml:name><maml:description><maml:para>Specifies a name for the new volume.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="4" aliases="Size"><maml:name>VolumeSize</maml:name><maml:description><maml:para></maml:para></maml:description><command:parameterValue required="true" variableLength="false">System.Int64</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true(ByValue)" position="5" aliases="none"><maml:name>AccessControlRecords</maml:name><maml:description><maml:para>Specifies a list of access control records to associate with the volume.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">0, Culture=neutral, PublicKeyToken=null</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="6" aliases="AppType"><maml:name>VolumeAppType</maml:name><maml:description><maml:para>Specifies whether to create a primary or archive volume. Valid values are: PrimaryVolume and ArchiveVolume.</maml:para></maml:description><command:parameterValueGroup><command:parameterValue required="true" variableLength="false">Invalid</command:parameterValue><command:parameterValue required="true" variableLength="false">PrimaryVolume</command:parameterValue><command:parameterValue required="true" variableLength="false">ArchiveVolume</command:parameterValue></command:parameterValueGroup></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="7" aliases="none"><maml:name>Online</maml:name><maml:description><maml:para>Specifies whether to create the volume online.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Boolean</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="8" aliases="none"><maml:name>EnableDefaultBackup</maml:name><maml:description><maml:para>Specifies whether to enable default backup for the volume.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Boolean</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="9" aliases="none"><maml:name>EnableMonitoring</maml:name><maml:description><maml:para>Specifies whether to enable monitoring for the volume. </maml:para></maml:description><command:parameterValue required="true" variableLength="false">Boolean</command:parameterValue></command:parameter></command:syntaxItem></command:syntax><command:parameters><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true(ByValue)" position="5" aliases="none"><maml:name>AccessControlRecords</maml:name><maml:description><maml:para>Specifies a list of access control records to associate with the volume.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">0, Culture=neutral, PublicKeyToken=null</command:parameterValue><dev:type><maml:name>0, Culture=neutral, PublicKeyToken=null</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>DeviceName</maml:name><maml:description><maml:para>Specifies the name of the StorSimple device on which to create the volume.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="8" aliases="none"><maml:name>EnableDefaultBackup</maml:name><maml:description><maml:para>Specifies whether to enable default backup for the volume.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Boolean</command:parameterValue><dev:type><maml:name>Boolean</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="9" aliases="none"><maml:name>EnableMonitoring</maml:name><maml:description><maml:para>Specifies whether to enable monitoring for the volume. </maml:para></maml:description><command:parameterValue required="true" variableLength="false">Boolean</command:parameterValue><dev:type><maml:name>Boolean</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="7" aliases="none"><maml:name>Online</maml:name><maml:description><maml:para>Specifies whether to create the volume online.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Boolean</command:parameterValue><dev:type><maml:name>Boolean</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="6" aliases="AppType"><maml:name>VolumeAppType</maml:name><maml:description><maml:para>Specifies whether to create a primary or archive volume. Valid values are: PrimaryVolume and ArchiveVolume.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">AppType</command:parameterValue><dev:type><maml:name>AppType</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true(ByValue)" position="2" aliases="Container"><maml:name>VolumeContainer</maml:name><maml:description><maml:para>Specifies the container, as a DataContainer object, in which to create the volume. To obtain a VirtualDisk object, use the Get-AzureStorSimpleDeviceVolumeContainer cmdlet.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">DataContainer</command:parameterValue><dev:type><maml:name>DataContainer</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="Name"><maml:name>VolumeName</maml:name><maml:description><maml:para>Specifies a name for the new volume.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="4" aliases="Size"><maml:name>VolumeSize</maml:name><maml:description><maml:para></maml:para></maml:description><command:parameterValue required="true" variableLength="false">System.Int64</command:parameterValue><dev:type><maml:name>System.Int64</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="10" aliases="none"><maml:name>WaitForComplete</maml:name><maml:description><maml:para>Indicates that this cmdlet waits for the operation to complete before it returns control to the Windows PowerShell® console.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter></command:parameters><command:inputTypes><command:inputType><dev:type><maml:name>DataContainer, List&lt;AccessControlRecord&gt;</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para>This cmdlet accepts a DataContainer object and a list of AccessControlRecord objects for the new volume.</maml:para></maml:description></command:inputType></command:inputTypes><command:returnValues><command:returnValue><dev:type><maml:name>TaskStatusInfo</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para>This cmdlet returns a TaskStatusInfo object, if you specify the WaitForComplete parameter. </maml:para></maml:description></command:returnValue></command:returnValues><command:terminatingErrors /><command:nonTerminatingErrors /><command:examples><command:example><maml:title>Example 1: Create a volume</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;$AcrList = Get-AzureStorSimpleAccessControlRecord +</dev:code><dev:remarks><maml:para>This command creates a backup schedule update request for the schedule that has the specified ID. The request is to make the schedule a cloud snapshot backup that recurs every hour. The backups are kept for 50 days. This schedule is enabled from the default time, which is the current time.</maml:para><maml:para /><maml:para /></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example></command:examples><maml:relatedLinks><maml:navigationLink><maml:linkText>New-AzureStorSimpleDeviceBackupScheduleAddConfig</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>Set-AzureStorSimpleDeviceBackupPolicy</maml:linkText><maml:uri /></maml:navigationLink></maml:relatedLinks></command:command><command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><command:details><command:name>New-AzureStorSimpleDeviceVolume</command:name><maml:description><maml:para>Creates a volume in a specified volume container.</maml:para></maml:description><maml:copyright><maml:para /></maml:copyright><command:verb>New</command:verb><command:noun>AzureStorSimpleDeviceVolume</command:noun><dev:version /></command:details><maml:description><maml:para>The New-AzureStorSimpleDeviceVolume cmdlet creates a volume in a specified volume container. This cmdlet associates each volume with one or more access control records. To obtain AccessControlRecord objects, use the Get-AzureStorSimpleAccessControlRecord cmdlet. Specify a name, size, and AppType for the volume. Also, specify whether to create the volume online, whether to enable default backup, and whether to enable monitoring.</maml:para></maml:description><command:syntax><command:syntaxItem><maml:name>New-AzureStorSimpleDeviceVolume</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>DeviceName</maml:name><maml:description><maml:para>Specifies the name of the StorSimple device on which to create the volume.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="10" aliases="none"><maml:name>WaitForComplete</maml:name><maml:description><maml:para>Indicates that this cmdlet waits for the operation to complete before it returns control to the Windows PowerShell® console.</maml:para></maml:description></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true(ByValue)" position="2" aliases="Container"><maml:name>VolumeContainer</maml:name><maml:description><maml:para>Specifies the container, as a DataContainer object, in which to create the volume. To obtain a VirtualDisk object, use the Get-AzureStorSimpleDeviceVolumeContainer cmdlet.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">DataContainer</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="Name"><maml:name>VolumeName</maml:name><maml:description><maml:para>Specifies a name for the new volume.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="4" aliases="SizeInBytes"><maml:name>VolumeSizeInBytes</maml:name><maml:description><maml:para>Specifies the volume size in bytes.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">System.Int64</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true(ByValue)" position="5" aliases="none"><maml:name>AccessControlRecords</maml:name><maml:description><maml:para>Specifies a list of access control records to associate with the volume.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">0, Culture=neutral, PublicKeyToken=null</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="6" aliases="AppType"><maml:name>VolumeAppType</maml:name><maml:description><maml:para>Specifies whether to create a primary or archive volume. Valid values are: PrimaryVolume and ArchiveVolume.</maml:para></maml:description><command:parameterValueGroup><command:parameterValue required="true" variableLength="false">Invalid</command:parameterValue><command:parameterValue required="true" variableLength="false">PrimaryVolume</command:parameterValue><command:parameterValue required="true" variableLength="false">ArchiveVolume</command:parameterValue></command:parameterValueGroup></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="7" aliases="none"><maml:name>Online</maml:name><maml:description><maml:para>Specifies whether to create the volume online.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Boolean</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="8" aliases="none"><maml:name>EnableDefaultBackup</maml:name><maml:description><maml:para>Specifies whether to enable default backup for the volume.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Boolean</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="9" aliases="none"><maml:name>EnableMonitoring</maml:name><maml:description><maml:para>Specifies whether to enable monitoring for the volume. </maml:para></maml:description><command:parameterValue required="true" variableLength="false">Boolean</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">Microsoft.Azure.Common.Authentication.Models.AzureProfile</command:parameterValue></command:parameter></command:syntaxItem></command:syntax><command:parameters><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true(ByValue)" position="5" aliases="none"><maml:name>AccessControlRecords</maml:name><maml:description><maml:para>Specifies a list of access control records to associate with the volume.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">0, Culture=neutral, PublicKeyToken=null</command:parameterValue><dev:type><maml:name>0, Culture=neutral, PublicKeyToken=null</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>DeviceName</maml:name><maml:description><maml:para>Specifies the name of the StorSimple device on which to create the volume.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="8" aliases="none"><maml:name>EnableDefaultBackup</maml:name><maml:description><maml:para>Specifies whether to enable default backup for the volume.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Boolean</command:parameterValue><dev:type><maml:name>Boolean</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="9" aliases="none"><maml:name>EnableMonitoring</maml:name><maml:description><maml:para>Specifies whether to enable monitoring for the volume. </maml:para></maml:description><command:parameterValue required="true" variableLength="false">Boolean</command:parameterValue><dev:type><maml:name>Boolean</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="7" aliases="none"><maml:name>Online</maml:name><maml:description><maml:para>Specifies whether to create the volume online.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Boolean</command:parameterValue><dev:type><maml:name>Boolean</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">Microsoft.Azure.Common.Authentication.Models.AzureProfile</command:parameterValue><dev:type><maml:name>Microsoft.Azure.Common.Authentication.Models.AzureProfile</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="6" aliases="AppType"><maml:name>VolumeAppType</maml:name><maml:description><maml:para>Specifies whether to create a primary or archive volume. Valid values are: PrimaryVolume and ArchiveVolume.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">AppType</command:parameterValue><dev:type><maml:name>AppType</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true(ByValue)" position="2" aliases="Container"><maml:name>VolumeContainer</maml:name><maml:description><maml:para>Specifies the container, as a DataContainer object, in which to create the volume. To obtain a VirtualDisk object, use the Get-AzureStorSimpleDeviceVolumeContainer cmdlet.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">DataContainer</command:parameterValue><dev:type><maml:name>DataContainer</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="Name"><maml:name>VolumeName</maml:name><maml:description><maml:para>Specifies a name for the new volume.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="4" aliases="SizeInBytes"><maml:name>VolumeSizeInBytes</maml:name><maml:description><maml:para>Specifies the volume size in bytes.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">System.Int64</command:parameterValue><dev:type><maml:name>System.Int64</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="10" aliases="none"><maml:name>WaitForComplete</maml:name><maml:description><maml:para>Indicates that this cmdlet waits for the operation to complete before it returns control to the Windows PowerShell® console.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter></command:parameters><command:inputTypes><command:inputType><dev:type><maml:name>DataContainer, List&lt;AccessControlRecord&gt;</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para>This cmdlet accepts a DataContainer object and a list of AccessControlRecord objects for the new volume.</maml:para></maml:description></command:inputType></command:inputTypes><command:returnValues><command:returnValue><dev:type><maml:name>TaskStatusInfo</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para>This cmdlet returns a TaskStatusInfo object, if you specify the WaitForComplete parameter. </maml:para></maml:description></command:returnValue></command:returnValues><command:terminatingErrors /><command:nonTerminatingErrors /><command:examples><command:example><maml:title>Example 1: Create a volume</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;$AcrList = Get-AzureStorSimpleAccessControlRecord PS C:\&gt; Get-AzureStorSimpleDeviceVolumeContainer -DeviceName "Contoso63-AppVm" -VolumeContainerName "VolumeContainer07" | New-AzureStorSimpleDeviceVolume -DeviceName "Contoso63-AppVm" -VolumeName "Volume18" -Size 2000000000 -AccessControlRecords $AcrList -VolumeAppType PrimaryVolume -Online $True -EnableDefaultBackup $False -EnableMonitoring $False VERBOSE: ClientRequestId: a29d1a84-1f81-4f20-9130-7adfe45e41fb_PS @@ -701,7 +737,7 @@ c3b1ad53-7a51-49d7-ae83-94ff1ff3ab90 VERBOSE: The create task is submitted successfully. Please use the command Get-AzureStorSimpleTask -InstanceId c3b1ad53-7a51-49d7-ae83-94ff1ff3ab90 for tracking the task's status VERBOSE: Volume container with name: VolumeContainer07 is found. -</dev:code><dev:remarks><maml:para>The first command gets the access control records in the StorSimple Manager service configuration by using the Get-AzureStorSimpleAccessControlRecord cmdlet, and then stores them in the $AcrList variable.</maml:para><maml:para>The second command gets the volume container named VolumeContainer07 for the device named Contoso63-AppVm by using the Get-AzureStorSimpleDeviceVolumeContainer cmdlet. The command passes that container to the current cmdlet by using the pipeline operator. This cmdlet creates the volume. The command specifies the name for the volume, the size, and the access control records stored in $AcrList. This command starts the job, and then returns a TaskResponse object. To see the status of the job, use the Get-AzureStorSimpleTask cmdlet. </maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>Example 2: Create a volume without Access Controlaccess control records access control</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Get-AzureStorSimpleDeviceVolumeContainer -DeviceName "Contoso63-AppVm" -VolumeContainerName "VolumeContainer01" | New-AzureStorSimpleDeviceVolume -DeviceName "Contoso63-AppVm" -VolumeName "Volume22" -Size 2000000000 -AccessControlRecords @() -VolumeAppType PrimaryVolume -Online $True -EnableDefaultBackup $False -EnableMonitoring $False -WaitForComplete +</dev:code><dev:remarks><maml:para>The first command gets the access control records in the StorSimple Manager service configuration by using the Get-AzureStorSimpleAccessControlRecord cmdlet, and then stores them in the $AcrList variable.</maml:para><maml:para>The second command gets the volume container named VolumeContainer07 for the device named Contoso63-AppVm by using the Get-AzureStorSimpleDeviceVolumeContainer cmdlet. The command passes that container to the current cmdlet by using the pipeline operator. This cmdlet creates the volume. The command specifies the name for the volume, the size, and the access control records stored in $AcrList. This command starts the job, and then returns a TaskResponse object. To see the status of the job, use the Get-AzureStorSimpleTask cmdlet. </maml:para><maml:para /><maml:para /></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>Example 2: Create a volume without Access Controlaccess control recordsaccess control</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Get-AzureStorSimpleDeviceVolumeContainer -DeviceName "Contoso63-AppVm" -VolumeContainerName "VolumeContainer01" | New-AzureStorSimpleDeviceVolume -DeviceName "Contoso63-AppVm" -VolumeName "Volume22" -Size 2000000000 -AccessControlRecords @() -VolumeAppType PrimaryVolume -Online $True -EnableDefaultBackup $False -EnableMonitoring $False -WaitForComplete VERBOSE: ClientRequestId: 3f359790-7e1f-48e7-acf8-ecabba850966_PS VERBOSE: ClientRequestId: 2723ebcf-cd72-47bb-99b5-0c099d45641b_PS VERBOSE: ClientRequestId: e605091f-dd63-42a7-bda2-24753cbc1f9a_PS @@ -737,7 +773,7 @@ SizeInBytes : 2000000000 VSN : SS-VOL-d73b7eec-76fc-4310-b347-69b160de8cdd VERBOSE: Volume container with name: VolumeContainer01 is found. -</dev:code><dev:remarks><maml:para>This command gets the volume container named VolumeContainer01 for the device named Contoso63-AppVm by using the Get-AzureStorSimpleDeviceVolumeContainer cmdlet. The command passes that container to the current cmdlet by using the pipeline operator. This cmdlet creates the volume. The command specifies the name for the volume, the size, and an empty value for access control records. This command specifies the WaitForComplete parameter, so it returns a TaskStatusInfo after it creates the volume. </maml:para><maml:para>Because the command specifies no access control records, this volume cannot be accessed. You can add access, later, by using Set-AzureStorSimpleDeviceVolume cmdlet.</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example></command:examples><maml:relatedLinks><maml:navigationLink><maml:linkText>Get-AzureStorSimpleDeviceVolume</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>Remove-AzureStorSimpleDeviceVolume</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>Set-AzureStorSimpleDeviceVolume</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>Get-AzureStorSimpleAccessControlRecord</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>Get-AzureStorSimpleDeviceVolumeContainer</maml:linkText><maml:uri /></maml:navigationLink></maml:relatedLinks></command:command><command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><command:details><command:name>New-AzureStorSimpleDeviceVolumeContainer</command:name><maml:description><maml:para>Creates a volume container.</maml:para></maml:description><maml:copyright><maml:para /></maml:copyright><command:verb>New</command:verb><command:noun>AzureStorSimpleDeviceVolumeContainer</command:noun><dev:version /></command:details><maml:description><maml:para>The New-AzureStorSimpleDeviceVolumeContainer cmdlet creates a volume container. You must associate a storage account credential with the new volume container. To obtain a storage account credential, use the Get-AzureStorSimpleStorageAccountCredential cmdlet. </maml:para></maml:description><command:syntax><command:syntaxItem><maml:name>New-AzureStorSimpleDeviceVolumeContainer</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>DeviceName</maml:name><maml:description><maml:para>Specifies the name of the StorSimple device on which to create the volume container.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="Name"><maml:name>VolumeContainerName</maml:name><maml:description><maml:para>Specifies the name of the volume container to create.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true(ByValue)" position="3" aliases="StorageAccount"><maml:name>PrimaryStorageAccountCredential</maml:name><maml:description><maml:para>Specifies the credential, as a StorageAccountCredential object, to associate with the new volume container. To obtain a StorageAccountCredential object, use the Get-AzureStorSimpleStorageAccountCredential cmdlet.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">StorageAccountCredentialResponse</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="4" aliases="CloudBandwidth"><maml:name>BandWidthRate</maml:name><maml:description><maml:para></maml:para></maml:description><command:parameterValue required="true" variableLength="false">System.Int32</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="5" aliases="none"><maml:name>EncryptionEnabled</maml:name><maml:description><maml:para>Indicates whether to enable encryption.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">Boolean</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="6" aliases="none"><maml:name>EncryptionKey</maml:name><maml:description><maml:para>Specifies the encryption key.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="7" aliases="none"><maml:name>WaitForComplete</maml:name><maml:description><maml:para>Indicates that this cmdlet waits for the operation to complete before it returns control to the Windows PowerShell® console.</maml:para></maml:description></command:parameter></command:syntaxItem></command:syntax><command:parameters><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="4" aliases="CloudBandwidth"><maml:name>BandWidthRate</maml:name><maml:description><maml:para></maml:para></maml:description><command:parameterValue required="true" variableLength="false">System.Int32</command:parameterValue><dev:type><maml:name>System.Int32</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>DeviceName</maml:name><maml:description><maml:para>Specifies the name of the StorSimple device on which to create the volume container.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="5" aliases="none"><maml:name>EncryptionEnabled</maml:name><maml:description><maml:para>Indicates whether to enable encryption.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">Boolean</command:parameterValue><dev:type><maml:name>Boolean</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="6" aliases="none"><maml:name>EncryptionKey</maml:name><maml:description><maml:para>Specifies the encryption key.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true(ByValue)" position="3" aliases="StorageAccount"><maml:name>PrimaryStorageAccountCredential</maml:name><maml:description><maml:para>Specifies the credential, as a StorageAccountCredential object, to associate with the new volume container. To obtain a StorageAccountCredential object, use the Get-AzureStorSimpleStorageAccountCredential cmdlet.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">StorageAccountCredentialResponse</command:parameterValue><dev:type><maml:name>StorageAccountCredentialResponse</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="Name"><maml:name>VolumeContainerName</maml:name><maml:description><maml:para>Specifies the name of the volume container to create.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="7" aliases="none"><maml:name>WaitForComplete</maml:name><maml:description><maml:para>Indicates that this cmdlet waits for the operation to complete before it returns control to the Windows PowerShell® console.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter></command:parameters><command:inputTypes><command:inputType><dev:type><maml:name>StorageAccountCredential</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para>This cmdlet accepts a PrimaryStorageAccountCredential object to associate with the volume container.</maml:para></maml:description></command:inputType></command:inputTypes><command:returnValues><command:returnValue><dev:type><maml:name>TaskStatusInfo</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para>This cmdlet returns a TaskStatusInfo object, if you specify the WaitForComplete parameter. </maml:para></maml:description></command:returnValue></command:returnValues><command:terminatingErrors /><command:nonTerminatingErrors /><command:examples><command:example><maml:title>Example 1: Create a container</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Get-AzureStorSimpleStorageAccountCredential -StorageAccountName "ContosoAccount" | New-AzureStorSimpleDeviceVolumeContainer -DeviceName "Contoso63-AppVm" -VolumeContainerName "Container08" -BandWidthRateInMbps 256 +</dev:code><dev:remarks><maml:para>This command gets the volume container named VolumeContainer01 for the device named Contoso63-AppVm by using the Get-AzureStorSimpleDeviceVolumeContainer cmdlet. The command passes that container to the current cmdlet by using the pipeline operator. This cmdlet creates the volume. The command specifies the name for the volume, the size, and an empty value for access control records. This command specifies the WaitForComplete parameter, so it returns a TaskStatusInfo after it creates the volume. </maml:para><maml:para>Because the command specifies no access control records, this volume cannot be accessed. You can add access, later, by using Set-AzureStorSimpleDeviceVolume cmdlet.</maml:para><maml:para /><maml:para /></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example></command:examples><maml:relatedLinks><maml:navigationLink><maml:linkText>Get-AzureStorSimpleDeviceVolume</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>Remove-AzureStorSimpleDeviceVolume</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>Set-AzureStorSimpleDeviceVolume</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>Get-AzureStorSimpleAccessControlRecord</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>Get-AzureStorSimpleDeviceVolumeContainer</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>Get-AzureStorSimpleJob</maml:linkText><maml:uri /></maml:navigationLink></maml:relatedLinks></command:command><command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><command:details><command:name>New-AzureStorSimpleDeviceVolumeContainer</command:name><maml:description><maml:para>Creates a volume container.</maml:para></maml:description><maml:copyright><maml:para /></maml:copyright><command:verb>New</command:verb><command:noun>AzureStorSimpleDeviceVolumeContainer</command:noun><dev:version /></command:details><maml:description><maml:para>The New-AzureStorSimpleDeviceVolumeContainer cmdlet creates a volume container. You must associate a storage account credential with the new volume container. To obtain a storage account credential, use the Get-AzureStorSimpleStorageAccountCredential cmdlet. </maml:para></maml:description><command:syntax><command:syntaxItem><maml:name>New-AzureStorSimpleDeviceVolumeContainer</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>DeviceName</maml:name><maml:description><maml:para>Specifies the name of the StorSimple device on which to create the volume container.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="Name"><maml:name>VolumeContainerName</maml:name><maml:description><maml:para>Specifies the name of the volume container to create.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true(ByValue)" position="3" aliases="StorageAccount"><maml:name>PrimaryStorageAccountCredential</maml:name><maml:description><maml:para>Specifies the credential, as a StorageAccountCredential object, to associate with the new volume container. To obtain a StorageAccountCredential object, use the Get-AzureStorSimpleStorageAccountCredential cmdlet.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">StorageAccountCredentialResponse</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="4" aliases="CloudBandwidthInMbps"><maml:name>BandWidthRateInMbps</maml:name><maml:description><maml:para>Specifies the bandwidth rate in megabits per second (Mbps). </maml:para></maml:description><command:parameterValue required="true" variableLength="false">System.Int32</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="5" aliases="none"><maml:name>EncryptionEnabled</maml:name><maml:description><maml:para>Indicates whether to enable encryption.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">Boolean</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="6" aliases="none"><maml:name>EncryptionKey</maml:name><maml:description><maml:para>Specifies the encryption key.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="7" aliases="none"><maml:name>WaitForComplete</maml:name><maml:description><maml:para>Indicates that this cmdlet waits for the operation to complete before it returns control to the Windows PowerShell® console.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">Microsoft.Azure.Common.Authentication.Models.AzureProfile</command:parameterValue></command:parameter></command:syntaxItem></command:syntax><command:parameters><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="4" aliases="CloudBandwidthInMbps"><maml:name>BandWidthRateInMbps</maml:name><maml:description><maml:para>Specifies the bandwidth rate in megabits per second (Mbps). </maml:para></maml:description><command:parameterValue required="true" variableLength="false">System.Int32</command:parameterValue><dev:type><maml:name>System.Int32</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>DeviceName</maml:name><maml:description><maml:para>Specifies the name of the StorSimple device on which to create the volume container.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="5" aliases="none"><maml:name>EncryptionEnabled</maml:name><maml:description><maml:para>Indicates whether to enable encryption.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">Boolean</command:parameterValue><dev:type><maml:name>Boolean</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="6" aliases="none"><maml:name>EncryptionKey</maml:name><maml:description><maml:para>Specifies the encryption key.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true(ByValue)" position="3" aliases="StorageAccount"><maml:name>PrimaryStorageAccountCredential</maml:name><maml:description><maml:para>Specifies the credential, as a StorageAccountCredential object, to associate with the new volume container. To obtain a StorageAccountCredential object, use the Get-AzureStorSimpleStorageAccountCredential cmdlet.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">StorageAccountCredentialResponse</command:parameterValue><dev:type><maml:name>StorageAccountCredentialResponse</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">Microsoft.Azure.Common.Authentication.Models.AzureProfile</command:parameterValue><dev:type><maml:name>Microsoft.Azure.Common.Authentication.Models.AzureProfile</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="Name"><maml:name>VolumeContainerName</maml:name><maml:description><maml:para>Specifies the name of the volume container to create.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="7" aliases="none"><maml:name>WaitForComplete</maml:name><maml:description><maml:para>Indicates that this cmdlet waits for the operation to complete before it returns control to the Windows PowerShell® console.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter></command:parameters><command:inputTypes><command:inputType><dev:type><maml:name>StorageAccountCredential</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para>This cmdlet accepts a PrimaryStorageAccountCredential object to associate with the volume container.</maml:para></maml:description></command:inputType></command:inputTypes><command:returnValues><command:returnValue><dev:type><maml:name>TaskStatusInfo</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para>This cmdlet returns a TaskStatusInfo object, if you specify the WaitForComplete parameter. </maml:para></maml:description></command:returnValue></command:returnValues><command:terminatingErrors /><command:nonTerminatingErrors /><command:examples><command:example><maml:title>Example 1: Create a container</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Get-AzureStorSimpleStorageAccountCredential -StorageAccountName "ContosoAccount" | New-AzureStorSimpleDeviceVolumeContainer -DeviceName "Contoso63-AppVm" -VolumeContainerName "Container08" -BandWidthRateInMbps 256 VERBOSE: ClientRequestId: 96a4ccd4-f2a9-4820-8bc8-e6b7b56dce0d_PS VERBOSE: ClientRequestId: 90be20db-098a-4f2b-a6da-9da6f533a846_PS VERBOSE: ClientRequestId: 410fd33a-8fa3-4ae5-a1bf-1b6da9b34ffc_PS @@ -748,7 +784,65 @@ VERBOSE: ClientRequestId: 0f3e894a-b031-467c-a258-41b74c89cf18_PS 5b192120-9df0-40ed-b75e-b4e728bd37ef VERBOSE: The create task is submitted successfully. Please use the command Get-AzureStorSimpleTask -InstanceId 5b192120-9df0-40ed-b75e-b4e728bd37ef for tracking the task's status -</dev:code><dev:remarks><maml:para>This command gets the storage account credential for the account named ContosoAccount by using the Get-AzureStorSimpleStorageAccountCredential cmdlet. The command passes the credential to the current cmdlet by using the pipeline operator. This cmdlet uses the credential from that cmdlet to create the container named Container08 on the device named Contoso63-AppVm. This command starts the job, and then returns a TaskResponse object. To see the status of the job, use the Get-AzureStorSimpleTask cmdlet. </maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example></command:examples><maml:relatedLinks><maml:navigationLink><maml:linkText>Get-AzureStorSimpleDeviceVolumeContainer</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>Remove-AzureStorSimpleDeviceVolumeContainer</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>Get-AzureStorSimpleStorageAccountCredential</maml:linkText><maml:uri /></maml:navigationLink></maml:relatedLinks></command:command><command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><command:details><command:name>New-AzureStorSimpleStorageAccountCredential</command:name><maml:description><maml:para>Adds an Azure storage access credential.</maml:para></maml:description><maml:copyright><maml:para /></maml:copyright><command:verb>New</command:verb><command:noun>AzureStorSimpleStorageAccountCredential</command:noun><dev:version /></command:details><maml:description><maml:para>The New-AzureStorSimpleStorageAccountCredential cmdlet adds an Azure storage access credential to StorSimple manager for use by StorSimple OneSDK cmdlets. Most of the StorSimple OneSDK cmdlets deal with entities that are eventually tied to a specific storage account, such as volumes, volume containers, backups, and backup policies. For some cmdlets, you must provide the credentials of the storage account in use. A storage account credential is an access object created in OneSDK that points to an existing Azure storage account. You provide the name and access key of an existing storage account to create a storage account credential. You can then use that credential object with other cmdlets. </maml:para><maml:para>This cmdlet uses the registration key that you provide when you select the resource by using the Select-AzureStorSimpleResource cmdlet. Be sure that value is correct to avoid encryption failure. To modify the registration key to a correct value, use Select-AzureStorSimpleResource. </maml:para></maml:description><command:syntax><command:syntaxItem><maml:name>New-AzureStorSimpleStorageAccountCredential</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="Name"><maml:name>StorageAccountName</maml:name><maml:description><maml:para>Specifies the name of an existing storage account. </maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="Key"><maml:name>StorageAccountKey</maml:name><maml:description><maml:para>Specifies the access key of the storage account in plain text. </maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>UseSSL</maml:name><maml:description><maml:para>Indicates whether to use SSL for the connection when using the new storage account credential. </maml:para></maml:description><command:parameterValue required="true" variableLength="false">Boolean</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="4" aliases="none"><maml:name>WaitForComplete</maml:name><maml:description><maml:para>Indicates that this cmdlet waits for the operation to complete before it returns control to the Windows PowerShell® console.</maml:para></maml:description></command:parameter></command:syntaxItem></command:syntax><command:parameters><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="Key"><maml:name>StorageAccountKey</maml:name><maml:description><maml:para>Specifies the access key of the storage account in plain text. </maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="Name"><maml:name>StorageAccountName</maml:name><maml:description><maml:para>Specifies the name of an existing storage account. </maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>UseSSL</maml:name><maml:description><maml:para>Indicates whether to use SSL for the connection when using the new storage account credential. </maml:para></maml:description><command:parameterValue required="true" variableLength="false">Boolean</command:parameterValue><dev:type><maml:name>Boolean</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="4" aliases="none"><maml:name>WaitForComplete</maml:name><maml:description><maml:para>Indicates that this cmdlet waits for the operation to complete before it returns control to the Windows PowerShell® console.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter></command:parameters><command:inputTypes><command:inputType><dev:type><maml:name>None</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para></maml:para></maml:description></command:inputType></command:inputTypes><command:returnValues><command:returnValue><dev:type><maml:name>IEnumerable&lt;StorageAccountCredentialResponse&gt;, TaskResponse</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para>This cmdlet returns a list of StorageAccountCredentialResponse objects, if you specify the WaitForComplete parameter. If you do not specify that parameter, the cmdlet returns a TaskResponse object. A StorageAccountCredentialResponse contains the following properties: +</dev:code><dev:remarks><maml:para>This command gets the storage account credential for the account named ContosoAccount by using the Get-AzureStorSimpleStorageAccountCredential cmdlet. The command passes the credential to the current cmdlet by using the pipeline operator. This cmdlet uses the credential from that cmdlet to create the container named Container08 on the device named Contoso63-AppVm. This command starts the job, and then returns a TaskResponse object. To see the status of the job, use the Get-AzureStorSimpleTask cmdlet. </maml:para><maml:para /><maml:para /></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example></command:examples><maml:relatedLinks><maml:navigationLink><maml:linkText>Get-AzureStorSimpleDeviceVolumeContainer</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>Remove-AzureStorSimpleDeviceVolumeContainer</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>Get-AzureStorSimpleStorageAccountCredential</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>Get-AzureStorSimpleJob</maml:linkText><maml:uri /></maml:navigationLink></maml:relatedLinks></command:command><command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><command:details><command:name>New-AzureStorSimpleNetworkConfig</command:name><maml:description><maml:para>Prepares a network configuration object.</maml:para></maml:description><maml:copyright><maml:para /></maml:copyright><command:verb>New</command:verb><command:noun>AzureStorSimpleNetworkConfig</command:noun><dev:version /></command:details><maml:description><maml:para>The New-AzureStorSimpleNetworkConfig cmdlet prepares a network configuration object to pass to the Set-AzureStorSimpleDevice cmdlet. Set the Controller0IPAddress parameter and Controller1IPAddress parameter only on the Data0 interface. Data0 supports only three settings: Controller0IPAddress, Controller1IPAdress, and EnableIscsi.</maml:para></maml:description><command:syntax><command:syntaxItem><maml:name>New-AzureStorSimpleNetworkConfig</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>InterfaceAlias</maml:name><maml:description><maml:para>Specifies the interface alias of interface for which this cmdlet supplies settings. Valid values are from Data0 to Data5.</maml:para></maml:description><command:parameterValueGroup><command:parameterValue required="true" variableLength="false">Data0</command:parameterValue><command:parameterValue required="true" variableLength="false">Data1</command:parameterValue><command:parameterValue required="true" variableLength="false">Data2</command:parameterValue><command:parameterValue required="true" variableLength="false">Data3</command:parameterValue><command:parameterValue required="true" variableLength="false">Data4</command:parameterValue><command:parameterValue required="true" variableLength="false">Data5</command:parameterValue></command:parameterValueGroup></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="10" aliases="none"><maml:name>IPv4Netmask</maml:name><maml:description><maml:para>Specifies the IPv4 netmask for the interface.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="none"><maml:name>EnableIscsi</maml:name><maml:description><maml:para>Indicates whether to enable Internet SCSI (ISCSI) for the interface.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">Boolean</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>EnableCloud</maml:name><maml:description><maml:para>Indicates whether to cloud-enable the interface.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">Boolean</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="4" aliases="none"><maml:name>Controller0IPv4Address</maml:name><maml:description><maml:para>Specifies the IPv4 address for controller 0. Specify this parameter only for the Data0 interface.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="5" aliases="none"><maml:name>Controller1IPv4Address</maml:name><maml:description><maml:para>Specifies the IPv4 address for controller 1. Specify this parameter only for the Data0 interface.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="6" aliases="none"><maml:name>IPv6Gateway</maml:name><maml:description><maml:para>Specifies the IPv6 gateway for the interface.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="7" aliases="none"><maml:name>IPv4Gateway</maml:name><maml:description><maml:para>Specifies the IPv4 address of a gateway.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="8" aliases="none"><maml:name>IPv4Address</maml:name><maml:description><maml:para>Specifies the IPv4 address for the interface.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="9" aliases="none"><maml:name>IPv6Prefix</maml:name><maml:description><maml:para>Specifies the IPv6 prefix for the interface.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">AzureProfile</command:parameterValue></command:parameter></command:syntaxItem></command:syntax><command:parameters><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="4" aliases="none"><maml:name>Controller0IPv4Address</maml:name><maml:description><maml:para>Specifies the IPv4 address for controller 0. Specify this parameter only for the Data0 interface.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="5" aliases="none"><maml:name>Controller1IPv4Address</maml:name><maml:description><maml:para>Specifies the IPv4 address for controller 1. Specify this parameter only for the Data0 interface.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>EnableCloud</maml:name><maml:description><maml:para>Indicates whether to cloud-enable the interface.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">Boolean</command:parameterValue><dev:type><maml:name>Boolean</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="none"><maml:name>EnableIscsi</maml:name><maml:description><maml:para>Indicates whether to enable Internet SCSI (ISCSI) for the interface.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">Boolean</command:parameterValue><dev:type><maml:name>Boolean</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>InterfaceAlias</maml:name><maml:description><maml:para>Specifies the interface alias of interface for which this cmdlet supplies settings. Valid values are from Data0 to Data5.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="8" aliases="none"><maml:name>IPv4Address</maml:name><maml:description><maml:para>Specifies the IPv4 address for the interface.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="7" aliases="none"><maml:name>IPv4Gateway</maml:name><maml:description><maml:para>Specifies the IPv4 address of a gateway.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="10" aliases="none"><maml:name>IPv4Netmask</maml:name><maml:description><maml:para>Specifies the IPv4 netmask for the interface.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="6" aliases="none"><maml:name>IPv6Gateway</maml:name><maml:description><maml:para>Specifies the IPv6 gateway for the interface.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="9" aliases="none"><maml:name>IPv6Prefix</maml:name><maml:description><maml:para>Specifies the IPv6 prefix for the interface.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">AzureProfile</command:parameterValue><dev:type><maml:name>AzureProfile</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter></command:parameters><command:inputTypes><command:inputType><dev:type><maml:name>None</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para></maml:para></maml:description></command:inputType></command:inputTypes><command:returnValues><command:returnValue><dev:type><maml:name>NetworkConfig</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para>This cmdlet returns a NetworkConfig object that contains the following properties: + +-- IsIscsiEnabled (Boolean) +-- IsCloudEnabled (Boolean) +-- Controller0IPv4Address (IPAddress) +-- Controller1IPv4Address (IPAddress) +-- IPv6Gateway (IPAddress) +-- IPv4Gateway (IPAddress) +-- IPv4Address (IPAddress) +-- IPv6Prefix (String) +-- IPv4Netmask (IPAddress) +-- InterfaceAlias (NetInterfaceId)</maml:para></maml:description></command:returnValue></command:returnValues><command:terminatingErrors /><command:nonTerminatingErrors /><command:examples><command:example><maml:title>Example 1: Configure a Data0 interface</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;New-AzureStorSimpleNetworkConfig -InterfaceAlias Data0 -EnableIscsi $True -Controller0IPv4Address "10.67.64.48" -Controller1IPv4Address "10.67.64.49" +VERBOSE: ClientRequestId: 0621d220-a460-48ec-84ec-02a3a82f88b2_PS + + +IsIscsiEnabled : True +IsCloudEnabled : +Controller0IPv4Address : 10.67.64.48 +Controller1IPv4Address : 10.67.64.49 +IPv6Gateway : +IPv4Gateway : +IPv4Address : +IPv6Prefix : +IPv4Netmask : +InterfaceAlias : Data0 + +VERBOSE: Successfully created a StorSimple Network Configuration for interface Data0 +</dev:code><dev:remarks><maml:para>This command creates network configuration for the Data0 interface. This command specifies the Controller0IPv4Address, Controller1IPv4Address, and EnableIscsi parameters. This cmdlet can configure Data0 for only these three parameters. </maml:para><maml:para /><maml:para /></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>Example 2: Configure an interface other than Data0</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;New-AzureStorSimpleNetworkConfig -InterfaceAlias Data1 -EnableIscsi $True -EnableCloud $True -IPv6Gateway "db8:421e:9a8::a4:1c50" -IPv4Gateway "10.67.64.1" -IPv4Address "10.67.64.48" -IPv6Prefix "2001:db8:a::123/64" -IPv4Netmask "255.255.0.0" +VERBOSE: ClientRequestId: 3a15ff0e-b769-4329-9147-676b1e0acd7d_PS + + +IsIscsiEnabled : True +IsCloudEnabled : True +Controller0IPv4Address : +Controller1IPv4Address : +IPv6Gateway : db8:421e:9a8::a4:1c50 +IPv4Gateway : 10.67.64.1 +IPv4Address : 10.67.64.48 +IPv6Prefix : 2001:db8:a::123/64 +IPv4Netmask : 255.255.0.0 +InterfaceAlias : Data1 +VERBOSE: Successfully created a StorSimple Network Configuration for interface Data1 +</dev:code><dev:remarks><maml:para>This command configures the Data1 interface. </maml:para><maml:para /><maml:para /></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>Example 3: Modify a configuration for a device</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;$NetworkConfigData0 = New-AzureStorSimpleNetworkConfig -InterfaceAlias Data0 -EnableIscsi $True -Controller0IPv4Address "10.67.64.48" -Controller1IPv4Address "10.67.64.49" +$OnlineDevice = @(Get-AzureStorSimpleDevice | Where { $_.Status -eq "Online"})[0] +$UpdatedDetails = Set-AzureStorSimpleDevice -DeviceId $OnlineDevice.DeviceId -StorSimpleNetworkConfig $NetworkConfigData0 +VERBOSE: ClientRequestId: 0f163163-5ad0-4635-a7b5-870d47297f66_PS +VERBOSE: Successfully created a StorSimple Network Configuration for interface Data0 +VERBOSE: ClientRequestId: 552e4a6c-7006-4015-a20b-9def6428a85e_PS +VERBOSE: ClientRequestId: f31cc84c-bc8a-404a-9da6-4670a7999e75_PS +VERBOSE: 1 StorSimple device found! +VERBOSE: ClientRequestId: 545bc1a9-3c1b-4e50-89a6-9678aefe79e5_PS +VERBOSE: ClientRequestId: f114ad08-47f5-4fb8-8a01-1ea7f1ed1b98_PS +VERBOSE: About to configure the device : newDeviceName ! +VERBOSE: ClientRequestId: 6afe7927-1c19-48d3-ac22-68148fd056b8_PS +VERBOSE: The task created for your Setup operation has completed successfully. +VERBOSE: ClientRequestId: 467c142c-90da-4d75-82a4-c114afce953d_PS +VERBOSE: Successfully updated configuration for device newDeviceName with id 865e68f6-1e71-47b6-80d5-15d3a23bd2b0 + +</dev:code><dev:remarks><maml:para>The first command creates a network configuration for the Data0 interface. This command specifies the Controller0IPv4Address, Controller1IPv4Address, and EnableIscsi parameters. The command stores the result in the $NetworkConfigData0 variable. </maml:para><maml:para>The second command uses the Get-AzureStorSimpleDevice cmdlet and the Where-Object core cmdlet to get an online StorSimple device, and then stores it in the $OnlineDevice variable.</maml:para><maml:para>The final command modifies the configuration for the device that has the specified device ID by using the Set-AzureStorSimpleDevice cmdlet. The command uses the configuration object that the current cmdlet created in the first command. </maml:para><maml:para /><maml:para /></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example></command:examples><maml:relatedLinks><maml:navigationLink><maml:linkText>Set-AzureStorSimpleDevice</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>Get-AzureStorSimpleDevice</maml:linkText><maml:uri /></maml:navigationLink></maml:relatedLinks></command:command><command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><command:details><command:name>New-AzureStorSimpleStorageAccountCredential</command:name><maml:description><maml:para>Adds an Azure storage access credential.</maml:para></maml:description><maml:copyright><maml:para /></maml:copyright><command:verb>New</command:verb><command:noun>AzureStorSimpleStorageAccountCredential</command:noun><dev:version /></command:details><maml:description><maml:para>The New-AzureStorSimpleStorageAccountCredential cmdlet adds an Azure storage access credential to StorSimple manager for use by StorSimple OneSDK cmdlets. Most of the StorSimple OneSDK cmdlets deal with entities that are eventually tied to a specific storage account, such as volumes, volume containers, backups, and backup policies. For some cmdlets, you must provide the credentials of the storage account in use. A storage account credential is an access object created in OneSDK that points to an existing Azure storage account. You provide the name and access key of an existing storage account to create a storage account credential. You can then use that credential object with other cmdlets. </maml:para><maml:para>This cmdlet uses the registration key that you provide when you select the resource by using the Select-AzureStorSimpleResource cmdlet. Be sure that value is correct to avoid encryption failure. To modify the registration key to a correct value, use Select-AzureStorSimpleResource. </maml:para></maml:description><command:syntax><command:syntaxItem><maml:name>New-AzureStorSimpleStorageAccountCredential</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="Name"><maml:name>StorageAccountName</maml:name><maml:description><maml:para>Specifies the name of an existing storage account. </maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="Key"><maml:name>StorageAccountKey</maml:name><maml:description><maml:para>Specifies the access key of the storage account in plain text. </maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>UseSSL</maml:name><maml:description><maml:para>Indicates whether to use SSL for the connection when using the new storage account credential. </maml:para></maml:description><command:parameterValue required="true" variableLength="false">Boolean</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="4" aliases="none"><maml:name>Endpoint</maml:name><maml:description><maml:para>Specifies the Azure storage endpoint for the storage account.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">System.String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="5" aliases="none"><maml:name>WaitForComplete</maml:name><maml:description><maml:para>Indicates that this cmdlet waits for the operation to complete before it returns control to the Windows PowerShell® console.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">Microsoft.Azure.Common.Authentication.Models.AzureProfile</command:parameterValue></command:parameter></command:syntaxItem></command:syntax><command:parameters><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="4" aliases="none"><maml:name>Endpoint</maml:name><maml:description><maml:para>Specifies the Azure storage endpoint for the storage account.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">System.String</command:parameterValue><dev:type><maml:name>System.String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">Microsoft.Azure.Common.Authentication.Models.AzureProfile</command:parameterValue><dev:type><maml:name>Microsoft.Azure.Common.Authentication.Models.AzureProfile</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="Key"><maml:name>StorageAccountKey</maml:name><maml:description><maml:para>Specifies the access key of the storage account in plain text. </maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="Name"><maml:name>StorageAccountName</maml:name><maml:description><maml:para>Specifies the name of an existing storage account. </maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>UseSSL</maml:name><maml:description><maml:para>Indicates whether to use SSL for the connection when using the new storage account credential. </maml:para></maml:description><command:parameterValue required="true" variableLength="false">Boolean</command:parameterValue><dev:type><maml:name>Boolean</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="5" aliases="none"><maml:name>WaitForComplete</maml:name><maml:description><maml:para>Indicates that this cmdlet waits for the operation to complete before it returns control to the Windows PowerShell® console.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter></command:parameters><command:inputTypes><command:inputType><dev:type><maml:name>None</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para></maml:para></maml:description></command:inputType></command:inputTypes><command:returnValues><command:returnValue><dev:type><maml:name>IEnumerable&lt;StorageAccountCredentialResponse&gt;, TaskResponse</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para>This cmdlet returns a list of StorageAccountCredentialResponse objects, if you specify the WaitForComplete parameter. If you do not specify that parameter, the cmdlet returns a TaskResponse object. A StorageAccountCredentialResponse contains the following properties: -- CloudType (CloudType) -- Hostname (String) @@ -795,7 +889,7 @@ Password : G1sBQ6/qAN1gyRGRZVarpi7o6ToJl61sGugfeJ75yx7cw PasswordEncryptionCertThumbprint : UseSSL : False VolumeCount : 0 -</dev:code><dev:remarks><maml:para>This command creates a storage access credential for the specified storage account. This command specifies the WaitForComplete parameter, and, so, the cmdlet waits until the task finishes to return control to the console. </maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>Example 2: Create a credential and query that status of the task</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;New-AzureStorSimpleStorageAccountCredential -Name "ContosoAccount08" -Key "6BlMpSVrCQVQy3iOpkxiyY8uk/e3PiHIhadxV4qpPlKInr/eRFrGcWKDrfNC1IHj6oh0If/h3rALdZ0zuaf9cQ==" -UseSSL $True +</dev:code><dev:remarks><maml:para>This command creates a storage access credential for the specified storage account. This command specifies the WaitForComplete parameter, and, so, the cmdlet waits until the task finishes to return control to the console. </maml:para><maml:para /><maml:para /></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>Example 2: Create a credential and query that status of the task</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;New-AzureStorSimpleStorageAccountCredential -Name "ContosoAccount08" -Key "6BlMpSVrCQVQy3iOpkxiyY8uk/e3PiHIhadxV4qpPlKInr/eRFrGcWKDrfNC1IHj6oh0If/h3rALdZ0zuaf9cQ==" -UseSSL $True PS C:\&gt; Get-AzureStorSimpleTask -InstanceId "53816d8d-a8b5-4c1d-a177-e59007608d6d" VERBOSE: ClientRequestId: 6104a834-ea57-4687-8e0b-1d97dc1c038b_PS VERBOSE: Found storage account with name : ContosoAccount08 @@ -806,7 +900,7 @@ VERBOSE: ClientRequestId: 8acb3770-bd72-43e6-9622-481002ad40b0_PS 53816d8d-a8b5-4c1d-a177-e59007608d6d VERBOSE: The create task is submitted successfully. Please use the command Get-AzureStorSimpleTask -InstanceId 53816d8d-a8b5-4c1d-a177-e59007608d6d for tracking the task's status -</dev:code><dev:remarks><maml:para>The first command creates a storage access credential for the specified storage account. The command returns a task ID.</maml:para><maml:para>The second command queries the status of the task by using the Get-AzureStorSimpleTask cmdlet. The command specifies the task ID from the first command. </maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>Example 3: Create a credential to use with another cmdlet</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Get-AzureStorSimpleStorageAccountCredential -Name "ContosoAccount09" | New-AzureStorSimpleDeviceVolumeContainer -Name "VC03" -DeviceName "Contoso63-AppVm" -BandWidthRate 256 -EncryptionEnabled $True -EncryptionKey "&lt;your encryption key&gt;" -WaitForComplete +</dev:code><dev:remarks><maml:para>The first command creates a storage access credential for the specified storage account. The command returns a task ID.</maml:para><maml:para>The second command queries the status of the task by using the Get-AzureStorSimpleTask cmdlet. The command specifies the task ID from the first command. </maml:para><maml:para /><maml:para /></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>Example 3: Create a credential to use with another cmdlet</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Get-AzureStorSimpleStorageAccountCredential -Name "ContosoAccount09" | New-AzureStorSimpleDeviceVolumeContainer -Name "VC03" -DeviceName "Contoso63-AppVm" -BandWidthRate 256 -EncryptionEnabled $True -EncryptionKey "&lt;your encryption key&gt;" -WaitForComplete VERBOSE: ClientRequestId: b1d1e637-cd72-4a1e-95a8-4db1d0b921a7_PS VERBOSE: ClientRequestId: 71f56ca0-1f0b-4655-9331-4849e096345a_PS VERBOSE: ClientRequestId: fbdd5a96-c95f-4547-9bcd-376d05543348_PS @@ -842,14 +936,20 @@ PrimaryStorageAccountCredential : Microsoft.WindowsAzure.Management.StorSimple.M SecretsEncryptionThumbprint : VolumeCount : 0 -</dev:code><dev:remarks><maml:para>This command creates a storage account credential. The command then passes that credential to the New-AzureStorSimpleDeviceVolumeContainer cmdlet by using the pipeline operator. That cmdlet creates a new volume container by using the credential. </maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example></command:examples><maml:relatedLinks><maml:navigationLink><maml:linkText>Get-AzureStorSimpleStorageAccountCredential</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>Remove-AzureStorSimpleStorageAccountCredential</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>Set-AzureStorSimpleStorageAccountCredential</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>New-AzureStorSimpleDeviceVolumeContainer</maml:linkText><maml:uri /></maml:navigationLink></maml:relatedLinks></command:command><command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><command:details><command:name>Remove-AzureStorSimpleAccessControlRecord</command:name><maml:description><maml:para>Deletes an access control record from the service configuration.</maml:para></maml:description><maml:copyright><maml:para /></maml:copyright><command:verb>Remove</command:verb><command:noun>AzureStorSimpleAccessControlRecord</command:noun><dev:version /></command:details><maml:description><maml:para>The Remove-AzureStorSimpleAccessControlRecord cmdlet deletes an access control record from the service configuration.</maml:para></maml:description><command:syntax><command:syntaxItem><maml:name>Remove-AzureStorSimpleAccessControlRecord</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true(ByValue)" position="1" aliases="none"><maml:name>ACR</maml:name><maml:description><maml:para>Specifies an AccessControlRecord object to delete. To obtain an AccessControlRecord object, use the Get-AzureStorSimpleAccessControlRecord cmdlet.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">AccessControlRecord</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="none"><maml:name>WaitForComplete</maml:name><maml:description><maml:para>Indicates that this cmdlet waits for the operation to complete before it returns control to the Windows PowerShell® console.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>Force</maml:name><maml:description><maml:para>Indicates that this cmdlet does not prompt you for confirmation.</maml:para></maml:description></command:parameter></command:syntaxItem><command:syntaxItem><maml:name>Remove-AzureStorSimpleAccessControlRecord</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="Name"><maml:name>ACRName</maml:name><maml:description><maml:para>Specifies a name of the access control record to delete.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="none"><maml:name>WaitForComplete</maml:name><maml:description><maml:para>Indicates that this cmdlet waits for the operation to complete before it returns control to the Windows PowerShell® console.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>Force</maml:name><maml:description><maml:para>Indicates that this cmdlet does not prompt you for confirmation.</maml:para></maml:description></command:parameter></command:syntaxItem></command:syntax><command:parameters><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true(ByValue)" position="1" aliases="none"><maml:name>ACR</maml:name><maml:description><maml:para>Specifies an AccessControlRecord object to delete. To obtain an AccessControlRecord object, use the Get-AzureStorSimpleAccessControlRecord cmdlet.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">AccessControlRecord</command:parameterValue><dev:type><maml:name>AccessControlRecord</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="Name"><maml:name>ACRName</maml:name><maml:description><maml:para>Specifies a name of the access control record to delete.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>Force</maml:name><maml:description><maml:para>Indicates that this cmdlet does not prompt you for confirmation.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="none"><maml:name>WaitForComplete</maml:name><maml:description><maml:para>Indicates that this cmdlet waits for the operation to complete before it returns control to the Windows PowerShell® console.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter></command:parameters><command:inputTypes><command:inputType><dev:type><maml:name>AccessControlRecord</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para>This cmdlet accepts an AccessControlRecord object. An AccessControlRecord object contains the following fields: +</dev:code><dev:remarks><maml:para>This command creates a storage account credential. The command then passes that credential to the New-AzureStorSimpleDeviceVolumeContainer cmdlet by using the pipeline operator. That cmdlet creates a new volume container by using the credential. </maml:para><maml:para /><maml:para /></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example></command:examples><maml:relatedLinks><maml:navigationLink><maml:linkText>Get-AzureStorSimpleStorageAccountCredential</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>Remove-AzureStorSimpleStorageAccountCredential</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>Set-AzureStorSimpleStorageAccountCredential</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>Get-AzureStorSimpleJob</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>New-AzureStorSimpleDeviceVolumeContainer</maml:linkText><maml:uri /></maml:navigationLink></maml:relatedLinks></command:command><command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><command:details><command:name>New-AzureStorSimpleVirtualDevice</command:name><maml:description><maml:para>Creates a virtual StorSimple device. </maml:para></maml:description><maml:copyright><maml:para /></maml:copyright><command:verb>New</command:verb><command:noun>AzureStorSimpleVirtualDevice</command:noun><dev:version /></command:details><maml:description><maml:para>The New-AzureStorSimpleVirtualDevice cmdlet creates a virtual StorSimple device. Specify a device name for the device. Specify virtual network and subnet details for the virtual network in the same subscription. The geo should match the geo in which the StorSimple resource is created. To use an existing storage account for this virtual device, Specify the name. To create a new storage account for this virtual device, specify both the StorageAccountName and the CreateNewStorageAccount parameters.</maml:para></maml:description><command:syntax><command:syntaxItem><maml:name>New-AzureStorSimpleVirtualDevice</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="Name"><maml:name>VirtualDeviceName</maml:name><maml:description><maml:para>Specifies a name for the virtual device.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">System.String</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="VNetName"><maml:name>VirtualNetworkName</maml:name><maml:description><maml:para>Specifies the name of a virtual network.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">System.String</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>SubNetName</maml:name><maml:description><maml:para>Specifies the name of a virtual subnet.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">System.String</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="4" aliases="none"><maml:name>CreateNewStorageAccount</maml:name><maml:description><maml:para>Indicates that this cmdlet creates a new storage account.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="5" aliases="none"><maml:name>StorageAccountName</maml:name><maml:description><maml:para>Specifies the name of a storage account.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">System.String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">Microsoft.Azure.Common.Authentication.Models.AzureProfile</command:parameterValue></command:parameter></command:syntaxItem><command:syntaxItem><maml:name>New-AzureStorSimpleVirtualDevice</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="Name"><maml:name>VirtualDeviceName</maml:name><maml:description><maml:para>Specifies a name for the virtual device.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">System.String</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="VNetName"><maml:name>VirtualNetworkName</maml:name><maml:description><maml:para>Specifies the name of a virtual network.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">System.String</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>SubNetName</maml:name><maml:description><maml:para>Specifies the name of a virtual subnet.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">System.String</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="4" aliases="none"><maml:name>StorageAccountName</maml:name><maml:description><maml:para>Specifies the name of a storage account.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">System.String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">Microsoft.Azure.Common.Authentication.Models.AzureProfile</command:parameterValue></command:parameter></command:syntaxItem></command:syntax><command:parameters><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="4" aliases="none"><maml:name>CreateNewStorageAccount</maml:name><maml:description><maml:para>Indicates that this cmdlet creates a new storage account.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">Microsoft.Azure.Common.Authentication.Models.AzureProfile</command:parameterValue><dev:type><maml:name>Microsoft.Azure.Common.Authentication.Models.AzureProfile</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="5" aliases="none"><maml:name>StorageAccountName</maml:name><maml:description><maml:para>Specifies the name of a storage account.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">System.String</command:parameterValue><dev:type><maml:name>System.String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>SubNetName</maml:name><maml:description><maml:para>Specifies the name of a virtual subnet.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">System.String</command:parameterValue><dev:type><maml:name>System.String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="Name"><maml:name>VirtualDeviceName</maml:name><maml:description><maml:para>Specifies a name for the virtual device.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">System.String</command:parameterValue><dev:type><maml:name>System.String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="VNetName"><maml:name>VirtualNetworkName</maml:name><maml:description><maml:para>Specifies the name of a virtual network.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">System.String</command:parameterValue><dev:type><maml:name>System.String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter></command:parameters><command:inputTypes><command:inputType><dev:type><maml:name></maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para></maml:para></maml:description></command:inputType></command:inputTypes><command:returnValues><command:returnValue><dev:type><maml:name>String</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para>This cmdlet returns the ID identifier of the job that creates the virtual device. You can use this identifier to track the progress using the Get-AzureStorSimpleJob cmdlet. </maml:para></maml:description></command:returnValue></command:returnValues><command:terminatingErrors /><command:nonTerminatingErrors /><command:examples><command:example><maml:title>Example 1: Create a virtual device with a new account and an existing network</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;New-AzureStorSimpleVirtualDevice -VirtualDeviceName "Contosodevice02" -VirtualNetworkName "Saas2vpn" -SubNetName "TenantSubnet" -StorageAccountName "AzureTenant04" -CreateNewStorageAccount +64e4c564-b0ac-44b0-afb4-adf28ac24ad0 +VERBOSE: The create job is triggered successfully. Please use the command Get-AzureStorSimpleJob -InstanceId 64e4c564-b0ac-44b0-afb4-adf28ac24ad0 for tracking the job's status +</dev:code><dev:remarks><maml:para>This command creates a virtual device that uses a new storage account and an existing virtual network.</maml:para><maml:para /><maml:para /></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>Example 2: Create a virtual device with an existing account and virtual network</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;New-AzureStorSimpleVirtualDevice -VirtualDeviceName "ContosoDevice07" -VirtualNetworkName "Saas2vpn" -SubNetName TenantSubnet -StorageAccountName azurecisbvtdnd +2a18a3b7-1ec6-481d-b95d-66ba8f67ceaf +VERBOSE: The create job is triggered successfully. Please use the command Get-AzureStorSimpleJob -InstanceId 2a18a3b7-1ec6-481d-b95d-66ba8f67ceaf for tracking the job's status +</dev:code><dev:remarks><maml:para>This command creates a virtual device that uses an existing storage account and an existing virtual network.</maml:para><maml:para /><maml:para /></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example></command:examples><maml:relatedLinks><maml:navigationLink><maml:linkText>Set-AzureStorSimpleVirtualDevice</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>Get-AzureStorSimpleJob</maml:linkText><maml:uri /></maml:navigationLink></maml:relatedLinks></command:command><command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><command:details><command:name>Remove-AzureStorSimpleAccessControlRecord</command:name><maml:description><maml:para>Deletes an access control record from the service configuration.</maml:para></maml:description><maml:copyright><maml:para /></maml:copyright><command:verb>Remove</command:verb><command:noun>AzureStorSimpleAccessControlRecord</command:noun><dev:version /></command:details><maml:description><maml:para>The Remove-AzureStorSimpleAccessControlRecord cmdlet deletes an access control record from the service configuration.</maml:para></maml:description><command:syntax><command:syntaxItem><maml:name>Remove-AzureStorSimpleAccessControlRecord</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true(ByValue)" position="1" aliases="none"><maml:name>ACR</maml:name><maml:description><maml:para>Specifies an AccessControlRecord object to delete. To obtain an AccessControlRecord object, use the Get-AzureStorSimpleAccessControlRecord cmdlet.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">AccessControlRecord</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="none"><maml:name>WaitForComplete</maml:name><maml:description><maml:para>Indicates that this cmdlet waits for the operation to complete before it returns control to the Windows PowerShell® console.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>Force</maml:name><maml:description><maml:para>Indicates that this cmdlet does not prompt you for confirmation.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">Microsoft.Azure.Common.Authentication.Models.AzureProfile</command:parameterValue></command:parameter></command:syntaxItem><command:syntaxItem><maml:name>Remove-AzureStorSimpleAccessControlRecord</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="Name"><maml:name>ACRName</maml:name><maml:description><maml:para>Specifies a name of the access control record to delete.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="none"><maml:name>WaitForComplete</maml:name><maml:description><maml:para>Indicates that this cmdlet waits for the operation to complete before it returns control to the Windows PowerShell® console.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>Force</maml:name><maml:description><maml:para>Indicates that this cmdlet does not prompt you for confirmation.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">Microsoft.Azure.Common.Authentication.Models.AzureProfile</command:parameterValue></command:parameter></command:syntaxItem></command:syntax><command:parameters><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true(ByValue)" position="1" aliases="none"><maml:name>ACR</maml:name><maml:description><maml:para>Specifies an AccessControlRecord object to delete. To obtain an AccessControlRecord object, use the Get-AzureStorSimpleAccessControlRecord cmdlet.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">AccessControlRecord</command:parameterValue><dev:type><maml:name>AccessControlRecord</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="Name"><maml:name>ACRName</maml:name><maml:description><maml:para>Specifies a name of the access control record to delete.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>Force</maml:name><maml:description><maml:para>Indicates that this cmdlet does not prompt you for confirmation.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">Microsoft.Azure.Common.Authentication.Models.AzureProfile</command:parameterValue><dev:type><maml:name>Microsoft.Azure.Common.Authentication.Models.AzureProfile</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="none"><maml:name>WaitForComplete</maml:name><maml:description><maml:para>Indicates that this cmdlet waits for the operation to complete before it returns control to the Windows PowerShell® console.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter></command:parameters><command:inputTypes><command:inputType><dev:type><maml:name>AccessControlRecord</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para>This cmdlet accepts an AccessControlRecord object. An AccessControlRecord object contains the following fields: -- GlobalId (String) -- InitiatorName (String) -- InstanceId (String) -- Name (String) -- OperationInProgress (OperationInProgress) --- VolumeCount (int)</maml:para></maml:description></command:inputType></command:inputTypes><command:returnValues><command:returnValue><dev:type><maml:name>TaskStatusInfo, TaskResponse</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para>This cmdlet returns a TaskStatusInfo object if you specify the WaitForComplete parameter. If you do not specify that parameter, it returns a TaskResponse object.</maml:para></maml:description></command:returnValue></command:returnValues><command:terminatingErrors /><command:nonTerminatingErrors /><command:examples><command:example><maml:title>Example 1: Remove an access control record</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Remove-AzureStorSimpleAccessControlRecord -ACRName "Acr10" -WaitForComplete -Force +-- VolumeCount (int)</maml:para></maml:description></command:inputType></command:inputTypes><command:returnValues><command:returnValue><dev:type><maml:name>TaskStatusInfo, TaskResponse</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para>This cmdlet returns a TaskStatusInfo object if you specify the WaitForComplete parameter. If you do not specify that parameter, it returns a TaskResponse object.</maml:para></maml:description></command:returnValue></command:returnValues><command:terminatingErrors /><command:nonTerminatingErrors /><command:examples><command:example><maml:title>Example 1: Remove an Access Controlaccess control recordaccess control</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Remove-AzureStorSimpleAccessControlRecord -ACRName "Acr10" -WaitForComplete -Force VERBOSE: ClientRequestId: 574aeb7f-fbc9-46d5-bc68-1bfe4487bd8b_PS VERBOSE: ClientRequestId: 985afe84-ef95-47cb-8c8f-df094530334b_PS VERBOSE: About to run a job to remove your ACR! @@ -864,7 +964,7 @@ ErrorMessage : JobSteps : {} VERBOSE: The job created for your delete operation has completed successfully. -</dev:code><dev:remarks><maml:para>This command deletes the access control record named Acr10. This command specifies the WaitForComplete parameter, and, therefore, the command waits until the operation is complete, and then returns a TaskStatusInfo object.</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>Example 2: Remove an access control record by using the pipeline</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Get-AzureStorSimpleAccessControlRecord -ACRName "Acr10" | Remove-AzureStorSimpleAccessControlRecord -Force +</dev:code><dev:remarks><maml:para>This command deletes the access control record named Acr10. This command specifies the WaitForComplete parameter, and, therefore, the command waits until the operation is complete, and then returns a TaskStatusInfo object.</maml:para><maml:para /><maml:para /></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>Example 2: Remove an Access Controlaccess control record by using the pipelineaccess control</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Get-AzureStorSimpleAccessControlRecord -ACRName "Acr10" | Remove-AzureStorSimpleAccessControlRecord -Force VERBOSE: ClientRequestId: ff8d8bd6-4c92-4ab6-8fde-e9344a253da3_PS VERBOSE: ClientRequestId: f71c74f3-33b9-40d1-b8d5-12363e98412f_PS VERBOSE: ClientRequestId: d5d809d0-ec22-4e45-97ee-a56edc41e503_PS @@ -873,10 +973,10 @@ VERBOSE: ClientRequestId: 6ffa6bc8-37b3-49ff-bafc-721b360f09cb_PS 294a0208-a43f-4d80-b824-2319cd77c5e6 VERBOSE: The delete task is submitted successfully. Please use the command Get-AzureStorSimpleTask -InstanceId 294a0208-a43f-4d80-b824-2319cd77c5e6 for tracking the task's status -</dev:code><dev:remarks><maml:para>This command uses the Get-AzureStorSimpleAccessControlRecord to get the AccessControlRecord named Acr10, and then passes that object to the current cmdlet by using the pipeline operator. The command starts the operation that removes the AccessControlRecord object, and then returns a TaskResponse object. To see the status of the task, use the Get-AzureStorSimpleTask cmdlet.</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example></command:examples><maml:relatedLinks><maml:navigationLink><maml:linkText>Get-AzureStorSimpleAccessControlRecord</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>New-AzureStorSimpleAccessControlRecord</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>Set-AzureStorSimpleAccessControlRecord</maml:linkText><maml:uri /></maml:navigationLink></maml:relatedLinks></command:command><command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><command:details><command:name>Remove-AzureStorSimpleDeviceBackup</command:name><maml:description><maml:para>Deletes a backup object.</maml:para></maml:description><maml:copyright><maml:para /></maml:copyright><command:verb>Remove</command:verb><command:noun>AzureStorSimpleDeviceBackup</command:noun><dev:version /></command:details><maml:description><maml:para>The Remove-AzureStorSimpleDeviceBackup cmdlet deletes a single backup object. If you attempt to delete a backup that has already been deleted, this cmdlet returns an error.</maml:para></maml:description><command:syntax><command:syntaxItem><maml:name>Remove-AzureStorSimpleDeviceBackup</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>DeviceName</maml:name><maml:description><maml:para>Specifies the name of the StorSimple device on which to delete a backup.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true(ByValue)" position="2" aliases="none"><maml:name>Backup</maml:name><maml:description><maml:para>Specifies the Backup object to delete. To obtain a Backup object, use the Get-AzureStorSimpleDeviceBackup cmdlet.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Backup</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>Force</maml:name><maml:description><maml:para>Indicates that this cmdlet does not prompt you for confirmation.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="4" aliases="none"><maml:name>WaitForComplete</maml:name><maml:description><maml:para>Indicates that this cmdlet waits for the operation to complete before it returns control to the Windows PowerShell® console.</maml:para></maml:description></command:parameter></command:syntaxItem><command:syntaxItem><maml:name>Remove-AzureStorSimpleDeviceBackup</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>DeviceName</maml:name><maml:description><maml:para>Specifies the name of the StorSimple device on which to delete a backup.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="none"><maml:name>BackupId</maml:name><maml:description><maml:para>Specifies the instance ID of a backup to delete.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>Force</maml:name><maml:description><maml:para>Indicates that this cmdlet does not prompt you for confirmation.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="4" aliases="none"><maml:name>WaitForComplete</maml:name><maml:description><maml:para>Indicates that this cmdlet waits for the operation to complete before it returns control to the Windows PowerShell® console.</maml:para></maml:description></command:parameter></command:syntaxItem></command:syntax><command:parameters><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true(ByValue)" position="2" aliases="none"><maml:name>Backup</maml:name><maml:description><maml:para>Specifies the Backup object to delete. To obtain a Backup object, use the Get-AzureStorSimpleDeviceBackup cmdlet.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Backup</command:parameterValue><dev:type><maml:name>Backup</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="none"><maml:name>BackupId</maml:name><maml:description><maml:para>Specifies the instance ID of a backup to delete.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>DeviceName</maml:name><maml:description><maml:para>Specifies the name of the StorSimple device on which to delete a backup.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>Force</maml:name><maml:description><maml:para>Indicates that this cmdlet does not prompt you for confirmation.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="4" aliases="none"><maml:name>WaitForComplete</maml:name><maml:description><maml:para>Indicates that this cmdlet waits for the operation to complete before it returns control to the Windows PowerShell® console.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter></command:parameters><command:inputTypes><command:inputType><dev:type><maml:name>Backup</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para></maml:para></maml:description></command:inputType></command:inputTypes><command:returnValues><command:returnValue><dev:type><maml:name>TaskStatusInfo, TaskResponse</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para>This cmdlet returns a TaskStatusInfo object if you specify the WaitForComplete parameter If you do not specify that parameter, it returns a TaskResponse object.</maml:para></maml:description></command:returnValue></command:returnValues><command:terminatingErrors /><command:nonTerminatingErrors /><command:examples><command:example><maml:title>Example 1: Remove a backup for a device</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Remove-AzureStorSimpleDeviceBackup -DeviceName "Contoso63-AppVm" -BackupId "dcb5c991-0485-400f-8d0a-03a1341ee989" -Force +</dev:code><dev:remarks><maml:para>This command uses the Get-AzureStorSimpleAccessControlRecord to get the AccessControlRecord named Acr10, and then passes that object to the current cmdlet by using the pipeline operator. The command starts the operation that removes the AccessControlRecord object, and then returns a TaskResponse object. To see the status of the task, use the Get-AzureStorSimpleTask cmdlet.</maml:para><maml:para /><maml:para /></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example></command:examples><maml:relatedLinks><maml:navigationLink><maml:linkText>Get-AzureStorSimpleAccessControlRecord</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>New-AzureStorSimpleAccessControlRecord</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>Set-AzureStorSimpleAccessControlRecord</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>Get-AzureStorSimpleJob</maml:linkText><maml:uri /></maml:navigationLink></maml:relatedLinks></command:command><command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><command:details><command:name>Remove-AzureStorSimpleDeviceBackup</command:name><maml:description><maml:para>Deletes a backup object.</maml:para></maml:description><maml:copyright><maml:para /></maml:copyright><command:verb>Remove</command:verb><command:noun>AzureStorSimpleDeviceBackup</command:noun><dev:version /></command:details><maml:description><maml:para>The Remove-AzureStorSimpleDeviceBackup cmdlet deletes a single backup object. If you attempt to delete a backup that has already been deleted, this cmdlet returns an error.</maml:para></maml:description><command:syntax><command:syntaxItem><maml:name>Remove-AzureStorSimpleDeviceBackup</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>DeviceName</maml:name><maml:description><maml:para>Specifies the name of the StorSimple device on which to delete a backup.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true(ByValue)" position="2" aliases="none"><maml:name>Backup</maml:name><maml:description><maml:para>Specifies the Backup object to delete. To obtain a Backup object, use the Get-AzureStorSimpleDeviceBackup cmdlet.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Backup</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>Force</maml:name><maml:description><maml:para>Indicates that this cmdlet does not prompt you for confirmation.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="4" aliases="none"><maml:name>WaitForComplete</maml:name><maml:description><maml:para>Indicates that this cmdlet waits for the operation to complete before it returns control to the Windows PowerShell® console.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">Microsoft.Azure.Common.Authentication.Models.AzureProfile</command:parameterValue></command:parameter></command:syntaxItem><command:syntaxItem><maml:name>Remove-AzureStorSimpleDeviceBackup</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>DeviceName</maml:name><maml:description><maml:para>Specifies the name of the StorSimple device on which to delete a backup.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="none"><maml:name>BackupId</maml:name><maml:description><maml:para>Specifies the instance ID of a backup to delete.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>Force</maml:name><maml:description><maml:para>Indicates that this cmdlet does not prompt you for confirmation.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="4" aliases="none"><maml:name>WaitForComplete</maml:name><maml:description><maml:para>Indicates that this cmdlet waits for the operation to complete before it returns control to the Windows PowerShell® console.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">Microsoft.Azure.Common.Authentication.Models.AzureProfile</command:parameterValue></command:parameter></command:syntaxItem></command:syntax><command:parameters><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true(ByValue)" position="2" aliases="none"><maml:name>Backup</maml:name><maml:description><maml:para>Specifies the Backup object to delete. To obtain a Backup object, use the Get-AzureStorSimpleDeviceBackup cmdlet.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Backup</command:parameterValue><dev:type><maml:name>Backup</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="none"><maml:name>BackupId</maml:name><maml:description><maml:para>Specifies the instance ID of a backup to delete.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>DeviceName</maml:name><maml:description><maml:para>Specifies the name of the StorSimple device on which to delete a backup.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>Force</maml:name><maml:description><maml:para>Indicates that this cmdlet does not prompt you for confirmation.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">Microsoft.Azure.Common.Authentication.Models.AzureProfile</command:parameterValue><dev:type><maml:name>Microsoft.Azure.Common.Authentication.Models.AzureProfile</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="4" aliases="none"><maml:name>WaitForComplete</maml:name><maml:description><maml:para>Indicates that this cmdlet waits for the operation to complete before it returns control to the Windows PowerShell® console.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter></command:parameters><command:inputTypes><command:inputType><dev:type><maml:name>Backup</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para></maml:para></maml:description></command:inputType></command:inputTypes><command:returnValues><command:returnValue><dev:type><maml:name>TaskStatusInfo, TaskResponse</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para>This cmdlet returns a TaskStatusInfo object if you specify the WaitForComplete parameter If you do not specify that parameter, it returns a TaskResponse object.</maml:para></maml:description></command:returnValue></command:returnValues><command:terminatingErrors /><command:nonTerminatingErrors /><command:examples><command:example><maml:title>Example 1: Remove a backup for a device</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Remove-AzureStorSimpleDeviceBackup -DeviceName "Contoso63-AppVm" -BackupId "dcb5c991-0485-400f-8d0a-03a1341ee989" -Force The remove job is submitted successfully. Please use the command Get-AzureStorSimpleTask -InstanceId 6c73aff2-f5a1-4b5e- 9a4e-857e128dc216 for tracking the job status -</dev:code><dev:remarks><maml:para>This command removes the backup that has the specified ID for the device named Contoso63-AppVm. The command starts the operation that removes the Backup object, and then returns a TaskResponse object. To see the status of the task, use the Get-AzureStorSimpleTask cmdlet. </maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>Example 2: Remove the first backup for a device by using its ID</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;$Backup = Get-AzureStorSimpleDeviceBackup -DeviceName "Contoso63-AppVm" +</dev:code><dev:remarks><maml:para>This command removes the backup that has the specified ID for the device named Contoso63-AppVm. The command starts the operation that removes the Backup object, and then returns a TaskResponse object. To see the status of the task, use the Get-AzureStorSimpleTask cmdlet. </maml:para><maml:para /><maml:para /></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>Example 2: Remove the first backup for a device by using its ID</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;$Backup = Get-AzureStorSimpleDeviceBackup -DeviceName "Contoso63-AppVm" PS C:\&gt; Remove-AzureStorSimpleDeviceBackup -DeviceName "Contoso63-AppVm" -BackupId $Backup[0].InstanceId -WaitForComplete Error : Microsoft.WindowsAzure.Management.StorSimple.Models.ErrorDetails JobId : 53a656c3-c082-4e1f-afb7-bff3db45c791 @@ -886,7 +986,7 @@ Status : Completed TaskResult : Succeeded StatusCode : OK RequestId : f4411f38d07f68b88095682dbeedd9e9 -</dev:code><dev:remarks><maml:para>The first command gets the backups for the device named Contoso63-AppVm, and then stores them in the $Backup variable. </maml:para><maml:para>The second command deletes a backup from the device named Contoso63-AppVm. The command uses standard dot notation to refer to the InstanceId property of the first element of the $Backup array. This command specifies the WaitForComplete parameter, and, therefore, the command waits until the operation is complete, and then returns a TaskStatusInfo object.</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>Example 3: Remove the first backup for a device by using the pipeline</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;$Backup = Get-AzureStorSimpleDeviceBackup -DeviceName "Contoso-AppVm" -WaitForComplete +</dev:code><dev:remarks><maml:para>The first command gets the backups for the device named Contoso63-AppVm, and then stores them in the $Backup variable. </maml:para><maml:para>The second command deletes a backup from the device named Contoso63-AppVm. The command uses standard dot notation to refer to the InstanceId property of the first element of the $Backup array. This command specifies the WaitForComplete parameter, and, therefore, the command waits until the operation is complete, and then returns a TaskStatusInfo object.</maml:para><maml:para /><maml:para /></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>Example 3: Remove the first backup for a device by using the pipeline</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;$Backup = Get-AzureStorSimpleDeviceBackup -DeviceName "Contoso-AppVm" -WaitForComplete PS C:\&gt; $Backup[0] | Remove-AzureStorSimpleDeviceBackup -DeviceName "Contoso-AppVm" -Force -WaitForComplete Error : Microsoft.WindowsAzure.Management.StorSimple.Models.ErrorDetails JobId : 48059fd8-e355-4b91-9385-630d24f31df6 @@ -896,7 +996,7 @@ Status : Completed TaskResult : Succeeded StatusCode : OK RequestId : e1753f3bf68e6e44ab719436b5111e41 -</dev:code><dev:remarks><maml:para>The first command gets the backups for the device named Contoso63-AppVm, and then stores them in the $Backup variable. </maml:para><maml:para>The second command passes the first object stored in the $Backup array to the current cmdlet. That cmdlet deletes that backup from the device named Contoso63-AppVm. This command specifies the WaitForComplete parameter, and, therefore, the command waits until the operation is complete, and then returns a TaskStatusInfo object.</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example></command:examples><maml:relatedLinks><maml:navigationLink><maml:linkText>Get-AzureStorSimpleDeviceBackup</maml:linkText><maml:uri /></maml:navigationLink></maml:relatedLinks></command:command><command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><command:details><command:name>Remove-AzureStorSimpleDeviceBackupPolicy</command:name><maml:description><maml:para>Removes an existing backup policy.</maml:para></maml:description><maml:copyright><maml:para /></maml:copyright><command:verb>Remove</command:verb><command:noun>AzureStorSimpleDeviceBackupPolicy</command:noun><dev:version /></command:details><maml:description><maml:para>The Remove-AzureStorSimpleDeviceBackupPolicy cmdlet removes an existing BackupPolicy object. After you remove a backup policy, no further backups take place based on that policy. This cmdlet also deletes all schedules associated with the deleted policy.</maml:para></maml:description><command:syntax><command:syntaxItem><maml:name>Remove-AzureStorSimpleDeviceBackupPolicy</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>DeviceName</maml:name><maml:description><maml:para>Specifies the name of the StorSimple device on which to delete the backup policy.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true(ByValue)" position="2" aliases="none"><maml:name>BackupPolicy</maml:name><maml:description><maml:para>Specifies the BackupPolicyDetails object to delete. To obtain a BackupPolicyDetails object, use the Get-AzureStorSimpleDeviceBackupPolicy cmdlet.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">BackupPolicyDetails</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>Force</maml:name><maml:description><maml:para>Indicates that this cmdlet does not prompt you for confirmation.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="4" aliases="none"><maml:name>WaitForComplete</maml:name><maml:description><maml:para>Indicates that this cmdlet waits for the operation to complete before it returns control to the Windows PowerShell® console.</maml:para></maml:description></command:parameter></command:syntaxItem><command:syntaxItem><maml:name>Remove-AzureStorSimpleDeviceBackupPolicy</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>DeviceName</maml:name><maml:description><maml:para>Specifies the name of the StorSimple device on which to delete the backup policy.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="none"><maml:name>BackupPolicyId</maml:name><maml:description><maml:para>Specifies the instance ID of the BackupPolicy object to delete.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>Force</maml:name><maml:description><maml:para>Indicates that this cmdlet does not prompt you for confirmation.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="4" aliases="none"><maml:name>WaitForComplete</maml:name><maml:description><maml:para>Indicates that this cmdlet waits for the operation to complete before it returns control to the Windows PowerShell® console.</maml:para></maml:description></command:parameter></command:syntaxItem></command:syntax><command:parameters><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true(ByValue)" position="2" aliases="none"><maml:name>BackupPolicy</maml:name><maml:description><maml:para>Specifies the BackupPolicyDetails object to delete. To obtain a BackupPolicyDetails object, use the Get-AzureStorSimpleDeviceBackupPolicy cmdlet.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">BackupPolicyDetails</command:parameterValue><dev:type><maml:name>BackupPolicyDetails</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="none"><maml:name>BackupPolicyId</maml:name><maml:description><maml:para>Specifies the instance ID of the BackupPolicy object to delete.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>DeviceName</maml:name><maml:description><maml:para>Specifies the name of the StorSimple device on which to delete the backup policy.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>Force</maml:name><maml:description><maml:para>Indicates that this cmdlet does not prompt you for confirmation.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="4" aliases="none"><maml:name>WaitForComplete</maml:name><maml:description><maml:para>Indicates that this cmdlet waits for the operation to complete before it returns control to the Windows PowerShell® console.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter></command:parameters><command:inputTypes><command:inputType><dev:type><maml:name>BackupPolicyDetails</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para>This cmdlet accepts a BackupPolicyDetails object to delete. </maml:para></maml:description></command:inputType></command:inputTypes><command:returnValues><command:returnValue><dev:type><maml:name>TaskStatusInfo, TaskResponse</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para>This cmdlet returns a TaskStatusInfo object if you specify the WaitForComplete parameter. If you do not specify that parameter, it returns a TaskResponse object.</maml:para></maml:description></command:returnValue></command:returnValues><command:terminatingErrors /><command:nonTerminatingErrors /><command:examples><command:example><maml:title>Example 1: Remove a backup policy</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Remove-AzureStorSimpleDeviceBackupPolicy -DeviceName "Contoso63-AppVm" -BackupPolicyId "03710b4c-82c1-40ca-be5c-40289dc49642" -Force +</dev:code><dev:remarks><maml:para>The first command gets the backups for the device named Contoso63-AppVm, and then stores them in the $Backup variable. </maml:para><maml:para>The second command passes the first object stored in the $Backup array to the current cmdlet. That cmdlet deletes that backup from the device named Contoso63-AppVm. This command specifies the WaitForComplete parameter, and, therefore, the command waits until the operation is complete, and then returns a TaskStatusInfo object.</maml:para><maml:para /><maml:para /></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example></command:examples><maml:relatedLinks><maml:navigationLink><maml:linkText>Get-AzureStorSimpleDeviceBackup</maml:linkText><maml:uri /></maml:navigationLink></maml:relatedLinks></command:command><command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><command:details><command:name>Remove-AzureStorSimpleDeviceBackupPolicy</command:name><maml:description><maml:para>Removes an existing backup policy.</maml:para></maml:description><maml:copyright><maml:para /></maml:copyright><command:verb>Remove</command:verb><command:noun>AzureStorSimpleDeviceBackupPolicy</command:noun><dev:version /></command:details><maml:description><maml:para>The Remove-AzureStorSimpleDeviceBackupPolicy cmdlet removes an existing BackupPolicy object. After you remove a backup policy, no further backups take place based on that policy. This cmdlet also deletes all schedules associated with the deleted policy.</maml:para></maml:description><command:syntax><command:syntaxItem><maml:name>Remove-AzureStorSimpleDeviceBackupPolicy</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>DeviceName</maml:name><maml:description><maml:para>Specifies the name of the StorSimple device on which to delete the backup policy.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true(ByValue)" position="2" aliases="none"><maml:name>BackupPolicy</maml:name><maml:description><maml:para>Specifies the BackupPolicyDetails object to delete. To obtain a BackupPolicyDetails object, use the Get-AzureStorSimpleDeviceBackupPolicy cmdlet.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">BackupPolicyDetails</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>Force</maml:name><maml:description><maml:para>Indicates that this cmdlet does not prompt you for confirmation.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="4" aliases="none"><maml:name>WaitForComplete</maml:name><maml:description><maml:para>Indicates that this cmdlet waits for the operation to complete before it returns control to the Windows PowerShell® console.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">Microsoft.Azure.Common.Authentication.Models.AzureProfile</command:parameterValue></command:parameter></command:syntaxItem><command:syntaxItem><maml:name>Remove-AzureStorSimpleDeviceBackupPolicy</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>DeviceName</maml:name><maml:description><maml:para>Specifies the name of the StorSimple device on which to delete the backup policy.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="none"><maml:name>BackupPolicyId</maml:name><maml:description><maml:para>Specifies the instance ID of the BackupPolicy object to delete.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>Force</maml:name><maml:description><maml:para>Indicates that this cmdlet does not prompt you for confirmation.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="4" aliases="none"><maml:name>WaitForComplete</maml:name><maml:description><maml:para>Indicates that this cmdlet waits for the operation to complete before it returns control to the Windows PowerShell® console.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">Microsoft.Azure.Common.Authentication.Models.AzureProfile</command:parameterValue></command:parameter></command:syntaxItem></command:syntax><command:parameters><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true(ByValue)" position="2" aliases="none"><maml:name>BackupPolicy</maml:name><maml:description><maml:para>Specifies the BackupPolicyDetails object to delete. To obtain a BackupPolicyDetails object, use the Get-AzureStorSimpleDeviceBackupPolicy cmdlet.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">BackupPolicyDetails</command:parameterValue><dev:type><maml:name>BackupPolicyDetails</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="none"><maml:name>BackupPolicyId</maml:name><maml:description><maml:para>Specifies the instance ID of the BackupPolicy object to delete.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>DeviceName</maml:name><maml:description><maml:para>Specifies the name of the StorSimple device on which to delete the backup policy.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>Force</maml:name><maml:description><maml:para>Indicates that this cmdlet does not prompt you for confirmation.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">Microsoft.Azure.Common.Authentication.Models.AzureProfile</command:parameterValue><dev:type><maml:name>Microsoft.Azure.Common.Authentication.Models.AzureProfile</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="4" aliases="none"><maml:name>WaitForComplete</maml:name><maml:description><maml:para>Indicates that this cmdlet waits for the operation to complete before it returns control to the Windows PowerShell® console.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter></command:parameters><command:inputTypes><command:inputType><dev:type><maml:name>BackupPolicyDetails</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para>This cmdlet accepts a BackupPolicyDetails object to delete. </maml:para></maml:description></command:inputType></command:inputTypes><command:returnValues><command:returnValue><dev:type><maml:name>TaskStatusInfo, TaskResponse</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para>This cmdlet returns a TaskStatusInfo object if you specify the WaitForComplete parameter. If you do not specify that parameter, it returns a TaskResponse object.</maml:para></maml:description></command:returnValue></command:returnValues><command:terminatingErrors /><command:nonTerminatingErrors /><command:examples><command:example><maml:title>Example 1: Remove a backup policy</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Remove-AzureStorSimpleDeviceBackupPolicy -DeviceName "Contoso63-AppVm" -BackupPolicyId "03710b4c-82c1-40ca-be5c-40289dc49642" -Force VERBOSE: ClientRequestId: b3e4d485-eae4-4cf4-a43b-815f3abcd2dd_PS VERBOSE: ClientRequestId: a260ee98-46aa-49e0-91ac-31d4155f4cae_PS VERBOSE: About to create a job to remove your backuppolicy! @@ -904,7 +1004,7 @@ VERBOSE: ClientRequestId: 92a9c264-90df-4345-a495-92767dd266f2_PS 695be190-ac81-4cf2-b1c5-03ef6b08d005 VERBOSE: The remove task is submitted successfully. Please use the command Get-AzureStorSimpleTask -InstanceId 695be190-ac81-4cf2-b1c5-03ef6b08d005 for tracking the task's status -</dev:code><dev:remarks><maml:para>This command removes the BackupPolicy that has the instance ID 03710b4c-82c1-40ca-be5c-40289dc49642, so that no more backups are made based on this policy. The command also deletes all schedules associated with this policy. The command starts the operation that removes the BackupPolicy object, and then returns a TaskResponse object. To see the status of the task, use the Get-AzureStorSimpleTask cmdlet.</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>Example 2: Remove the first of the backup policies for a device</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;$Policies = Get-AzureStorSimpleDeviceBackupPolicy -DeviceName "Contoso63-AppVm" +</dev:code><dev:remarks><maml:para>This command removes the BackupPolicy that has the instance ID 03710b4c-82c1-40ca-be5c-40289dc49642, so that no more backups are made based on this policy. The command also deletes all schedules associated with this policy. The command starts the operation that removes the BackupPolicy object, and then returns a TaskResponse object. To see the status of the task, use the Get-AzureStorSimpleTask cmdlet.</maml:para><maml:para /><maml:para /></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>Example 2: Remove the first of the backup policies for a device</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;$Policies = Get-AzureStorSimpleDeviceBackupPolicy -DeviceName "Contoso63-AppVm" PS C:\&gt; Remove-AzureStorSimpleDeviceBackupPolicy -DeviceName "Contoso63-AppVm" -BackupPolicyId $Policies[0].InstanceId -Force -WaitForComplete VERBOSE: ClientRequestId: db3b49fa-cffa-446d-ba52-daa6802e00f7_PS VERBOSE: ClientRequestId: 70e2b56f-c2df-40d0-a1e5-d7a4d7e25962_PS @@ -921,7 +1021,7 @@ JobSteps : {Microsoft.WindowsAzure.Management.StorSimple.Models.TaskStep, Microsoft.WindowsAzure.Management.StorSimple.Models.TaskStep} VERBOSE: The job created for your remove operation has completed successfully. -</dev:code><dev:remarks><maml:para>The first command gets the backup policies for the device named Contoso63-AppVm, and then stores them in the $Policies variable. </maml:para><maml:para>The second command removes the first backup policy from Contoso63-AppVm. The command uses standard dot syntax to identify the InstanceId property of the first item in $Policies. This command specifies the WaitForComplete parameter, so the command completes the task, and then returns a TaskStatusInfo object for the task.</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>Example 3: Remove a backup policy by using the pipeline</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Get-AzureStorSimpleDeviceBackupPolicy -DeviceName "Contoso63-AppVm" -BackupPolicyName "TSQAVolume01_Default" | Remove-AzureStorSimpleDeviceBackupPolicy -DeviceName "Contoso63-AppVm" -Force -WaitForComplete +</dev:code><dev:remarks><maml:para>The first command gets the backup policies for the device named Contoso63-AppVm, and then stores them in the $Policies variable. </maml:para><maml:para>The second command removes the first backup policy from Contoso63-AppVm. The command uses standard dot syntax to identify the InstanceId property of the first item in $Policies. This command specifies the WaitForComplete parameter, so the command completes the task, and then returns a TaskStatusInfo object for the task.</maml:para><maml:para /><maml:para /></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>Example 3: Remove a backup policy by using the pipeline</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Get-AzureStorSimpleDeviceBackupPolicy -DeviceName "Contoso63-AppVm" -BackupPolicyName "TSQAVolume01_Default" | Remove-AzureStorSimpleDeviceBackupPolicy -DeviceName "Contoso63-AppVm" -Force -WaitForComplete VERBOSE: ClientRequestId: 60080fb1-2f88-4c17-bfd7-21aa73440a9c_PS VERBOSE: ClientRequestId: 04c91121-50d7-4796-9af6-fc6a7d6b6a0e_PS VERBOSE: ClientRequestId: 47ceb37c-672f-42e8-bd19-1190925c46cd_PS @@ -933,7 +1033,7 @@ VERBOSE: ClientRequestId: dbd7166e-1888-4b11-9af9-8d49712a8c8b_PS VERBOSE: The remove task is submitted successfully. Please use the command Get-AzureStorSimpleTask -InstanceId 702ad240-5730-4015-b051-56055bd2c2d3 for tracking the task's status VERBOSE: BackupPolicy with id bfe0bf8a-2d09-4690-93da-38a4f24e9f4f found! -</dev:code><dev:remarks><maml:para>This command gets a BackupPolicyDetails object by using Get-AzureStorSimpleDeviceBackupPolicy, and then passes it to the current cmdlet by using the pipeline operator. The current cmdlet removes the backup policy named TSQAVolume01_Default.</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example></command:examples><maml:relatedLinks><maml:navigationLink><maml:linkText>Get-AzureStorSimpleDeviceBackupPolicy</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>New-AzureStorSimpleDeviceBackupPolicy</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>Set-AzureStorSimpleDeviceBackupPolicy</maml:linkText><maml:uri /></maml:navigationLink></maml:relatedLinks></command:command><command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><command:details><command:name>Remove-AzureStorSimpleDeviceVolume</command:name><maml:description><maml:para>Removes a volume from a StorSimple device.</maml:para></maml:description><maml:copyright><maml:para /></maml:copyright><command:verb>Remove</command:verb><command:noun>AzureStorSimpleDeviceVolume</command:noun><dev:version /></command:details><maml:description><maml:para>The Remove-AzureStorSimpleDeviceVolume cmdlet removes a volume from a StorSimple device. This cmdlet prompts you for confirmation unless you specify the Force parameter.</maml:para></maml:description><command:syntax><command:syntaxItem><maml:name>Remove-AzureStorSimpleDeviceVolume</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>DeviceName</maml:name><maml:description><maml:para>Specifies the name of the StorSimple device on which to the volume to remove exists.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="Name"><maml:name>VolumeName</maml:name><maml:description><maml:para>Specifies the name of the volume to remove.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>WaitForComplete</maml:name><maml:description><maml:para>Indicates that this cmdlet waits for the operation to complete before it returns control to the Windows PowerShell® console.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="4" aliases="none"><maml:name>Force</maml:name><maml:description><maml:para>Indicates that this cmdlet does not prompt you for confirmation.</maml:para></maml:description></command:parameter></command:syntaxItem><command:syntaxItem><maml:name>Remove-AzureStorSimpleDeviceVolume</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>DeviceName</maml:name><maml:description><maml:para>Specifies the name of the StorSimple device on which to the volume to remove exists.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true(ByValue)" position="2" aliases="none"><maml:name>Volume</maml:name><maml:description><maml:para>Specifies the volume to remove, as a VirtualDisk object. To obtain a VirtualDisk object, use the Get-AzureStorSimpleDeviceVolume cmdlet.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">VirtualDisk</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>WaitForComplete</maml:name><maml:description><maml:para>Indicates that this cmdlet waits for the operation to complete before it returns control to the Windows PowerShell® console.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="4" aliases="none"><maml:name>Force</maml:name><maml:description><maml:para>Indicates that this cmdlet does not prompt you for confirmation.</maml:para></maml:description></command:parameter></command:syntaxItem></command:syntax><command:parameters><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>DeviceName</maml:name><maml:description><maml:para>Specifies the name of the StorSimple device on which to the volume to remove exists.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="4" aliases="none"><maml:name>Force</maml:name><maml:description><maml:para>Indicates that this cmdlet does not prompt you for confirmation.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true(ByValue)" position="2" aliases="none"><maml:name>Volume</maml:name><maml:description><maml:para>Specifies the volume to remove, as a VirtualDisk object. To obtain a VirtualDisk object, use the Get-AzureStorSimpleDeviceVolume cmdlet.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">VirtualDisk</command:parameterValue><dev:type><maml:name>VirtualDisk</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="Name"><maml:name>VolumeName</maml:name><maml:description><maml:para>Specifies the name of the volume to remove.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>WaitForComplete</maml:name><maml:description><maml:para>Indicates that this cmdlet waits for the operation to complete before it returns control to the Windows PowerShell® console.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter></command:parameters><command:inputTypes><command:inputType><dev:type><maml:name>VirtualDisk</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para>This cmdlet accepts either the VirtualDisk object to delete or the volume name of the VirtualDisk to delete.</maml:para></maml:description></command:inputType></command:inputTypes><command:returnValues><command:returnValue><dev:type><maml:name>TaskStatusInfo</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para>This cmdlet returns a TaskStatusInfo object, if you specify the WaitForComplete parameter.</maml:para></maml:description></command:returnValue></command:returnValues><command:terminatingErrors /><command:nonTerminatingErrors /><command:examples><command:example><maml:title>Example 1: Remove a volume by using the pipeline</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Get-AzureStorSimpleDeviceVolume -DeviceName "Contoso63-AppVm" -VolumeName "Volume18" | Remove-AzureStorSimpleDeviceVolume -DeviceName "Contoso63-AppVm" +</dev:code><dev:remarks><maml:para>This command gets a BackupPolicyDetails object by using Get-AzureStorSimpleDeviceBackupPolicy, and then passes it to the current cmdlet by using the pipeline operator. The current cmdlet removes the backup policy named TSQAVolume01_Default.</maml:para><maml:para /><maml:para /></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example></command:examples><maml:relatedLinks><maml:navigationLink><maml:linkText>Get-AzureStorSimpleDeviceBackupPolicy</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>New-AzureStorSimpleDeviceBackupPolicy</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>Set-AzureStorSimpleDeviceBackupPolicy</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>Get-AzureStorSimpleJob</maml:linkText><maml:uri /></maml:navigationLink></maml:relatedLinks></command:command><command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><command:details><command:name>Remove-AzureStorSimpleDeviceVolume</command:name><maml:description><maml:para>Removes a volume from a StorSimple device.</maml:para></maml:description><maml:copyright><maml:para /></maml:copyright><command:verb>Remove</command:verb><command:noun>AzureStorSimpleDeviceVolume</command:noun><dev:version /></command:details><maml:description><maml:para>The Remove-AzureStorSimpleDeviceVolume cmdlet removes a volume from a StorSimple device. This cmdlet prompts you for confirmation unless you specify the Force parameter.</maml:para></maml:description><command:syntax><command:syntaxItem><maml:name>Remove-AzureStorSimpleDeviceVolume</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>DeviceName</maml:name><maml:description><maml:para>Specifies the name of the StorSimple device on which to the volume to remove exists.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="Name"><maml:name>VolumeName</maml:name><maml:description><maml:para>Specifies the name of the volume to remove.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>WaitForComplete</maml:name><maml:description><maml:para>Indicates that this cmdlet waits for the operation to complete before it returns control to the Windows PowerShell® console.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="4" aliases="none"><maml:name>Force</maml:name><maml:description><maml:para>Indicates that this cmdlet does not prompt you for confirmation.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">Microsoft.Azure.Common.Authentication.Models.AzureProfile</command:parameterValue></command:parameter></command:syntaxItem><command:syntaxItem><maml:name>Remove-AzureStorSimpleDeviceVolume</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>DeviceName</maml:name><maml:description><maml:para>Specifies the name of the StorSimple device on which to the volume to remove exists.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true(ByValue)" position="2" aliases="none"><maml:name>Volume</maml:name><maml:description><maml:para>Specifies the volume to remove, as a VirtualDisk object. To obtain a VirtualDisk object, use the Get-AzureStorSimpleDeviceVolume cmdlet.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">VirtualDisk</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>WaitForComplete</maml:name><maml:description><maml:para>Indicates that this cmdlet waits for the operation to complete before it returns control to the Windows PowerShell® console.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="4" aliases="none"><maml:name>Force</maml:name><maml:description><maml:para>Indicates that this cmdlet does not prompt you for confirmation.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">Microsoft.Azure.Common.Authentication.Models.AzureProfile</command:parameterValue></command:parameter></command:syntaxItem></command:syntax><command:parameters><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>DeviceName</maml:name><maml:description><maml:para>Specifies the name of the StorSimple device on which to the volume to remove exists.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="4" aliases="none"><maml:name>Force</maml:name><maml:description><maml:para>Indicates that this cmdlet does not prompt you for confirmation.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">Microsoft.Azure.Common.Authentication.Models.AzureProfile</command:parameterValue><dev:type><maml:name>Microsoft.Azure.Common.Authentication.Models.AzureProfile</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true(ByValue)" position="2" aliases="none"><maml:name>Volume</maml:name><maml:description><maml:para>Specifies the volume to remove, as a VirtualDisk object. To obtain a VirtualDisk object, use the Get-AzureStorSimpleDeviceVolume cmdlet.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">VirtualDisk</command:parameterValue><dev:type><maml:name>VirtualDisk</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="Name"><maml:name>VolumeName</maml:name><maml:description><maml:para>Specifies the name of the volume to remove.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>WaitForComplete</maml:name><maml:description><maml:para>Indicates that this cmdlet waits for the operation to complete before it returns control to the Windows PowerShell® console.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter></command:parameters><command:inputTypes><command:inputType><dev:type><maml:name>VirtualDisk</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para>This cmdlet accepts either the VirtualDisk object to delete or the volume name of the VirtualDisk to delete.</maml:para></maml:description></command:inputType></command:inputTypes><command:returnValues><command:returnValue><dev:type><maml:name>TaskStatusInfo</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para>This cmdlet returns a TaskStatusInfo object, if you specify the WaitForComplete parameter.</maml:para></maml:description></command:returnValue></command:returnValues><command:terminatingErrors /><command:nonTerminatingErrors /><command:examples><command:example><maml:title>Example 1: Remove a volume by using the pipeline</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Get-AzureStorSimpleDeviceVolume -DeviceName "Contoso63-AppVm" -VolumeName "Volume18" | Remove-AzureStorSimpleDeviceVolume -DeviceName "Contoso63-AppVm" VERBOSE: ClientRequestId: 2933e24d-9564-42b5-9053-5f0bc4f59ea8_PS VERBOSE: ClientRequestId: 7c2d854b-537a-4253-bb0c-c15bc8aa2b49_PS VERBOSE: ClientRequestId: 4bf749ac-517c-49e7-8027-a8f62e272014_PS @@ -949,7 +1049,7 @@ VERBOSE: ClientRequestId: 56101c10-07ca-40f4-8f19-c6fdd895e3a5_PS VERBOSE: The delete task is submitted successfully. Please use the command Get-AzureStorSimpleTask -InstanceId 32925451-4451-4478-89f7-d8930505d3fb for tracking the task's status VERBOSE: Volume with name: Volume18 is found. -</dev:code><dev:remarks><maml:para>This command gets the volume named Volume18 on the device named Contoso63-AppVm, and then passes that volume to the current cmdlet by using the pipeline operator. The current cmdlet starts the task that removes the volume, and then returns a TaskResponse object. To see the status of the task, use the Get-AzureStorSimpleTask cmdlet. The command does not specify the Force parameter, so the cmdlet prompts you for confirmation.</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>Example 2: Remove a volume without confirmation</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Remove-AzureStorSimpleDeviceVolume -DeviceName "Contoso63-AppVm" -VolumeName "Volume18" -Force +</dev:code><dev:remarks><maml:para>This command gets the volume named Volume18 on the device named Contoso63-AppVm, and then passes that volume to the current cmdlet by using the pipeline operator. The current cmdlet starts the task that removes the volume, and then returns a TaskResponse object. To see the status of the task, use the Get-AzureStorSimpleTask cmdlet. The command does not specify the Force parameter, so the cmdlet prompts you for confirmation.</maml:para><maml:para /><maml:para /></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>Example 2: Remove a volume without confirmation</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Remove-AzureStorSimpleDeviceVolume -DeviceName "Contoso63-AppVm" -VolumeName "Volume18" -Force VERBOSE: ClientRequestId: 72f13290-41eb-4ac4-9535-da1a42d0fa0b_PS VERBOSE: ClientRequestId: ae0c1d99-1a66-4a69-9260-f2c8c12546bd_PS VERBOSE: ClientRequestId: 9610744f-d031-488f-87e6-3ecddb305e13_PS @@ -958,7 +1058,7 @@ VERBOSE: ClientRequestId: d33525d8-7276-4d2a-942d-d10f8078f1f7_PS 483f8cb4-ebc3-46a9-a9e6-0989e25738a0 VERBOSE: The delete task is submitted successfully. Please use the command Get-AzureStorSimpleTask -InstanceId 483f8cb4-ebc3-46a9-a9e6-0989e25738a0 for tracking the task's status -</dev:code><dev:remarks><maml:para>This command removes the volume named Volume18 from the device named Contoso63-AppVm. The command specifies the Force parameter, so the cmdlet does not prompt you for confirmation.</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example></command:examples><maml:relatedLinks><maml:navigationLink><maml:linkText>Get-AzureStorSimpleDeviceVolume</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>New-AzureStorSimpleDeviceVolume</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>Set-AzureStorSimpleDeviceVolume</maml:linkText><maml:uri /></maml:navigationLink></maml:relatedLinks></command:command><command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><command:details><command:name>Remove-AzureStorSimpleDeviceVolumeContainer</command:name><maml:description><maml:para>Removes a volume container from a StorSimple device.</maml:para></maml:description><maml:copyright><maml:para /></maml:copyright><command:verb>Remove</command:verb><command:noun>AzureStorSimpleDeviceVolumeContainer</command:noun><dev:version /></command:details><maml:description><maml:para>The Remove-AzureStorSimpleDeviceVolumeContainer cmdlet removes a volume container object from a StorSimple device. This cmdlet prompts you for confirmation unless you specify the Force parameter.</maml:para></maml:description><command:syntax><command:syntaxItem><maml:name>Remove-AzureStorSimpleDeviceVolumeContainer</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>DeviceName</maml:name><maml:description><maml:para>Specifies the name of the StorSimple device on which to the volume container to remove exists.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true(ByValue)" position="2" aliases="none"><maml:name>VolumeContainer</maml:name><maml:description><maml:para>Specifies the volume container to remove, as a DataContainer object. To obtain a DataContainer object, use the Get-AzureStorSimpleDeviceVolumeContainer cmdlet.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">DataContainer</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>WaitForComplete</maml:name><maml:description><maml:para>Indicates that this cmdlet waits for the operation to complete before it returns control to the Windows PowerShell® console.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="4" aliases="none"><maml:name>Force</maml:name><maml:description><maml:para>Indicates that this cmdlet does not prompt you for confirmation.</maml:para></maml:description></command:parameter></command:syntaxItem></command:syntax><command:parameters><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>DeviceName</maml:name><maml:description><maml:para>Specifies the name of the StorSimple device on which to the volume container to remove exists.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="4" aliases="none"><maml:name>Force</maml:name><maml:description><maml:para>Indicates that this cmdlet does not prompt you for confirmation.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true(ByValue)" position="2" aliases="none"><maml:name>VolumeContainer</maml:name><maml:description><maml:para>Specifies the volume container to remove, as a DataContainer object. To obtain a DataContainer object, use the Get-AzureStorSimpleDeviceVolumeContainer cmdlet.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">DataContainer</command:parameterValue><dev:type><maml:name>DataContainer</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>WaitForComplete</maml:name><maml:description><maml:para>Indicates that this cmdlet waits for the operation to complete before it returns control to the Windows PowerShell® console.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter></command:parameters><command:inputTypes><command:inputType><dev:type><maml:name>DataContainer</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para>This cmdlet accepts a DataContainer object to remove.</maml:para></maml:description></command:inputType></command:inputTypes><command:returnValues><command:returnValue><dev:type><maml:name>TaskStatusInfo</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para>This cmdlet returns a TaskStatusInfo object, if you specify the WaitForComplete parameter.</maml:para></maml:description></command:returnValue></command:returnValues><command:terminatingErrors /><command:nonTerminatingErrors /><command:examples><command:example><maml:title>Example 1: Remove a container by using the pipeline</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Get-AzureStorSimpleDeviceVolumeContainer -DeviceName "Contoso63-AppVm" -VolumeContainerName "Container08" | Remove-AzureStorSimpleDeviceVolumeContainer -DeviceName "Contoso63-AppVm" -Force +</dev:code><dev:remarks><maml:para>This command removes the volume named Volume18 from the device named Contoso63-AppVm. The command specifies the Force parameter, so the cmdlet does not prompt you for confirmation.</maml:para><maml:para /><maml:para /></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example></command:examples><maml:relatedLinks><maml:navigationLink><maml:linkText>Get-AzureStorSimpleDeviceVolume</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>New-AzureStorSimpleDeviceVolume</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>Set-AzureStorSimpleDeviceVolume</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>Get-AzureStorSimpleJob</maml:linkText><maml:uri /></maml:navigationLink></maml:relatedLinks></command:command><command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><command:details><command:name>Remove-AzureStorSimpleDeviceVolumeContainer</command:name><maml:description><maml:para>Removes a volume container from a StorSimple device.</maml:para></maml:description><maml:copyright><maml:para /></maml:copyright><command:verb>Remove</command:verb><command:noun>AzureStorSimpleDeviceVolumeContainer</command:noun><dev:version /></command:details><maml:description><maml:para>The Remove-AzureStorSimpleDeviceVolumeContainer cmdlet removes a volume container object from a StorSimple device. This cmdlet prompts you for confirmation unless you specify the Force parameter.</maml:para></maml:description><command:syntax><command:syntaxItem><maml:name>Remove-AzureStorSimpleDeviceVolumeContainer</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>DeviceName</maml:name><maml:description><maml:para>Specifies the name of the StorSimple device on which to the volume container to remove exists.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true(ByValue)" position="2" aliases="none"><maml:name>VolumeContainer</maml:name><maml:description><maml:para>Specifies the volume container to remove, as a DataContainer object. To obtain a DataContainer object, use the Get-AzureStorSimpleDeviceVolumeContainer cmdlet.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">DataContainer</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>WaitForComplete</maml:name><maml:description><maml:para>Indicates that this cmdlet waits for the operation to complete before it returns control to the Windows PowerShell® console.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="4" aliases="none"><maml:name>Force</maml:name><maml:description><maml:para>Indicates that this cmdlet does not prompt you for confirmation.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">Microsoft.Azure.Common.Authentication.Models.AzureProfile</command:parameterValue></command:parameter></command:syntaxItem></command:syntax><command:parameters><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>DeviceName</maml:name><maml:description><maml:para>Specifies the name of the StorSimple device on which to the volume container to remove exists.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="4" aliases="none"><maml:name>Force</maml:name><maml:description><maml:para>Indicates that this cmdlet does not prompt you for confirmation.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">Microsoft.Azure.Common.Authentication.Models.AzureProfile</command:parameterValue><dev:type><maml:name>Microsoft.Azure.Common.Authentication.Models.AzureProfile</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true(ByValue)" position="2" aliases="none"><maml:name>VolumeContainer</maml:name><maml:description><maml:para>Specifies the volume container to remove, as a DataContainer object. To obtain a DataContainer object, use the Get-AzureStorSimpleDeviceVolumeContainer cmdlet.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">DataContainer</command:parameterValue><dev:type><maml:name>DataContainer</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>WaitForComplete</maml:name><maml:description><maml:para>Indicates that this cmdlet waits for the operation to complete before it returns control to the Windows PowerShell® console.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter></command:parameters><command:inputTypes><command:inputType><dev:type><maml:name>DataContainer</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para>This cmdlet accepts a DataContainer object to remove.</maml:para></maml:description></command:inputType></command:inputTypes><command:returnValues><command:returnValue><dev:type><maml:name>TaskStatusInfo</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para>This cmdlet returns a TaskStatusInfo object, if you specify the WaitForComplete parameter.</maml:para></maml:description></command:returnValue></command:returnValues><command:terminatingErrors /><command:nonTerminatingErrors /><command:examples><command:example><maml:title>Example 1: Remove a container by using the pipeline</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Get-AzureStorSimpleDeviceVolumeContainer -DeviceName "Contoso63-AppVm" -VolumeContainerName "Container08" | Remove-AzureStorSimpleDeviceVolumeContainer -DeviceName "Contoso63-AppVm" -Force VERBOSE: ClientRequestId: 0efbb4fc-ceb0-4311-bc49-0e08161d0a37_PS VERBOSE: ClientRequestId: bf5b615f-47e3-4868-91b6-f2d12217a302_PS VERBOSE: ClientRequestId: 5590c87e-0602-4197-b6c3-cf58b0e7a7b3_PS @@ -970,14 +1070,14 @@ e9ddec89-67ac-4e2e-a2ed-820de3547bb0 VERBOSE: The delete task is submitted successfully. Please use the command Get-AzureStorSimpleTask -InstanceId e9ddec89-67ac-4e2e-a2ed-820de3547bb0 for tracking the task's status VERBOSE: Volume container with name: Container08 is found. -</dev:code><dev:remarks><maml:para>This command gets the volume container named Container08 on the device named Contoso63-AppVm by using the Get-AzureStorSimpleDeviceVolumeContainer cmdlet. The command passes the volume container to the current cmdlet by using the pipeline operator. This command starts the task to remove the container, and then returns a TaskResponse object. To see the status of the task, use the Get-AzureStorSimpleTask cmdlet. This command specifies the Force parameter, so it does not prompt you for confirmation.</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example></command:examples><maml:relatedLinks><maml:navigationLink><maml:linkText>Get-AzureStorSimpleDeviceVolumeContainer</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>New-AzureStorSimpleDeviceVolumeContainer</maml:linkText><maml:uri /></maml:navigationLink></maml:relatedLinks></command:command><command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><command:details><command:name>Remove-AzureStorSimpleStorageAccountCredential</command:name><maml:description><maml:para>Deletes an existing storage account credential.</maml:para></maml:description><maml:copyright><maml:para /></maml:copyright><command:verb>Remove</command:verb><command:noun>AzureStorSimpleStorageAccountCredential</command:noun><dev:version /></command:details><maml:description><maml:para>The Remove-AzureStorSimpleStorageAccountCredential cmdlet deletes an existing storage account credential. Specify an account by name or use the Get-AzureStorSimpleStorageAccountCredential cmdlet to obtain a StorageAccountCredential object to delete.</maml:para></maml:description><command:syntax><command:syntaxItem><maml:name>Remove-AzureStorSimpleStorageAccountCredential</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="Name"><maml:name>StorageAccountName</maml:name><maml:description><maml:para>Specifies the name of the storage account credential to delete.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="none"><maml:name>WaitForComplete</maml:name><maml:description><maml:para>Indicates that this cmdlet waits for the operation to complete before it returns control to the Windows PowerShell® console.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>Force</maml:name><maml:description><maml:para>Indicates that this cmdlet does not prompt you for confirmation.</maml:para></maml:description></command:parameter></command:syntaxItem><command:syntaxItem><maml:name>Remove-AzureStorSimpleStorageAccountCredential</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true(ByValue)" position="1" aliases="none"><maml:name>SAC</maml:name><maml:description><maml:para>Specifies credential, as a StorageAccountCredential object, to remove. To obtain a StorageAccountCredential object, use the Get-AzureStorSimpleStorageAccountCredential cmdlet.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">StorageAccountCredentialResponse</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="none"><maml:name>WaitForComplete</maml:name><maml:description><maml:para>Indicates that this cmdlet waits for the operation to complete before it returns control to the Windows PowerShell® console.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>Force</maml:name><maml:description><maml:para>Indicates that this cmdlet does not prompt you for confirmation.</maml:para></maml:description></command:parameter></command:syntaxItem></command:syntax><command:parameters><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>Force</maml:name><maml:description><maml:para>Indicates that this cmdlet does not prompt you for confirmation.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true(ByValue)" position="1" aliases="none"><maml:name>SAC</maml:name><maml:description><maml:para>Specifies credential, as a StorageAccountCredential object, to remove. To obtain a StorageAccountCredential object, use the Get-AzureStorSimpleStorageAccountCredential cmdlet.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">StorageAccountCredentialResponse</command:parameterValue><dev:type><maml:name>StorageAccountCredentialResponse</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="Name"><maml:name>StorageAccountName</maml:name><maml:description><maml:para>Specifies the name of the storage account credential to delete.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="none"><maml:name>WaitForComplete</maml:name><maml:description><maml:para>Indicates that this cmdlet waits for the operation to complete before it returns control to the Windows PowerShell® console.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter></command:parameters><command:inputTypes><command:inputType><dev:type><maml:name>StorageAccountCredential</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para>This cmdlet accepts a StorageAccountCredential object by using the pipeline.</maml:para></maml:description></command:inputType></command:inputTypes><command:returnValues><command:returnValue><dev:type><maml:name>TaskStatusInfo</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para>This cmdlet returns a TaskStatusInfo object, if you specify the WaitForComplete parameter.</maml:para></maml:description></command:returnValue></command:returnValues><command:terminatingErrors /><command:nonTerminatingErrors /><command:examples><command:example><maml:title>Example 1: Remove a storage account credential</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Remove-AzureStorSimpleStorageAccountCredential -StorageAccountName "ContosoStorage07" -Force +</dev:code><dev:remarks><maml:para>This command gets the volume container named Container08 on the device named Contoso63-AppVm by using the Get-AzureStorSimpleDeviceVolumeContainer cmdlet. The command passes the volume container to the current cmdlet by using the pipeline operator. This command starts the task to remove the container, and then returns a TaskResponse object. To see the status of the task, use the Get-AzureStorSimpleTask cmdlet. This command specifies the Force parameter, so it does not prompt you for confirmation.</maml:para><maml:para /><maml:para /></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example></command:examples><maml:relatedLinks><maml:navigationLink><maml:linkText>Get-AzureStorSimpleDeviceVolumeContainer</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>New-AzureStorSimpleDeviceVolumeContainer</maml:linkText><maml:uri /></maml:navigationLink></maml:relatedLinks></command:command><command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><command:details><command:name>Remove-AzureStorSimpleStorageAccountCredential</command:name><maml:description><maml:para>Deletes an existing storage account credential.</maml:para></maml:description><maml:copyright><maml:para /></maml:copyright><command:verb>Remove</command:verb><command:noun>AzureStorSimpleStorageAccountCredential</command:noun><dev:version /></command:details><maml:description><maml:para>The Remove-AzureStorSimpleStorageAccountCredential cmdlet deletes an existing storage account credential. Specify an account by name or use the Get-AzureStorSimpleStorageAccountCredential cmdlet to obtain a StorageAccountCredential object to delete.</maml:para></maml:description><command:syntax><command:syntaxItem><maml:name>Remove-AzureStorSimpleStorageAccountCredential</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="Name"><maml:name>StorageAccountName</maml:name><maml:description><maml:para>Specifies the name of the storage account credential to delete.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="none"><maml:name>WaitForComplete</maml:name><maml:description><maml:para>Indicates that this cmdlet waits for the operation to complete before it returns control to the Windows PowerShell® console.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>Force</maml:name><maml:description><maml:para>Indicates that this cmdlet does not prompt you for confirmation.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">Microsoft.Azure.Common.Authentication.Models.AzureProfile</command:parameterValue></command:parameter></command:syntaxItem><command:syntaxItem><maml:name>Remove-AzureStorSimpleStorageAccountCredential</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true(ByValue)" position="1" aliases="none"><maml:name>SAC</maml:name><maml:description><maml:para>Specifies credential, as a StorageAccountCredential object, to remove. To obtain a StorageAccountCredential object, use the Get-AzureStorSimpleStorageAccountCredential cmdlet.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">StorageAccountCredentialResponse</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="none"><maml:name>WaitForComplete</maml:name><maml:description><maml:para>Indicates that this cmdlet waits for the operation to complete before it returns control to the Windows PowerShell® console.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>Force</maml:name><maml:description><maml:para>Indicates that this cmdlet does not prompt you for confirmation.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">Microsoft.Azure.Common.Authentication.Models.AzureProfile</command:parameterValue></command:parameter></command:syntaxItem></command:syntax><command:parameters><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>Force</maml:name><maml:description><maml:para>Indicates that this cmdlet does not prompt you for confirmation.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">Microsoft.Azure.Common.Authentication.Models.AzureProfile</command:parameterValue><dev:type><maml:name>Microsoft.Azure.Common.Authentication.Models.AzureProfile</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true(ByValue)" position="1" aliases="none"><maml:name>SAC</maml:name><maml:description><maml:para>Specifies credential, as a StorageAccountCredential object, to remove. To obtain a StorageAccountCredential object, use the Get-AzureStorSimpleStorageAccountCredential cmdlet.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">StorageAccountCredentialResponse</command:parameterValue><dev:type><maml:name>StorageAccountCredentialResponse</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="Name"><maml:name>StorageAccountName</maml:name><maml:description><maml:para>Specifies the name of the storage account credential to delete.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="none"><maml:name>WaitForComplete</maml:name><maml:description><maml:para>Indicates that this cmdlet waits for the operation to complete before it returns control to the Windows PowerShell® console.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter></command:parameters><command:inputTypes><command:inputType><dev:type><maml:name>StorageAccountCredential</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para>This cmdlet accepts a StorageAccountCredential object by using the pipeline.</maml:para></maml:description></command:inputType></command:inputTypes><command:returnValues><command:returnValue><dev:type><maml:name>TaskStatusInfo</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para>This cmdlet returns a TaskStatusInfo object, if you specify the WaitForComplete parameter.</maml:para></maml:description></command:returnValue></command:returnValues><command:terminatingErrors /><command:nonTerminatingErrors /><command:examples><command:example><maml:title>Example 1: Remove a storage account credential</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Remove-AzureStorSimpleStorageAccountCredential -StorageAccountName "ContosoStorage07" -Force VERBOSE: ClientRequestId: 8e10d56b-ddb1-459b-b26e-a185f5a303de_PS VERBOSE: About to create a job to remove your Storage Access Credential! VERBOSE: ClientRequestId: 55cb6296-0156-4266-8591-d9e9bf8cc584_PS 982f4b19-ccb0-4ad3-9b02-f8ad25bf2e72 VERBOSE: The delete task is submitted successfully. Please use the command Get-AzureStorSimpleTask -InstanceId 982f4b19-ccb0-4ad3-9b02-f8ad25bf2e72 for tracking the task's status -</dev:code><dev:remarks><maml:para>This command removes the account credential for the storage account named ContosoStorage07. This command specifies the Force parameter. The cmdlet removes the credential without prompting your for confirmation.</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>Example 2: Remove a storage account credential by using the pipeline operator</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Get-AzureStorSimpleStorageAccountCredential -StorageAccountName "ContosoStorage07" | Remove-AzureStorSimpleStorageAccountCredential -Force -WaitForComplete +</dev:code><dev:remarks><maml:para>This command removes the account credential for the storage account named ContosoStorage07. This command specifies the Force parameter. The cmdlet removes the credential without prompting your for confirmation.</maml:para><maml:para /><maml:para /></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>Example 2: Remove a storage account credential by using the pipeline operator</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Get-AzureStorSimpleStorageAccountCredential -StorageAccountName "ContosoStorage07" | Remove-AzureStorSimpleStorageAccountCredential -Force -WaitForComplete VERBOSE: ClientRequestId: f1b46216-bf4c-4c19-8e92-1dfe3894e258_PS VERBOSE: ClientRequestId: 0d946f8f-c771-4ade-8a83-7c08dad86c52_PS VERBOSE: ClientRequestId: 2000bab6-8311-4192-ad12-c67e35fc2697_PS @@ -985,74 +1085,25 @@ VERBOSE: Storage Access Credential with name ContosoStorage07 found! VERBOSE: About to run a job to remove your Storage Access Credential! VERBOSE: ClientRequestId: b803b165-bef8-4a8f-9509-4b515ea8bdec_PS VERBOSE: Your delete operation completed successfully! -</dev:code><dev:remarks><maml:para>This command gets the storage account named ContosoStorage07 by using the Get-AzureStorSimpleStorageAccountCredential cmdlet, and then passes that object to the current cmdlet. The current cmdlet removes the credential for that storage account. This command specifies the WaitForComplete parameter. The cmdlet does not return control to the console until it completes the remove operation.</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example></command:examples><maml:relatedLinks><maml:navigationLink><maml:linkText>Get-AzureStorSimpleStorageAccountCredential</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>New-AzureStorSimpleStorageAccountCredential</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>Set-AzureStorSimpleStorageAccountCredential</maml:linkText><maml:uri /></maml:navigationLink></maml:relatedLinks></command:command><command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><command:details><command:name>Select-AzureStorSimpleResource</command:name><maml:description><maml:para>Sets a resource as the current resource.</maml:para></maml:description><maml:copyright><maml:para /></maml:copyright><command:verb>Select</command:verb><command:noun>AzureStorSimpleResource</command:noun><dev:version /></command:details><maml:description><maml:para>The Select-AzureStorSimpleResource cmdlet sets a resource as the current resource. After you select a resource, other cmdlets apply within that resource context.</maml:para></maml:description><command:syntax><command:syntaxItem><maml:name>Select-AzureStorSimpleResource</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true(ByPropertyName)" position="2" aliases="none"><maml:name>ResourceName</maml:name><maml:description><maml:para>Specifies the name of the resource to select as the current resource.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="3" aliases="none"><maml:name>RegistrationKey</maml:name><maml:description><maml:para>Specifies a registration key. Specify a key the first time that you select a resource. After this cmdlet selects the current resource, cmdlets use this key, as required. For more information, see <maml:navigationLink><maml:linkText>Get the service registration key</maml:linkText><maml:uri></maml:uri></maml:navigationLink> (http://msdn.microsoft.com/en-us/library/azure/dn772346.aspx) on the Microsoft Developer Network. </maml:para></maml:description><command:parameterValue required="false" variableLength="false">String</command:parameterValue></command:parameter></command:syntaxItem></command:syntax><command:parameters><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="3" aliases="none"><maml:name>RegistrationKey</maml:name><maml:description><maml:para>Specifies a registration key. Specify a key the first time that you select a resource. After this cmdlet selects the current resource, cmdlets use this key, as required. For more information, see <maml:navigationLink><maml:linkText>Get the service registration key</maml:linkText><maml:uri></maml:uri></maml:navigationLink> (http://msdn.microsoft.com/en-us/library/azure/dn772346.aspx) on the Microsoft Developer Network. </maml:para></maml:description><command:parameterValue required="false" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true(ByPropertyName)" position="2" aliases="none"><maml:name>ResourceName</maml:name><maml:description><maml:para>Specifies the name of the resource to select as the current resource.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter></command:parameters><command:inputTypes><command:inputType><dev:type><maml:name>None</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para></maml:para></maml:description></command:inputType></command:inputTypes><command:returnValues><command:returnValue><dev:type><maml:name>StorSimpleResourceContext</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para>This cmdlet returns a StorSimpleResourceContext object that contains details for the resource context. </maml:para></maml:description></command:returnValue></command:returnValues><command:terminatingErrors /><command:nonTerminatingErrors /><command:examples><command:example><maml:title>Example 1: Select a resource for the first time</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Select-AzureStorSimpleResource -ResourceName "Contoso64-Tsqa" -RegistrationKey "&lt;your registration key&gt;" -VERBOSE: Initializing resource context -VERBOSE: ClientRequestId: a9ed56d3-daf2-4b80-93d4-767af08d36e4_PS -VERBOSE: ClientRequestId: 97ceae7b-189c-4664-93a1-a0e814304bc8_PS -VERBOSE: ClientRequestId: 9d9cd6bc-3553-479a-9f41-dfef4c5c597d_PS -VERBOSE: Registration key passed - initializing secrets -VERBOSE: RegistrationKey #parts:3 -VERBOSE: ClientRequestId: 3e28c01b-f433-47d3-8052-7389c30bdd47_PS -VERBOSE: ClientRequestId: 52314a54-bd43-4c7e-b36d-a2fd9d89f819_PS -VERBOSE: ClientRequestId: d460582a-39e7-484f-9936-8eeff8d9d41b_PS -VERBOSE: Secrets validation complete -VERBOSE: Context set successfully for the given resource name. -VERBOSE: ClientRequestId: 386952c7-1042-4234-b41a-5211a381ee9a_PS - - -ResourceId : 1975530557201809476 -StampId : 7ef900f6-ad91-497d-a9c5-2742b7ed4a75 -CloudServiceName : CisService-DTYHC5NYB4BUTV3ZHFNSEZIKE5ZGLGYR44OJUL5OQGG4I2EMYOZA-west-us -ResourceProviderNameSpace : WACis -ResourceType : CisVault -ResourceName : Contoso64-Tsqa -StorSimpleKeyManager : Microsoft.WindowsAzure.Commands.StorSimple.Encryption.StorSimpleKeyManager -</dev:code><dev:remarks><maml:para>This command selects the resource named Contoso64-Tsqa as the current context. In this example, the computer has not had this context initialized previously, and, therefore, you must specify a value for the RegistrationKey parameter. </maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>Example 2: Attempt to select a resource</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>This command gets the current context for this computer by using the Get-AzureStorSimpleResourceContext cmdlet. The current selected resource is Contoso64-Tsqa. This is consistent with the previous example. +</dev:code><dev:remarks><maml:para>This command gets the storage account named ContosoStorage07 by using the Get-AzureStorSimpleStorageAccountCredential cmdlet, and then passes that object to the current cmdlet. The current cmdlet removes the credential for that storage account. This command specifies the WaitForComplete parameter. The cmdlet does not return control to the console until it completes the remove operation.</maml:para><maml:para /><maml:para /></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example></command:examples><maml:relatedLinks><maml:navigationLink><maml:linkText>Get-AzureStorSimpleStorageAccountCredential</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>New-AzureStorSimpleStorageAccountCredential</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>Set-AzureStorSimpleStorageAccountCredential</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>Get-AzureStorSimpleJob</maml:linkText><maml:uri /></maml:navigationLink></maml:relatedLinks></command:command><command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><command:details><command:name>Select-AzureStorSimpleResource</command:name><maml:description><maml:para>Sets a resource as the current resource.</maml:para></maml:description><maml:copyright><maml:para /></maml:copyright><command:verb>Select</command:verb><command:noun>AzureStorSimpleResource</command:noun><dev:version /></command:details><maml:description><maml:para>The Select-AzureStorSimpleResource cmdlet sets a resource as the current resource. After you select a resource, other cmdlets apply within that resource context.</maml:para></maml:description><command:syntax><command:syntaxItem><maml:name>Select-AzureStorSimpleResource</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true(ByPropertyName)" position="2" aliases="none"><maml:name>ResourceName</maml:name><maml:description><maml:para>Specifies the name of the resource to select as the current resource.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="3" aliases="none"><maml:name>RegistrationKey</maml:name><maml:description><maml:para>Specifies a registration key. Specify a key the first time that you select a resource. After this cmdlet selects the current resource, cmdlets use this key, as required. For more information, see <maml:navigationLink><maml:linkText>Get the service registration key</maml:linkText><maml:uri></maml:uri></maml:navigationLink> (http://msdn.microsoft.com/en-us/library/azure/dn772346.aspx) on the Microsoft Developer Network. </maml:para></maml:description><command:parameterValue required="false" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">Microsoft.Azure.Common.Authentication.Models.AzureProfile</command:parameterValue></command:parameter></command:syntaxItem></command:syntax><command:parameters><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">Microsoft.Azure.Common.Authentication.Models.AzureProfile</command:parameterValue><dev:type><maml:name>Microsoft.Azure.Common.Authentication.Models.AzureProfile</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="3" aliases="none"><maml:name>RegistrationKey</maml:name><maml:description><maml:para>Specifies a registration key. Specify a key the first time that you select a resource. After this cmdlet selects the current resource, cmdlets use this key, as required. For more information, see <maml:navigationLink><maml:linkText>Get the service registration key</maml:linkText><maml:uri></maml:uri></maml:navigationLink> (http://msdn.microsoft.com/en-us/library/azure/dn772346.aspx) on the Microsoft Developer Network. </maml:para></maml:description><command:parameterValue required="false" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true(ByPropertyName)" position="2" aliases="none"><maml:name>ResourceName</maml:name><maml:description><maml:para>Specifies the name of the resource to select as the current resource.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter></command:parameters><command:inputTypes><command:inputType><dev:type><maml:name>None</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para></maml:para></maml:description></command:inputType></command:inputTypes><command:returnValues><command:returnValue><dev:type><maml:name>StorSimpleResourceContext</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para>This cmdlet returns a StorSimpleResourceContext object that contains details for the resource context. </maml:para></maml:description></command:returnValue></command:returnValues><command:terminatingErrors /><command:nonTerminatingErrors /><command:examples><command:example><maml:title>Example 1: Select a resource for the first time</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Select-AzureStorSimpleResource -ResourceName "Contoso64-Tsqa" -RegistrationKey "&lt;your registration key&gt;" +ResourceId ResourceName +---------- ------------ +1909806764156522689 Contoso64-Tsqa +</dev:code><dev:remarks><maml:para>This command selects the resource named Contoso64-Tsqa as the current context. In this example, the computer has not had this context initialized previously, and, therefore, you must specify a value for the RegistrationKey parameter. </maml:para><maml:para /><maml:para /></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>Example 2: Attempt to select a resource</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>This command gets the current context for this computer by using the Get-AzureStorSimpleResourceContext cmdlet. The current selected resource is Contoso64-Tsqa. This is consistent with the previous example. PS C:\&gt;Get-AzureStorSimpleResourceContext -VERBOSE: ClientRequestId: 643be116-245f-474a-bb15-e7941b0b9cc7_PS - - -ResourceId : 1975530557201809476 -StampId : 7ef900f6-ad91-497d-a9c5-2742b7ed4a75 -CloudServiceName : ASDService-DTYHC5NYB4BUTV3ZHFNSEZIKE5ZGLGYR44OJUL5OQGG4I2EMYOZA-west-us -ResourceProviderNameSpace : WACis -ResourceType : CisVault -ResourceName : Contoso64-Tsqa -StorSimpleKeyManager : Microsoft.WindowsAzure.Commands.StorSimple.Encryption.StorSimpleKeyManager - -VERBOSE: You have a resource selected. Resource Name: Contoso64-Tsqa Id: Contoso64-Tsqa +ResourceId ResourceName +---------- ------------ +1909806764156522689 Contoso64-Tsqa This command attempts to reset the resource to be Contoso02-Resource. For this example, this resource has not been previously selected. The registration key is not saved or included in the command. The command cannot select the resource. PS C:\&gt;Select-AzureStorSimpleResource -ResourceName "Contoso02-Resource" -VERBOSE: Initializing resource context -VERBOSE: ClientRequestId: 3a9aac2a-606a-47a7-8a67-394676f9f0cf_PS -VERBOSE: ClientRequestId: 6599fb6c-3def-4c2f-83d7-3f77729f06ec_PS -VERBOSE: ClientRequestId: 9e6f108d-fc0a-4a92-8925-560f4265c083_PS -VERBOSE: Registrtion key not passed - validating that the secrets are already initialized -VERBOSE: ClientRequestId: 64e7b058-050c-4573-8eed-932d728ba360_PS Select-AzureStorSimpleResource : Could not find the persisted secret. Please use Select-AzureStorSimpleResource and provide the Registration key once again. -</dev:code><dev:remarks><maml:para></maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>Example 3: Select a previously selected resource </maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Select-AzureStorSimpleResource -ResourceName "Contoso64-Tsqa" -VERBOSE: Initializing resource context -VERBOSE: ClientRequestId: fb9f7fd0-7807-4b8f-b5eb-8312e06046c6_PS -VERBOSE: ClientRequestId: dc87be70-1dd5-4952-94b6-6703dd61ed55_PS -VERBOSE: ClientRequestId: a30e0bb5-0520-411d-8b21-e07048be7ba1_PS -VERBOSE: Registration key not passed - validating that the secrets are already initialized -VERBOSE: ClientRequestId: a7860dbe-eadc-483b-b528-947ff6211c2d_PS -VERBOSE: ClientRequestId: c4ff967f-f601-4093-909f-9985d81967cd_PS -VERBOSE: Secrets validation complete -VERBOSE: Context set successfully for the given resource name. -VERBOSE: ClientRequestId: 431877b1-275b-41d5-832f-64775a1896a9_PS - - -ResourceId : 1975530557201809476 -StampId : 7ef900f6-ad91-497d-a9c5-2742b7ed4a75 -CloudServiceName : CisService-DTYHC5NYB4BUTV3ZHFNSEZIKE5ZGLGYR44OJUL5OQGG4I2EMYOZA-west-us -ResourceProviderNameSpace : WACis -ResourceType : CisVault -ResourceName : Contoso64-Tsqa -StorSimpleKeyManager : Microsoft.WindowsAzure.Commands.StorSimple.Encryption.StorSimpleKeyManager -</dev:code><dev:remarks><maml:para>This command selects the resource named Contoso64-Tsqa as the current context. In this example, that context has previously been selected, and, therefore, you do not need to specify a value for the RegistrationKey parameter.</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example></command:examples><maml:relatedLinks><maml:navigationLink><maml:linkText>Get-AzureStorSimpleResource</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>Get-AzureStorSimpleResourceContext</maml:linkText><maml:uri /></maml:navigationLink></maml:relatedLinks></command:command><command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><command:details><command:name>Set-AzureStorSimpleAccessControlRecord</command:name><maml:description><maml:para>Updates the IQN of an access control record.</maml:para></maml:description><maml:copyright><maml:para /></maml:copyright><command:verb>Set</command:verb><command:noun>AzureStorSimpleAccessControlRecord</command:noun><dev:version /></command:details><maml:description><maml:para>The Set-AzureStorSimpleAccessControlRecord cmdlet updates the iSCSI qualified name (IQN) of an existing access control record.</maml:para></maml:description><command:syntax><command:syntaxItem><maml:name>Set-AzureStorSimpleAccessControlRecord</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="Name"><maml:name>ACRName</maml:name><maml:description><maml:para>Specifies a name of the access control record to modify.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="IQN"><maml:name>IQNInitiatorName</maml:name><maml:description><maml:para>Specifies the IQN of the iSCSI initiator to which this cmdlet provides access for the volume.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>WaitForComplete</maml:name><maml:description><maml:para>Indicates that this cmdlet waits for the operation to complete before it returns control to the Windows PowerShell® console.</maml:para></maml:description></command:parameter></command:syntaxItem></command:syntax><command:parameters><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="Name"><maml:name>ACRName</maml:name><maml:description><maml:para>Specifies a name of the access control record to modify.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="IQN"><maml:name>IQNInitiatorName</maml:name><maml:description><maml:para>Specifies the IQN of the iSCSI initiator to which this cmdlet provides access for the volume.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>WaitForComplete</maml:name><maml:description><maml:para>Indicates that this cmdlet waits for the operation to complete before it returns control to the Windows PowerShell® console.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter></command:parameters><command:inputTypes><command:inputType><dev:type><maml:name>None</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para></maml:para></maml:description></command:inputType></command:inputTypes><command:returnValues><command:returnValue><dev:type><maml:name>TaskStatusInfo, TaskResponse</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para>This cmdlet returns a TaskStatusInfo object if you specify the WaitForComplete parameter. If you do not specify that parameter, it returns a TaskResponse object. </maml:para></maml:description></command:returnValue></command:returnValues><command:terminatingErrors /><command:nonTerminatingErrors /><command:examples><command:example><maml:title>Example 1: Update an access control record</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Set-AzureStorSimpleAccessControlRecord -ACRName "Acr10" -IQNInitiatorName "IqnUpdated" -WaitForComplete +</dev:code><dev:remarks><maml:para></maml:para><maml:para /><maml:para /></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>Example 3: Select a previously selected resource </maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Select-AzureStorSimpleResource -ResourceName "Contoso64-Tsqa" +ResourceId ResourceName +---------- ------------ +1909806764156522689 Contoso64-Tsqa +</dev:code><dev:remarks><maml:para>This command selects the resource named Contoso64-Tsqa as the current context. In this example, that context has previously been selected, and, therefore, you do not need to specify a value for the RegistrationKey parameter.</maml:para><maml:para /><maml:para /></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example></command:examples><maml:relatedLinks><maml:navigationLink><maml:linkText>Get-AzureStorSimpleResource</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>Get-AzureStorSimpleResourceContext</maml:linkText><maml:uri /></maml:navigationLink></maml:relatedLinks></command:command><command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><command:details><command:name>Set-AzureStorSimpleAccessControlRecord</command:name><maml:description><maml:para>Updates the IQN of an access control record.</maml:para></maml:description><maml:copyright><maml:para /></maml:copyright><command:verb>Set</command:verb><command:noun>AzureStorSimpleAccessControlRecord</command:noun><dev:version /></command:details><maml:description><maml:para>The Set-AzureStorSimpleAccessControlRecord cmdlet updates the iSCSI qualified name (IQN) of an existing access control record.</maml:para></maml:description><command:syntax><command:syntaxItem><maml:name>Set-AzureStorSimpleAccessControlRecord</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="Name"><maml:name>ACRName</maml:name><maml:description><maml:para>Specifies a name of the access control record to modify.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="IQN"><maml:name>IQNInitiatorName</maml:name><maml:description><maml:para>Specifies the IQN of the iSCSI initiator to which this cmdlet provides access for the volume.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>WaitForComplete</maml:name><maml:description><maml:para>Indicates that this cmdlet waits for the operation to complete before it returns control to the Windows PowerShell® console.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="4" aliases="none"><maml:name>NewName</maml:name><maml:description><maml:para>Specifies a new name for access control record.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">System.String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">Microsoft.Azure.Common.Authentication.Models.AzureProfile</command:parameterValue></command:parameter></command:syntaxItem></command:syntax><command:parameters><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="Name"><maml:name>ACRName</maml:name><maml:description><maml:para>Specifies a name of the access control record to modify.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="IQN"><maml:name>IQNInitiatorName</maml:name><maml:description><maml:para>Specifies the IQN of the iSCSI initiator to which this cmdlet provides access for the volume.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="4" aliases="none"><maml:name>NewName</maml:name><maml:description><maml:para>Specifies a new name for access control record.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">System.String</command:parameterValue><dev:type><maml:name>System.String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">Microsoft.Azure.Common.Authentication.Models.AzureProfile</command:parameterValue><dev:type><maml:name>Microsoft.Azure.Common.Authentication.Models.AzureProfile</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>WaitForComplete</maml:name><maml:description><maml:para>Indicates that this cmdlet waits for the operation to complete before it returns control to the Windows PowerShell® console.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter></command:parameters><command:inputTypes><command:inputType><dev:type><maml:name>None</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para></maml:para></maml:description></command:inputType></command:inputTypes><command:returnValues><command:returnValue><dev:type><maml:name>TaskStatusInfo, TaskResponse</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para>This cmdlet returns a TaskStatusInfo object if you specify the WaitForComplete parameter. If you do not specify that parameter, it returns a TaskResponse object. </maml:para></maml:description></command:returnValue></command:returnValues><command:terminatingErrors /><command:nonTerminatingErrors /><command:examples><command:example><maml:title>Example 1: Update an access control record</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Set-AzureStorSimpleAccessControlRecord -ACRName "Acr10" -IQNInitiatorName "IqnUpdated" -WaitForComplete VERBOSE: ClientRequestId: e4766335-f302-40e0-93bf-fad7aa488ae6_PS VERBOSE: ClientRequestId: cfdbbd67-6ba5-4238-b743-b88f604079b9_PS VERBOSE: About to run a task to update your Access Control Record! @@ -1075,7 +1126,53 @@ Name : Acr10 OperationInProgress : None VolumeCount : 0 -</dev:code><dev:remarks><maml:para>This command updates the access control record named Acr10 for the iSCSI initiator named IqnUpdated. This command specifies the WaitForComplete parameter, and, therefore, the command waits until the operation is complete, and then returns a TaskStatusInfo object.</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example></command:examples><maml:relatedLinks><maml:navigationLink><maml:linkText>Get-AzureStorSimpleAccessControlRecord</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>New-AzureStorSimpleAccessControlRecord</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>Remove-AzureStorSimpleAccessControlRecord</maml:linkText><maml:uri /></maml:navigationLink></maml:relatedLinks></command:command><command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><command:details><command:name>Set-AzureStorSimpleDeviceBackupPolicy</command:name><maml:description><maml:para>Updates an existing backup policy.</maml:para></maml:description><maml:copyright><maml:para /></maml:copyright><command:verb>Set</command:verb><command:noun>AzureStorSimpleDeviceBackupPolicy</command:noun><dev:version /></command:details><maml:description><maml:para>The Set-AzureStorSimpleDeviceBackupPolicy cmdlet updates an existing backup policy. You can rename the policy, add, update or delete schedules, and update the volumes associated with the policy.</maml:para></maml:description><command:syntax><command:syntaxItem><maml:name>Set-AzureStorSimpleDeviceBackupPolicy</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>DeviceName</maml:name><maml:description><maml:para>Specifies the name of the StorSimple device for which to update the backup policy.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="none"><maml:name>BackupPolicyId</maml:name><maml:description><maml:para>Specifies the instance ID of the BackupPolicy object to update.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>BackupPolicyName</maml:name><maml:description><maml:para>Specifies a new name for the backup policy.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="4" aliases="none"><maml:name>BackupSchedulesToAdd</maml:name><maml:description><maml:para>Specifies an array of BackupScheduleBase objects to add to the policy. To obtain a BackupScheduleBase object, use the New-AzureStorSimpleDeviceBackupScheduleAddConfig cmdlet.</maml:para></maml:description><command:parameterValue required="false" variableLength="true">PSObject[]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="5" aliases="none"><maml:name>BackupSchedulesToUpdate</maml:name><maml:description><maml:para>Specifies an array of BackupScheduleUpdateRequest objects to update. To obtain a BackupScheduleUpdateRequest object, use the New-AzureStorSimpleDeviceBackupScheduleUpdateConfig cmdlet.</maml:para></maml:description><command:parameterValue required="false" variableLength="true">PSObject[]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="6" aliases="none"><maml:name>BackupScheduleIdsToDelete</maml:name><maml:description><maml:para>Specifies an array of instance IDs of BackupSchedule objects to delete.</maml:para></maml:description><command:parameterValue required="false" variableLength="true">PSObject[]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="7" aliases="none"><maml:name>VolumeIdsToUpdate</maml:name><maml:description><maml:para>Specifies an array of IDs of volumes for which to update backup policies.</maml:para></maml:description><command:parameterValue required="false" variableLength="true">PSObject[]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="8" aliases="none"><maml:name>WaitForComplete</maml:name><maml:description><maml:para>Indicates that this cmdlet waits for the operation to complete before it returns control to the Windows PowerShell® console.</maml:para></maml:description></command:parameter></command:syntaxItem></command:syntax><command:parameters><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="none"><maml:name>BackupPolicyId</maml:name><maml:description><maml:para>Specifies the instance ID of the BackupPolicy object to update.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>BackupPolicyName</maml:name><maml:description><maml:para>Specifies a new name for the backup policy.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="6" aliases="none"><maml:name>BackupScheduleIdsToDelete</maml:name><maml:description><maml:para>Specifies an array of instance IDs of BackupSchedule objects to delete.</maml:para></maml:description><command:parameterValue required="false" variableLength="true">PSObject[]</command:parameterValue><dev:type><maml:name>PSObject[]</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="4" aliases="none"><maml:name>BackupSchedulesToAdd</maml:name><maml:description><maml:para>Specifies an array of BackupScheduleBase objects to add to the policy. To obtain a BackupScheduleBase object, use the New-AzureStorSimpleDeviceBackupScheduleAddConfig cmdlet.</maml:para></maml:description><command:parameterValue required="false" variableLength="true">PSObject[]</command:parameterValue><dev:type><maml:name>PSObject[]</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="5" aliases="none"><maml:name>BackupSchedulesToUpdate</maml:name><maml:description><maml:para>Specifies an array of BackupScheduleUpdateRequest objects to update. To obtain a BackupScheduleUpdateRequest object, use the New-AzureStorSimpleDeviceBackupScheduleUpdateConfig cmdlet.</maml:para></maml:description><command:parameterValue required="false" variableLength="true">PSObject[]</command:parameterValue><dev:type><maml:name>PSObject[]</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>DeviceName</maml:name><maml:description><maml:para>Specifies the name of the StorSimple device for which to update the backup policy.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="7" aliases="none"><maml:name>VolumeIdsToUpdate</maml:name><maml:description><maml:para>Specifies an array of IDs of volumes for which to update backup policies.</maml:para></maml:description><command:parameterValue required="false" variableLength="true">PSObject[]</command:parameterValue><dev:type><maml:name>PSObject[]</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="8" aliases="none"><maml:name>WaitForComplete</maml:name><maml:description><maml:para>Indicates that this cmdlet waits for the operation to complete before it returns control to the Windows PowerShell® console.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter></command:parameters><command:inputTypes><command:inputType><dev:type><maml:name>None</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para></maml:para></maml:description></command:inputType></command:inputTypes><command:returnValues><command:returnValue><dev:type><maml:name>TaskStatusInfo, TaskResponse</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para>This cmdlet returns a TaskStatusInfo object if you specify the WaitForComplete parameter. If you do not specify that parameter, it returns a TaskResponse object.</maml:para></maml:description></command:returnValue></command:returnValues><command:terminatingErrors /><command:nonTerminatingErrors /><command:examples><command:example><maml:title>Example 1: Change the name of a backup policy</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Set-AzureStorSimpleDeviceBackupPolicy -DeviceName "Contoso63-AppVm" -BackupPolicyId "e6d9f1b3-a250-4d57-966a-039c8eaef9e9" -BackupPolicyName "UpdatedGeneralPolicy07" -WaitForComplete +</dev:code><dev:remarks><maml:para>This command updates the access control record named Acr10 for the iSCSI initiator named IqnUpdated. This command specifies the WaitForComplete parameter, and, therefore, the command waits until the operation is complete, and then returns a TaskStatusInfo object.</maml:para><maml:para /><maml:para /></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example></command:examples><maml:relatedLinks><maml:navigationLink><maml:linkText>Get-AzureStorSimpleAccessControlRecord</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>New-AzureStorSimpleAccessControlRecord</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>Remove-AzureStorSimpleAccessControlRecord</maml:linkText><maml:uri /></maml:navigationLink></maml:relatedLinks></command:command><command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><command:details><command:name>Set-AzureStorSimpleDevice</command:name><maml:description><maml:para>Changes the device configuration for a device.</maml:para></maml:description><maml:copyright><maml:para /></maml:copyright><command:verb>Set</command:verb><command:noun>AzureStorSimpleDevice</command:noun><dev:version /></command:details><maml:description><maml:para>The Set-AzureStorSimpleDevice cmdlet changes the device configuration for a device. If you are setting up a device for the first time, you must specify the TimeZone, SecondaryDnsServer, and StorSimpleNetworkConfig parameters. You must include network configuration for Data0 with controller0 and controller1 and IP addresses. There must be at least one Internet SCSI (ISCSI)-enabled network interface to configure the device for the first time. </maml:para></maml:description><command:syntax><command:syntaxItem><maml:name>Set-AzureStorSimpleDevice</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>DeviceId</maml:name><maml:description><maml:para>Specifies the instance ID of the StorSimple device to configure.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="none"><maml:name>NewName</maml:name><maml:description><maml:para>Specifies the new friendly name of the StorSimple device.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true(ByValue)" position="3" aliases="none"><maml:name>TimeZone</maml:name><maml:description><maml:para>Specifies a time zone for the device. You can create a TimeZoneInfo object by using the GetSystemTimeZone() method. For example, this command creates a time zone information object for Pacific Standard Time: [System.TimeZoneInfo]::GetSystemTimeZones() | where { $_.Id -eq "Pacific Standard Time" }</maml:para></maml:description><command:parameterValue required="false" variableLength="false">TimeZoneInfo</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="4" aliases="none"><maml:name>SecondaryDnsServer</maml:name><maml:description><maml:para>Specifies a secondary DNS server for the StorSimple device.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="true(ByValue)" position="5" aliases="none"><maml:name>StorSimpleNetworkConfig</maml:name><maml:description><maml:para>Specifies an array of of network configuration objectss for interfaces on a device. To obtain a NetworkConfig object, use the New-AzureStorSimpleNetworkConfig cmdlet.</maml:para></maml:description><command:parameterValue required="false" variableLength="true">NetworkConfig[]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">AzureProfile</command:parameterValue></command:parameter></command:syntaxItem><command:syntaxItem><maml:name>Set-AzureStorSimpleDevice</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>DeviceName</maml:name><maml:description><maml:para>Specifies the friendly name of the StorSimple device to configure.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="none"><maml:name>NewName</maml:name><maml:description><maml:para>Specifies the new friendly name of the StorSimple device.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true(ByValue)" position="3" aliases="none"><maml:name>TimeZone</maml:name><maml:description><maml:para>Specifies a time zone for the device. You can create a TimeZoneInfo object by using the GetSystemTimeZone() method. For example, this command creates a time zone information object for Pacific Standard Time: [System.TimeZoneInfo]::GetSystemTimeZones() | where { $_.Id -eq "Pacific Standard Time" }</maml:para></maml:description><command:parameterValue required="false" variableLength="false">TimeZoneInfo</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="4" aliases="none"><maml:name>SecondaryDnsServer</maml:name><maml:description><maml:para>Specifies a secondary DNS server for the StorSimple device.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="true(ByValue)" position="5" aliases="none"><maml:name>StorSimpleNetworkConfig</maml:name><maml:description><maml:para>Specifies an array of of network configuration objectss for interfaces on a device. To obtain a NetworkConfig object, use the New-AzureStorSimpleNetworkConfig cmdlet.</maml:para></maml:description><command:parameterValue required="false" variableLength="true">NetworkConfig[]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">AzureProfile</command:parameterValue></command:parameter></command:syntaxItem></command:syntax><command:parameters><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>DeviceId</maml:name><maml:description><maml:para>Specifies the instance ID of the StorSimple device to configure.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>DeviceName</maml:name><maml:description><maml:para>Specifies the friendly name of the StorSimple device to configure.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="none"><maml:name>NewName</maml:name><maml:description><maml:para>Specifies the new friendly name of the StorSimple device.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">AzureProfile</command:parameterValue><dev:type><maml:name>AzureProfile</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="4" aliases="none"><maml:name>SecondaryDnsServer</maml:name><maml:description><maml:para>Specifies a secondary DNS server for the StorSimple device.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="true(ByValue)" position="5" aliases="none"><maml:name>StorSimpleNetworkConfig</maml:name><maml:description><maml:para>Specifies an array of of network configuration objectss for interfaces on a device. To obtain a NetworkConfig object, use the New-AzureStorSimpleNetworkConfig cmdlet.</maml:para></maml:description><command:parameterValue required="false" variableLength="true">NetworkConfig[]</command:parameterValue><dev:type><maml:name>NetworkConfig[]</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true(ByValue)" position="3" aliases="none"><maml:name>TimeZone</maml:name><maml:description><maml:para>Specifies a time zone for the device. You can create a TimeZoneInfo object by using the GetSystemTimeZone() method. For example, this command creates a time zone information object for Pacific Standard Time: [System.TimeZoneInfo]::GetSystemTimeZones() | where { $_.Id -eq "Pacific Standard Time" }</maml:para></maml:description><command:parameterValue required="false" variableLength="false">TimeZoneInfo</command:parameterValue><dev:type><maml:name>TimeZoneInfo</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter></command:parameters><command:inputTypes><command:inputType><dev:type><maml:name>NetworkConfig, TimeZoneInfo</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para>You can pipe a NetworkConfig object or a TimeZoneInfo to this cmdlet.</maml:para></maml:description></command:inputType></command:inputTypes><command:returnValues><command:returnValue><dev:type><maml:name>DeviceDetails</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para>This cmdlet returns updated device details for the virtual device.</maml:para></maml:description></command:returnValue></command:returnValues><command:terminatingErrors /><command:nonTerminatingErrors /><command:examples><command:example><maml:title>Example 1: Modify the configuration for a device</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;$NetworkConfigData0 = New-AzureStorSimpleNetworkConfig -InterfaceAlias Data0 -EnableIscsi $True -Controller0IPv4Address "10.67.64.48" -Controller1IPv4Address "10.67.64.49" +PS C:\&gt; $TimeZoneInfo = [System.TimeZoneInfo]::GetSystemTimeZones() | where { $_.Id -eq "Pacific Standard Time" } +PS C:\&gt; $OnlineDevice = @(Get-AzureStorSimpleDevice | Where { $_.Status -eq "Online"})[0] +PS C:\&gt; $UpdatedDetails = Set-AzureStorSimpleDevice -DeviceId $OnlineDevice.DeviceId -NewName "Device22" -TimeZone $TimeZoneInfo -SecondaryDnsServer 10.8.8.8 -StorSimpleNetworkConfig $NetworkConfigData0 +VERBOSE: ClientRequestId: 0f163163-5ad0-4635-a7b5-870d47297f66_PS +VERBOSE: Successfully created a StorSimple Network Configuration for interface Data0 +VERBOSE: ClientRequestId: 552e4a6c-7006-4015-a20b-9def6428a85e_PS +VERBOSE: ClientRequestId: f31cc84c-bc8a-404a-9da6-4670a7999e75_PS +VERBOSE: 1 StorSimple device found! +VERBOSE: ClientRequestId: 545bc1a9-3c1b-4e50-89a6-9678aefe79e5_PS +VERBOSE: ClientRequestId: f114ad08-47f5-4fb8-8a01-1ea7f1ed1b98_PS +VERBOSE: About to configure the device : Device22 ! +VERBOSE: ClientRequestId: 6afe7927-1c19-48d3-ac22-68148fd056b8_PS +VERBOSE: The task created for your Setup operation has completed successfully. +VERBOSE: ClientRequestId: 467c142c-90da-4d75-82a4-c114afce953d_PS +VERBOSE: Successfully updated configuration for device Device22 with id 865e68f6-1e71-47b6-80d5-15d3a23bd2b0 +</dev:code><dev:remarks><maml:para>The first command creates a network configuration for the Data0 interface. This command specifies the Controller0IPv4Address, Controller1IPv4Address, and EnableIscsi parameters. The command stores the result in the $NetworkConfigData0 variable. </maml:para><maml:para>The second command uses the System.TimeZoneInfo .NET class and standard syntax to get Pacific Standard Time zone, and stores that object in the $TimeZoneInfo variable. </maml:para><maml:para>The third command uses the Get-AzureStorSimpleDevice cmdlet and the Where-Object core cmdlet to get an online StorSimple device, and then stores it in the $OnlineDevice variable.</maml:para><maml:para>The final command modifies the configuration for the device that has the specified device ID. The command uses the configuration object that the current cmdlet created in the first command. The command uses the time zone stored in $TimeZoneInfo.</maml:para><maml:para /><maml:para /></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>Example 2: Pipe the configuration object to modify a device</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;$TimeZoneInfo = [System.TimeZoneInfo]::GetSystemTimeZones() | where { $_.Id -eq "Pacific Standard Time" } +PS C:\&gt; $OnlineDevice = @(Get-AzureStorSimpleDevice | Where { $_.Status -eq "Online"})[0] +PS C:\&gt; $UpdatedDetails = New-AzureStorSimpleNetworkConfig -InterfaceAlias Data0 -EnableIscsi $True -Controller0IPv4Address "10.67.64.48" -Controller1IPv4Address "10.67.64.49" | Set-AzureStorSimpleDevice -DeviceId $OnlineDevice.DeviceId -NewName "Device22" -TimeZone $TimeZoneInfo -SecondaryDnsServer 10.8.8.8 +VERBOSE: ClientRequestId: fa2f5000-169c-4feb-abbf-23f4b5c837fa_PS +VERBOSE: Successfully created a StorSimple Network Configuration for interface Data0 +VERBOSE: ClientRequestId: fae6a491-919c-44b2-93e0-0c51f202c24b_PS +VERBOSE: ClientRequestId: e1803427-a097-4d58-ab7d-14a4c39fd768_PS +VERBOSE: 1 StorSimple device found! +VERBOSE: ClientRequestId: 9e796c3d-3100-46ab-9a09-0e10c73a296f_PS +VERBOSE: ClientRequestId: 5b4cad96-31f4-4d07-a278-df5af3e06ad4_PS +VERBOSE: About to configure the device : Device22 ! +VERBOSE: ClientRequestId: 9061f7df-144f-4f30-858c-045d882ca392_PS +VERBOSE: The task created for your Setup operation has completed successfully. +VERBOSE: ClientRequestId: 2ed2fa9b-8459-4cd6-9a61-5fc25ced2815_PS +VERBOSE: Successfully updated configuration for device Device22 with id 865e68f6-1e71-47b6-80d5-15d3a23bd2b0 +</dev:code><dev:remarks><maml:para>This example does the same configuration update as the first example, except that the final command passes the network configuration object to the current cmdlet by using the pipeline operator. </maml:para><maml:para /><maml:para /></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>Example 3: Pipe the time zone object to modify a device</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;$NetworkConfigData0 = New-AzureStorSimpleNetworkConfig -InterfaceAlias Data0 -EnableIscsi $True -Controller0IPv4Address "10.67.64.48" -Controller1IPv4Address "10.67.64.49" +PS C:\&gt; $OnlineDevice = @(Get-AzureStorSimpleDevice | Where { $_.Status -eq "Online"})[0] +PS C:\&gt; $UpdatedDetails = [System.TimeZoneInfo]::GetSystemTimeZones() | where { $_.Id -eq "Pacific Standard Time" } | Set-AzureStorSimpleDevice -DeviceId $OnlineDevice.DeviceId -NewName "Device22" -SecondaryDnsServer 10.8.8.8 -StorSimpleNetworkConfig $NetworkConfigData0 +VERBOSE: ClientRequestId: cfc3f3c7-a8b6-462b-96f4-124050b736fe_PS +VERBOSE: Successfully created a StorSimple Network Configuration for interface Data0 +VERBOSE: ClientRequestId: 6017b76f-a771-4bf8-901e-14876e0f9962_PS +VERBOSE: ClientRequestId: 59a9275c-9005-4e8a-b68b-efa1e6c27d47_PS +VERBOSE: 1 StorSimple device found! +VERBOSE: ClientRequestId: 08e5142a-b038-4607-8690-0c5a8b948352_PS +VERBOSE: ClientRequestId: 218af244-b8f4-4a4b-817e-8f67e1323f03_PS +VERBOSE: About to configure the device : Device22 ! +VERBOSE: ClientRequestId: fbd1f32d-1d74-432e-9dc0-90b46674884a_PS +VERBOSE: The task created for your Setup operation has completed successfully. +VERBOSE: ClientRequestId: 981cb941-252c-4898-ba9f-f19e5b8bcaa4_PS +VERBOSE: Successfully updated configuration for device Device22 with id 865e68f6-1e71-47b6-80d5-15d3a23bd2b0 +</dev:code><dev:remarks><maml:para>This example does the same configuration update as the first example, except that the final command passes the time zone object to the current cmdlet by using the pipeline operator. </maml:para><maml:para /><maml:para /></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example></command:examples><maml:relatedLinks><maml:navigationLink><maml:linkText>New-AzureStorSimpleNetworkConfig</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>Set-AzureStorSimpleVirtualDevice</maml:linkText><maml:uri /></maml:navigationLink></maml:relatedLinks></command:command><command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><command:details><command:name>Set-AzureStorSimpleDeviceBackupPolicy</command:name><maml:description><maml:para>Updates an existing backup policy.</maml:para></maml:description><maml:copyright><maml:para /></maml:copyright><command:verb>Set</command:verb><command:noun>AzureStorSimpleDeviceBackupPolicy</command:noun><dev:version /></command:details><maml:description><maml:para>The Set-AzureStorSimpleDeviceBackupPolicy cmdlet updates an existing backup policy. You can rename the policy, add, update or delete schedules, and update the volumes associated with the policy.</maml:para></maml:description><command:syntax><command:syntaxItem><maml:name>Set-AzureStorSimpleDeviceBackupPolicy</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>DeviceName</maml:name><maml:description><maml:para>Specifies the name of the StorSimple device for which to update the backup policy.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="none"><maml:name>BackupPolicyId</maml:name><maml:description><maml:para>Specifies the instance ID of the BackupPolicy object to update.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>BackupPolicyName</maml:name><maml:description><maml:para>Specifies a new name for the backup policy.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="4" aliases="none"><maml:name>BackupSchedulesToAdd</maml:name><maml:description><maml:para>Specifies an array of BackupScheduleBase objects to add to the policy. To obtain a BackupScheduleBase object, use the New-AzureStorSimpleDeviceBackupScheduleAddConfig cmdlet.</maml:para></maml:description><command:parameterValue required="false" variableLength="true">PSObject[]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="5" aliases="none"><maml:name>BackupSchedulesToUpdate</maml:name><maml:description><maml:para>Specifies an array of BackupScheduleUpdateRequest objects to update. To obtain a BackupScheduleUpdateRequest object, use the New-AzureStorSimpleDeviceBackupScheduleUpdateConfig cmdlet.</maml:para></maml:description><command:parameterValue required="false" variableLength="true">PSObject[]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="6" aliases="none"><maml:name>BackupScheduleIdsToDelete</maml:name><maml:description><maml:para>Specifies an array of instance IDs of BackupSchedule objects to delete.</maml:para></maml:description><command:parameterValue required="false" variableLength="true">PSObject[]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="7" aliases="none"><maml:name>VolumeIdsToUpdate</maml:name><maml:description><maml:para>Specifies an array of IDs of volumes for which to update backup policies.</maml:para></maml:description><command:parameterValue required="false" variableLength="true">PSObject[]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="8" aliases="none"><maml:name>WaitForComplete</maml:name><maml:description><maml:para>Indicates that this cmdlet waits for the operation to complete before it returns control to the Windows PowerShell® console.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="9" aliases="none"><maml:name>NewName</maml:name><maml:description><maml:para>Specifies a name for the device.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">System.String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">Microsoft.Azure.Common.Authentication.Models.AzureProfile</command:parameterValue></command:parameter></command:syntaxItem></command:syntax><command:parameters><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="none"><maml:name>BackupPolicyId</maml:name><maml:description><maml:para>Specifies the instance ID of the BackupPolicy object to update.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>BackupPolicyName</maml:name><maml:description><maml:para>Specifies a new name for the backup policy.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="6" aliases="none"><maml:name>BackupScheduleIdsToDelete</maml:name><maml:description><maml:para>Specifies an array of instance IDs of BackupSchedule objects to delete.</maml:para></maml:description><command:parameterValue required="false" variableLength="true">PSObject[]</command:parameterValue><dev:type><maml:name>PSObject[]</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="4" aliases="none"><maml:name>BackupSchedulesToAdd</maml:name><maml:description><maml:para>Specifies an array of BackupScheduleBase objects to add to the policy. To obtain a BackupScheduleBase object, use the New-AzureStorSimpleDeviceBackupScheduleAddConfig cmdlet.</maml:para></maml:description><command:parameterValue required="false" variableLength="true">PSObject[]</command:parameterValue><dev:type><maml:name>PSObject[]</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="5" aliases="none"><maml:name>BackupSchedulesToUpdate</maml:name><maml:description><maml:para>Specifies an array of BackupScheduleUpdateRequest objects to update. To obtain a BackupScheduleUpdateRequest object, use the New-AzureStorSimpleDeviceBackupScheduleUpdateConfig cmdlet.</maml:para></maml:description><command:parameterValue required="false" variableLength="true">PSObject[]</command:parameterValue><dev:type><maml:name>PSObject[]</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>DeviceName</maml:name><maml:description><maml:para>Specifies the name of the StorSimple device for which to update the backup policy.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="9" aliases="none"><maml:name>NewName</maml:name><maml:description><maml:para>Specifies a name for the device.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">System.String</command:parameterValue><dev:type><maml:name>System.String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">Microsoft.Azure.Common.Authentication.Models.AzureProfile</command:parameterValue><dev:type><maml:name>Microsoft.Azure.Common.Authentication.Models.AzureProfile</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="7" aliases="none"><maml:name>VolumeIdsToUpdate</maml:name><maml:description><maml:para>Specifies an array of IDs of volumes for which to update backup policies.</maml:para></maml:description><command:parameterValue required="false" variableLength="true">PSObject[]</command:parameterValue><dev:type><maml:name>PSObject[]</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="8" aliases="none"><maml:name>WaitForComplete</maml:name><maml:description><maml:para>Indicates that this cmdlet waits for the operation to complete before it returns control to the Windows PowerShell® console.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter></command:parameters><command:inputTypes><command:inputType><dev:type><maml:name>None</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para></maml:para></maml:description></command:inputType></command:inputTypes><command:returnValues><command:returnValue><dev:type><maml:name>TaskStatusInfo, TaskResponse</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para>This cmdlet returns a TaskStatusInfo object if you specify the WaitForComplete parameter. If you do not specify that parameter, it returns a TaskResponse object.</maml:para></maml:description></command:returnValue></command:returnValues><command:terminatingErrors /><command:nonTerminatingErrors /><command:examples><command:example><maml:title>Example 1: Change the name of a backup policy</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Set-AzureStorSimpleDeviceBackupPolicy -DeviceName "Contoso63-AppVm" -BackupPolicyId "e6d9f1b3-a250-4d57-966a-039c8eaef9e9" -BackupPolicyName "UpdatedGeneralPolicy07" -WaitForComplete VERBOSE: ClientRequestId: f4465b46-26cc-40ff-88da-7a28df88c35c_PS VERBOSE: ClientRequestId: 5e33a35c-e089-47c1-b760-474635b1ead8_PS VERBOSE: About to run a task to update your backuppolicy! @@ -1102,11 +1199,10 @@ VolumesCount : 1 InstanceId : e6d9f1b3-a250-4d57-966a-039c8eaef9e9 Name : UpdatedGeneralPolicy07 OperationInProgress : None -</dev:code><dev:remarks><maml:para>This command changes the name of the backup policy that has the specified ID to UpdatedGeneralPolicy07. This command specifies the WaitForComplete parameter, so the command completes the task, and then returns a TaskStatusInfo object for the task.</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>Example 2: Update the schedule for a backup policy</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;$UpdateConfig = New-AzureStorSimpleDeviceBackupScheduleUpdateConfig -Id "3a6c6247-6b4d-42e2-aa87-16f4f21476ea" -BackupType CloudSnapshot -RecurrenceType Daily -RecurrenceValue 3 -RetentionCount 2 -Enabled $True +</dev:code><dev:remarks><maml:para>This command changes the name of the backup policy that has the specified ID to UpdatedGeneralPolicy07. This command specifies the WaitForComplete parameter, so the command completes the task, and then returns a TaskStatusInfo object for the task.</maml:para><maml:para /><maml:para /></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>Example 2: Update the schedule for a backup policy</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;$UpdateConfig = New-AzureStorSimpleDeviceBackupScheduleUpdateConfig -Id "3a6c6247-6b4d-42e2-aa87-16f4f21476ea" -BackupType CloudSnapshot -RecurrenceType Daily -RecurrenceValue 3 -RetentionCount 2 -Enabled $True PS C:\&gt; $UpdateArray = @() PS C:\&gt; $UpdateArray += $UpdateConfig PS C:\&gt; Set-AzureStorSimpleDeviceBackupPolicy -DeviceName "Contoso63-AppVm" -BackupPolicyId "712605f6-eb03-4db8-8f79-e0ce64b2cce1" -BackupSchedulesToUpdate $UpdateArray - Error : Microsoft.WindowsAzure.Management.StorSimple.Models.ErrorDetails JobId : 7b265417-a5f1-45ad-8fbc-33bad4f63ec9 JobSteps : {Microsoft.WindowsAzure.Management.StorSimple.Models.JobStep, @@ -1118,7 +1214,7 @@ Status : Completed TaskResult : Succeeded StatusCode : OK RequestId : d2e10d44e699b371a84db44d19daf1c3 -</dev:code><dev:remarks><maml:para>The first command creates an update configuration object by using the New-AzureStorSimpleDeviceBackupScheduleUpdateConfig cmdlet, and then stores it in the $UpdateConfig variable. </maml:para><maml:para>The second command creates a new array variable, named $UpdateArray. The next command adds the update stored in $UpdateConfig to that array. You can add more than one update to the array. </maml:para><maml:para>The final command updates the backup policy that has the specified ID on the device named Contoso63-AppVm. The policy now has the updated schedule stored in $UpdateArray.</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example></command:examples><maml:relatedLinks><maml:navigationLink><maml:linkText>Get-AzureStorSimpleDeviceBackupPolicy</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>New-AzureStorSimpleDeviceBackupPolicy</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>Remove-AzureStorSimpleDeviceBackupPolicy</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>New-AzureStorSimpleDeviceBackupScheduleUpdateConfig</maml:linkText><maml:uri /></maml:navigationLink></maml:relatedLinks></command:command><command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><command:details><command:name>Set-AzureStorSimpleDeviceVolume</command:name><maml:description><maml:para>Updates the properties of an existing volume.</maml:para></maml:description><maml:copyright><maml:para /></maml:copyright><command:verb>Set</command:verb><command:noun>AzureStorSimpleDeviceVolume</command:noun><dev:version /></command:details><maml:description><maml:para>The Set-AzureStorSimpleDeviceVolume cmdlet updates the properties of an existing volume. This cmdlet associates a volume with one or more access control records. To obtain AccessControlRecord objects, use the Get-AzureStorSimpleAccessControlRecord cmdlet. Update the size or type for the volume. Also, update whether to create the volume online.</maml:para></maml:description><command:syntax><command:syntaxItem><maml:name>Set-AzureStorSimpleDeviceVolume</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>DeviceName</maml:name><maml:description><maml:para>Specifies the name of the StorSimple device on which to update the volume exists.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="Name"><maml:name>VolumeName</maml:name><maml:description><maml:para>Specifies the name of the volume to update.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>Online</maml:name><maml:description><maml:para>Specifies whether the volume is online.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">Boolean</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="4" aliases="Size"><maml:name>VolumeSize</maml:name><maml:description><maml:para></maml:para></maml:description><command:parameterValue required="false" variableLength="false">Nullable [System.Int64]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="5" aliases="AppType"><maml:name>VolumeAppType</maml:name><maml:description><maml:para>Specifies whether to update the volume to be a primary or archive volume. Valid values are: PrimaryVolume and ArchiveVolume. </maml:para></maml:description><command:parameterValue required="false" variableLength="false">AppType</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true(ByValue)" position="6" aliases="none"><maml:name>AccessControlRecords</maml:name><maml:description><maml:para>Specifies a list of access control records to associate with the volume.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">0, Culture=neutral, PublicKeyToken=null</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="7" aliases="none"><maml:name>WaitForComplete</maml:name><maml:description><maml:para>Indicates that this cmdlet waits for the operation to complete before it returns control to the Windows PowerShell® console.</maml:para></maml:description></command:parameter></command:syntaxItem></command:syntax><command:parameters><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true(ByValue)" position="6" aliases="none"><maml:name>AccessControlRecords</maml:name><maml:description><maml:para>Specifies a list of access control records to associate with the volume.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">0, Culture=neutral, PublicKeyToken=null</command:parameterValue><dev:type><maml:name>0, Culture=neutral, PublicKeyToken=null</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>DeviceName</maml:name><maml:description><maml:para>Specifies the name of the StorSimple device on which to update the volume exists.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>Online</maml:name><maml:description><maml:para>Specifies whether the volume is online.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">Boolean</command:parameterValue><dev:type><maml:name>Boolean</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="5" aliases="AppType"><maml:name>VolumeAppType</maml:name><maml:description><maml:para>Specifies whether to update the volume to be a primary or archive volume. Valid values are: PrimaryVolume and ArchiveVolume. </maml:para></maml:description><command:parameterValue required="false" variableLength="false">AppType</command:parameterValue><dev:type><maml:name>AppType</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="Name"><maml:name>VolumeName</maml:name><maml:description><maml:para>Specifies the name of the volume to update.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="4" aliases="Size"><maml:name>VolumeSize</maml:name><maml:description><maml:para></maml:para></maml:description><command:parameterValue required="false" variableLength="false">Nullable [System.Int64]</command:parameterValue><dev:type><maml:name>Nullable [System.Int64]</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="7" aliases="none"><maml:name>WaitForComplete</maml:name><maml:description><maml:para>Indicates that this cmdlet waits for the operation to complete before it returns control to the Windows PowerShell® console.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter></command:parameters><command:inputTypes><command:inputType><dev:type><maml:name>List&lt;AccessControlRecord&gt;</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para>This cmdlet accepts a list of AccessControlRecord objects to associate to a volume.</maml:para></maml:description></command:inputType></command:inputTypes><command:returnValues><command:returnValue><dev:type><maml:name>TaskStatusInfo</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para>This cmdlet returns a TaskStatusInfo object, if you specify the WaitForComplete parameter. </maml:para></maml:description></command:returnValue></command:returnValues><command:terminatingErrors /><command:nonTerminatingErrors /><command:examples><command:example><maml:title>Example 1: Update online value for a volume</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Set-AzureStorSimpleDeviceVolume -DeviceName "Contoso63-AppVm" -VolumeName "Volume18" -Online $False +</dev:code><dev:remarks><maml:para>The first command creates an update configuration object by using the New-AzureStorSimpleDeviceBackupScheduleUpdateConfig cmdlet, and then stores it in the $UpdateConfig variable. </maml:para><maml:para>The second command creates a new array variable, named $UpdateArray. The next command adds the update stored in $UpdateConfig to that array. You can add more than one update to the array. </maml:para><maml:para>The final command updates the backup policy that has the specified ID on the device named Contoso63-AppVm. The policy now has the updated schedule stored in $UpdateArray.</maml:para><maml:para /><maml:para /></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example></command:examples><maml:relatedLinks><maml:navigationLink><maml:linkText>Get-AzureStorSimpleDeviceBackupPolicy</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>New-AzureStorSimpleDeviceBackupPolicy</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>Remove-AzureStorSimpleDeviceBackupPolicy</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>New-AzureStorSimpleDeviceBackupScheduleUpdateConfig</maml:linkText><maml:uri /></maml:navigationLink></maml:relatedLinks></command:command><command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><command:details><command:name>Set-AzureStorSimpleDeviceVolume</command:name><maml:description><maml:para>Updates the properties of an existing volume.</maml:para></maml:description><maml:copyright><maml:para /></maml:copyright><command:verb>Set</command:verb><command:noun>AzureStorSimpleDeviceVolume</command:noun><dev:version /></command:details><maml:description><maml:para>The Set-AzureStorSimpleDeviceVolume cmdlet updates the properties of an existing volume. This cmdlet associates a volume with one or more access control records. To obtain AccessControlRecord objects, use the Get-AzureStorSimpleAccessControlRecord cmdlet. Update the size or type for the volume. Also, update whether to create the volume online.</maml:para></maml:description><command:syntax><command:syntaxItem><maml:name>Set-AzureStorSimpleDeviceVolume</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>DeviceName</maml:name><maml:description><maml:para>Specifies the name of the StorSimple device on which to update the volume exists.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">System.String</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="Name"><maml:name>VolumeName</maml:name><maml:description><maml:para>Specifies the name of the volume to update.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">System.String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>Online</maml:name><maml:description><maml:para>Specifies whether the volume is online.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">Nullable [System.Boolean]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="4" aliases="SizeInBytes"><maml:name>VolumeSizeInBytes</maml:name><maml:description><maml:para>Specifies the updated size, in bytes, for the volume.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">Nullable [System.Int64]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="5" aliases="AppType"><maml:name>VolumeAppType</maml:name><maml:description><maml:para>Specifies whether to update the volume to be a primary or archive volume. Valid values are: PrimaryVolume and ArchiveVolume.</maml:para></maml:description><command:parameterValueGroup><command:parameterValue required="false" variableLength="false">PrimaryVolume</command:parameterValue><command:parameterValue required="false" variableLength="false">ArchiveVolume</command:parameterValue></command:parameterValueGroup></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true(ByValue)" position="6" aliases="none"><maml:name>AccessControlRecords</maml:name><maml:description><maml:para>Specifies a list of access control records to associate with the volume.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">System.Collections.Generic.List`1[[Microsoft.WindowsAzure.Management.StorSimple.Models.AccessControlRecord, StorSimple.Tests, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="7" aliases="none"><maml:name>WaitForComplete</maml:name><maml:description><maml:para>Indicates that this cmdlet waits for the operation to complete before it returns control to the Windows PowerShell® console.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="8" aliases="none"><maml:name>NewName</maml:name><maml:description><maml:para>Specifies a new name for the StorSimple device. </maml:para></maml:description><command:parameterValue required="false" variableLength="false">System.String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">Microsoft.Azure.Common.Authentication.Models.AzureProfile</command:parameterValue></command:parameter></command:syntaxItem><command:syntaxItem><maml:name>Set-AzureStorSimpleDeviceVolume</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>DeviceName</maml:name><maml:description><maml:para>Specifies the name of the StorSimple device on which to update the volume exists.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">System.String</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true(ByValue)" position="2" aliases="none"><maml:name>Volume</maml:name><maml:description><maml:para>Specifies the name of the volume to update.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Microsoft.WindowsAzure.Management.StorSimple.Models.VirtualDisk</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>Online</maml:name><maml:description><maml:para>Specifies whether the volume is online.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">Nullable [System.Boolean]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="4" aliases="SizeInBytes"><maml:name>VolumeSizeInBytes</maml:name><maml:description><maml:para>Specifies the updated size, in bytes, for the volume.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">Nullable [System.Int64]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="5" aliases="AppType"><maml:name>VolumeAppType</maml:name><maml:description><maml:para>Specifies whether to update the volume to be a primary or archive volume. Valid values are: PrimaryVolume and ArchiveVolume.</maml:para></maml:description><command:parameterValueGroup><command:parameterValue required="false" variableLength="false">PrimaryVolume</command:parameterValue><command:parameterValue required="false" variableLength="false">ArchiveVolume</command:parameterValue></command:parameterValueGroup></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true(ByValue)" position="6" aliases="none"><maml:name>AccessControlRecords</maml:name><maml:description><maml:para>Specifies a list of access control records to associate with the volume.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">System.Collections.Generic.List`1[[Microsoft.WindowsAzure.Management.StorSimple.Models.AccessControlRecord, StorSimple.Tests, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="7" aliases="none"><maml:name>WaitForComplete</maml:name><maml:description><maml:para>Indicates that this cmdlet waits for the operation to complete before it returns control to the Windows PowerShell® console.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="8" aliases="none"><maml:name>NewName</maml:name><maml:description><maml:para>Specifies a new name for the StorSimple device. </maml:para></maml:description><command:parameterValue required="false" variableLength="false">System.String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">Microsoft.Azure.Common.Authentication.Models.AzureProfile</command:parameterValue></command:parameter></command:syntaxItem></command:syntax><command:parameters><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true(ByValue)" position="6" aliases="none"><maml:name>AccessControlRecords</maml:name><maml:description><maml:para>Specifies a list of access control records to associate with the volume.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">System.Collections.Generic.List`1[[Microsoft.WindowsAzure.Management.StorSimple.Models.AccessControlRecord, StorSimple.Tests, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]</command:parameterValue><dev:type><maml:name>System.Collections.Generic.List`1[[Microsoft.WindowsAzure.Management.StorSimple.Models.AccessControlRecord, StorSimple.Tests, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>DeviceName</maml:name><maml:description><maml:para>Specifies the name of the StorSimple device on which to update the volume exists.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">System.String</command:parameterValue><dev:type><maml:name>System.String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="8" aliases="none"><maml:name>NewName</maml:name><maml:description><maml:para>Specifies a new name for the StorSimple device. </maml:para></maml:description><command:parameterValue required="false" variableLength="false">System.String</command:parameterValue><dev:type><maml:name>System.String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>Online</maml:name><maml:description><maml:para>Specifies whether the volume is online.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">Nullable [System.Boolean]</command:parameterValue><dev:type><maml:name>Nullable [System.Boolean]</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">Microsoft.Azure.Common.Authentication.Models.AzureProfile</command:parameterValue><dev:type><maml:name>Microsoft.Azure.Common.Authentication.Models.AzureProfile</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true(ByValue)" position="2" aliases="none"><maml:name>Volume</maml:name><maml:description><maml:para>Specifies the name of the volume to update.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Microsoft.WindowsAzure.Management.StorSimple.Models.VirtualDisk</command:parameterValue><dev:type><maml:name>Microsoft.WindowsAzure.Management.StorSimple.Models.VirtualDisk</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="5" aliases="AppType"><maml:name>VolumeAppType</maml:name><maml:description><maml:para>Specifies whether to update the volume to be a primary or archive volume. Valid values are: PrimaryVolume and ArchiveVolume.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">Nullable [Microsoft.WindowsAzure.Management.StorSimple.Models.AppType]</command:parameterValue><dev:type><maml:name>Nullable [Microsoft.WindowsAzure.Management.StorSimple.Models.AppType]</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="Name"><maml:name>VolumeName</maml:name><maml:description><maml:para>Specifies the name of the volume to update.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">System.String</command:parameterValue><dev:type><maml:name>System.String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="4" aliases="SizeInBytes"><maml:name>VolumeSizeInBytes</maml:name><maml:description><maml:para>Specifies the updated size, in bytes, for the volume.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">Nullable [System.Int64]</command:parameterValue><dev:type><maml:name>Nullable [System.Int64]</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="7" aliases="none"><maml:name>WaitForComplete</maml:name><maml:description><maml:para>Indicates that this cmdlet waits for the operation to complete before it returns control to the Windows PowerShell® console.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter></command:parameters><command:inputTypes><command:inputType><dev:type><maml:name>List&lt;AccessControlRecord&gt;</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para>This cmdlet accepts a list of AccessControlRecord objects to associate to a volume.</maml:para></maml:description></command:inputType></command:inputTypes><command:returnValues><command:returnValue><dev:type><maml:name>TaskStatusInfo</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para>This cmdlet returns a TaskStatusInfo object, if you specify the WaitForComplete parameter. </maml:para></maml:description></command:returnValue></command:returnValues><command:terminatingErrors /><command:nonTerminatingErrors /><command:examples><command:example><maml:title>Example 1: Update online value for a volume</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Set-AzureStorSimpleDeviceVolume -DeviceName "Contoso63-AppVm" -VolumeName "Volume18" -Online $False VERBOSE: ClientRequestId: f2869570-ea47-4be7-801e-9c0f22f2600d_PS VERBOSE: ClientRequestId: c70bb86a-51d3-4390-be17-4d0847641dc3_PS VERBOSE: ClientRequestId: d20cb5b2-6b3c-4e06-af99-cada28c5e50a_PS @@ -1126,7 +1222,7 @@ VERBOSE: ClientRequestId: ab6d533e-b55b-4cfb-9c58-9153295e0547_PS de7000f1-29c7-4102-a375-b52432f9e67e VERBOSE: The update task is submitted successfully. Please use the command Get-AzureStorSimpleTask -InstanceId de7000f1-29c7-4102-a375-b52432f9e67e for tracking the task's status -</dev:code><dev:remarks><maml:para>This command updates the volume named Volume18 to have an online value of $False. This command starts the task, and then returns a TaskResponse object. To see the status of the task, use the Get-AzureStorSimpleTask cmdlet.</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>Example 2: Modify online value and type</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Set-AzureStorSimpleDeviceVolume -DeviceName "Contoso63-AppVm" -VolumeName "Volume18" -Online $True -VolumeAppType ArchiveVolume +</dev:code><dev:remarks><maml:para>This command updates the volume named Volume18 to have an online value of $False. This command starts the task, and then returns a TaskResponse object. To see the status of the task, use the Get-AzureStorSimpleTask cmdlet.</maml:para><maml:para /><maml:para /></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>Example 2: Modify online value and type</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Set-AzureStorSimpleDeviceVolume -DeviceName "Contoso63-AppVm" -VolumeName "Volume18" -Online $True -VolumeAppType ArchiveVolume VERBOSE: ClientRequestId: af42b02a-645e-4801-a2d7-4197511c68cf_PS VERBOSE: ClientRequestId: 7cb4f3b4-548e-42dc-a38c-0df0911c5206_PS VERBOSE: ClientRequestId: 7cc706ad-a58f-4939-8e78-cabae8379a51_PS @@ -1134,7 +1230,7 @@ VERBOSE: ClientRequestId: 6bed21d5-12fc-4a12-a89c-120bdb5636b1_PS aa977225-af78-4c93-b754-72704afc928f VERBOSE: The update task is submitted successfully. Please use the command Get-AzureStorSimpleTask -InstanceId aa977225-af78-4c93-b754-72704afc928f for tracking the task's status -</dev:code><dev:remarks><maml:para>This command updates the volume named Volume18. It modifies the type and changes the value of the Online parameter to $True. </maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example></command:examples><maml:relatedLinks><maml:navigationLink><maml:linkText>Get-AzureStorSimpleDeviceVolume</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>New-AzureStorSimpleDeviceVolume</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>Remove-AzureStorSimpleDeviceVolume</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>Get-AzureStorSimpleAccessControlRecord</maml:linkText><maml:uri /></maml:navigationLink></maml:relatedLinks></command:command><command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><command:details><command:name>Set-AzureStorSimpleStorageAccountCredential</command:name><maml:description><maml:para>Updates an Azure storage access credential. </maml:para></maml:description><maml:copyright><maml:para /></maml:copyright><command:verb>Set</command:verb><command:noun>AzureStorSimpleStorageAccountCredential</command:noun><dev:version /></command:details><maml:description><maml:para>The Set-AzureStorSimpleStorageAccountCredential cmdlet update an existing Azure storage access credential for use by StorSimple OneSDK cmdlets. For more information about how StorSimple cmdlets work with storage accounts, see the help topic for the New-AzureStorSimpleStorageAccountCredential cmdlet. </maml:para></maml:description><command:syntax><command:syntaxItem><maml:name>Set-AzureStorSimpleStorageAccountCredential</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="Name"><maml:name>StorageAccountName</maml:name><maml:description><maml:para>Specifies the name of an existing storage account. </maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="Key"><maml:name>StorageAccountKey</maml:name><maml:description><maml:para>Specifies the access key of the storage account in plain text. </maml:para></maml:description><command:parameterValue required="false" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>UseSSL</maml:name><maml:description><maml:para>Indicates whether to use SSL for the connection when using the new storage account credential.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">Boolean</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="4" aliases="none"><maml:name>WaitForComplete</maml:name><maml:description><maml:para>Indicates that this cmdlet waits for the operation to complete before it returns control to the Windows PowerShell® console.</maml:para></maml:description></command:parameter></command:syntaxItem></command:syntax><command:parameters><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="Key"><maml:name>StorageAccountKey</maml:name><maml:description><maml:para>Specifies the access key of the storage account in plain text. </maml:para></maml:description><command:parameterValue required="false" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="Name"><maml:name>StorageAccountName</maml:name><maml:description><maml:para>Specifies the name of an existing storage account. </maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>UseSSL</maml:name><maml:description><maml:para>Indicates whether to use SSL for the connection when using the new storage account credential.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">Boolean</command:parameterValue><dev:type><maml:name>Boolean</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="4" aliases="none"><maml:name>WaitForComplete</maml:name><maml:description><maml:para>Indicates that this cmdlet waits for the operation to complete before it returns control to the Windows PowerShell® console.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter></command:parameters><command:inputTypes><command:inputType><dev:type><maml:name>None</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para></maml:para></maml:description></command:inputType></command:inputTypes><command:returnValues><command:returnValue><dev:type><maml:name>StorageAccountCredentialResponse, TaskResponse</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para>This cmdlet returns a StorageAccountCredentialResponse object, if you specify the WaitForComplete parameter. If you do not specify that parameter, the cmdlet returns a TaskResponse object. A StorageAccountCredentialResponse contains the following properties: +</dev:code><dev:remarks><maml:para>This command updates the volume named Volume18. It modifies the type and changes the value of the Online parameter to $True. </maml:para><maml:para /><maml:para /></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example></command:examples><maml:relatedLinks><maml:navigationLink><maml:linkText>Get-AzureStorSimpleDeviceVolume</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>New-AzureStorSimpleDeviceVolume</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>Remove-AzureStorSimpleDeviceVolume</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>Get-AzureStorSimpleAccessControlRecord</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>Get-AzureStorSimpleJob</maml:linkText><maml:uri /></maml:navigationLink></maml:relatedLinks></command:command><command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><command:details><command:name>Set-AzureStorSimpleStorageAccountCredential</command:name><maml:description><maml:para>Updates an Azure storage access credential. </maml:para></maml:description><maml:copyright><maml:para /></maml:copyright><command:verb>Set</command:verb><command:noun>AzureStorSimpleStorageAccountCredential</command:noun><dev:version /></command:details><maml:description><maml:para>The Set-AzureStorSimpleStorageAccountCredential cmdlet update an existing Azure storage access credential for use by StorSimple OneSDK cmdlets. For more information about how StorSimple cmdlets work with storage accounts, see the help topic for the New-AzureStorSimpleStorageAccountCredential cmdlet. </maml:para></maml:description><command:syntax><command:syntaxItem><maml:name>Set-AzureStorSimpleStorageAccountCredential</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="Name"><maml:name>StorageAccountName</maml:name><maml:description><maml:para>Specifies the name of an existing storage account. </maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="Key"><maml:name>StorageAccountKey</maml:name><maml:description><maml:para>Specifies the access key of the storage account in plain text. </maml:para></maml:description><command:parameterValue required="false" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>UseSSL</maml:name><maml:description><maml:para>Indicates whether to use SSL for the connection when using the new storage account credential.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">Boolean</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="4" aliases="none"><maml:name>WaitForComplete</maml:name><maml:description><maml:para>Indicates that this cmdlet waits for the operation to complete before it returns control to the Windows PowerShell® console.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">Microsoft.Azure.Common.Authentication.Models.AzureProfile</command:parameterValue></command:parameter></command:syntaxItem></command:syntax><command:parameters><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">Microsoft.Azure.Common.Authentication.Models.AzureProfile</command:parameterValue><dev:type><maml:name>Microsoft.Azure.Common.Authentication.Models.AzureProfile</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="Key"><maml:name>StorageAccountKey</maml:name><maml:description><maml:para>Specifies the access key of the storage account in plain text. </maml:para></maml:description><command:parameterValue required="false" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="Name"><maml:name>StorageAccountName</maml:name><maml:description><maml:para>Specifies the name of an existing storage account. </maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>UseSSL</maml:name><maml:description><maml:para>Indicates whether to use SSL for the connection when using the new storage account credential.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">Boolean</command:parameterValue><dev:type><maml:name>Boolean</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="4" aliases="none"><maml:name>WaitForComplete</maml:name><maml:description><maml:para>Indicates that this cmdlet waits for the operation to complete before it returns control to the Windows PowerShell® console.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter></command:parameters><command:inputTypes><command:inputType><dev:type><maml:name>None</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para></maml:para></maml:description></command:inputType></command:inputTypes><command:returnValues><command:returnValue><dev:type><maml:name>StorageAccountCredentialResponse, TaskResponse</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para>This cmdlet returns a StorageAccountCredentialResponse object, if you specify the WaitForComplete parameter. If you do not specify that parameter, the cmdlet returns a TaskResponse object. A StorageAccountCredentialResponse contains the following properties: -- CloudType (CloudType) -- Hostname (String) @@ -1182,7 +1278,101 @@ Password : UUejow8u6ZynMm18g59883FBVtlIX6PWh6x+v15cnnkHK PasswordEncryptionCertThumbprint : UseSSL : False VolumeCount : 0 -</dev:code><dev:remarks><maml:para>This command changes the storage account credential named ContosoStorage01 to no longer require SSL. </maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example></command:examples><maml:relatedLinks><maml:navigationLink><maml:linkText>Get-AzureStorSimpleStorageAccountCredential</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>New-AzureStorSimpleStorageAccountCredential</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>Remove-AzureStorSimpleStorageAccountCredential</maml:linkText><maml:uri /></maml:navigationLink></maml:relatedLinks></command:command><command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><command:details><command:name>Start-AzureStorSimpleDeviceBackupJob</command:name><maml:description><maml:para>Starts a new job that creates a backup from an existing backup policy.</maml:para></maml:description><maml:copyright><maml:para /></maml:copyright><command:verb>Start</command:verb><command:noun>AzureStorSimpleDeviceBackupJob</command:noun><dev:version /></command:details><maml:description><maml:para>The Start-AzureStorSimpleDeviceBackupJob cmdlet starts a new job that creates a backup from an existing backup policy on a StorSimple device. By default, this cmdlet creates a local snapshot backup. To create a cloud backup, specify a value of CloudSnapshot for the BackupType parameter.</maml:para></maml:description><command:syntax><command:syntaxItem><maml:name>Start-AzureStorSimpleDeviceBackupJob</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>DeviceName</maml:name><maml:description><maml:para>Specifies the name of the StorSimple device on which to start the backup job. </maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="none"><maml:name>BackupPolicyId</maml:name><maml:description><maml:para>Specifies the ID of the backup policy to use to create the backup.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="4" aliases="none"><maml:name>WaitForComplete</maml:name><maml:description><maml:para>Indicates that this cmdlet waits for the operation to complete before it returns control to the Windows PowerShell® console.</maml:para></maml:description></command:parameter></command:syntaxItem><command:syntaxItem><maml:name>Start-AzureStorSimpleDeviceBackupJob</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>DeviceName</maml:name><maml:description><maml:para>Specifies the name of the StorSimple device on which to start the backup job. </maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="none"><maml:name>BackupPolicyId</maml:name><maml:description><maml:para>Specifies the ID of the backup policy to use to create the backup.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>BackupType</maml:name><maml:description><maml:para>Specifies the backup type. Valid values are: LocalSnapshot and CloudSnapshot.</maml:para></maml:description><command:parameterValueGroup><command:parameterValue required="true" variableLength="false">LocalSnapshot</command:parameterValue><command:parameterValue required="true" variableLength="false">CloudSnapshot</command:parameterValue></command:parameterValueGroup></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="4" aliases="none"><maml:name>WaitForComplete</maml:name><maml:description><maml:para>Indicates that this cmdlet waits for the operation to complete before it returns control to the Windows PowerShell® console.</maml:para></maml:description></command:parameter></command:syntaxItem></command:syntax><command:parameters><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="none"><maml:name>BackupPolicyId</maml:name><maml:description><maml:para>Specifies the ID of the backup policy to use to create the backup.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>BackupType</maml:name><maml:description><maml:para>Specifies the backup type. Valid values are: LocalSnapshot and CloudSnapshot.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>DeviceName</maml:name><maml:description><maml:para>Specifies the name of the StorSimple device on which to start the backup job. </maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="4" aliases="none"><maml:name>WaitForComplete</maml:name><maml:description><maml:para>Indicates that this cmdlet waits for the operation to complete before it returns control to the Windows PowerShell® console.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter></command:parameters><command:inputTypes><command:inputType><dev:type><maml:name>None</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para></maml:para></maml:description></command:inputType></command:inputTypes><command:returnValues><command:returnValue><dev:type><maml:name>TaskStatusInfo, TaskResponse</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para>This cmdlet returns a TaskStatusInfo object if you specify the WaitForComplete parameter. If you do not specify that parameter, it returns a TaskResponse object.</maml:para></maml:description></command:returnValue></command:returnValues><command:terminatingErrors /><command:nonTerminatingErrors /><command:examples><command:example><maml:title>Example 1: Create a local snapshot backup</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Start-AzureStorSimpleDeviceBackupJob -DeviceName "Contoso63-AppVm" -BackupPolicyId "de088eac-b283-4d92-b501-a759845fdf3f" +</dev:code><dev:remarks><maml:para>This command changes the storage account credential named ContosoStorage01 to no longer require SSL. </maml:para><maml:para /><maml:para /></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example></command:examples><maml:relatedLinks><maml:navigationLink><maml:linkText>Get-AzureStorSimpleStorageAccountCredential</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>New-AzureStorSimpleStorageAccountCredential</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>Remove-AzureStorSimpleStorageAccountCredential</maml:linkText><maml:uri /></maml:navigationLink></maml:relatedLinks></command:command><command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><command:details><command:name>Set-AzureStorSimpleVirtualDevice</command:name><maml:description><maml:para>Creates or updates the device configuration of a StorSimple virtual device.</maml:para></maml:description><maml:copyright><maml:para /></maml:copyright><command:verb>Set</command:verb><command:noun>AzureStorSimpleVirtualDevice</command:noun><dev:version /></command:details><maml:description><maml:para>The Set-AzureStorSimpleVirtualDevice cmdlet creates or updates the device configuration of an Azure StorSimple virtual device.</maml:para></maml:description><command:syntax><command:syntaxItem><maml:name>Set-AzureStorSimpleVirtualDevice</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>DeviceName</maml:name><maml:description><maml:para>Specifies the name of the virtual device to configure.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="none"><maml:name>SecretKey</maml:name><maml:description><maml:para>Specifies a service encryption key for the virtual device. This key is generated when the first physical device is registered with a resource.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>AdministratorPassword</maml:name><maml:description><maml:para>Specifies the administrator password of the virtual device to configure.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">System.String</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="4" aliases="none"><maml:name>SnapshotManagerPassword</maml:name><maml:description><maml:para>Specifies the snapshot manager password.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">System.String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true(ByValue)" position="5" aliases="none"><maml:name>TimeZone</maml:name><maml:description><maml:para>Specifies a time zone for the device. You can create a TimeZoneInfo object by using the GetSystemTimeZone() method. For example, this command creates a time zone information object for Pacific Standard Time: [System.TimeZoneInfo]::GetSystemTimeZones() | where { $_.Id -eq "Pacific Standard Time" }</maml:para></maml:description><command:parameterValue required="false" variableLength="false">TimeZoneInfo</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">AzureProfile</command:parameterValue></command:parameter></command:syntaxItem></command:syntax><command:parameters><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>AdministratorPassword</maml:name><maml:description><maml:para>Specifies the administrator password of the virtual device to configure.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">System.String</command:parameterValue><dev:type><maml:name>System.String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>DeviceName</maml:name><maml:description><maml:para>Specifies the name of the virtual device to configure.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">AzureProfile</command:parameterValue><dev:type><maml:name>AzureProfile</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="none"><maml:name>SecretKey</maml:name><maml:description><maml:para>Specifies a service encryption key for the virtual device. This key is generated when the first physical device is registered with a resource.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="4" aliases="none"><maml:name>SnapshotManagerPassword</maml:name><maml:description><maml:para>Specifies the snapshot manager password.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">System.String</command:parameterValue><dev:type><maml:name>System.String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true(ByValue)" position="5" aliases="none"><maml:name>TimeZone</maml:name><maml:description><maml:para>Specifies a time zone for the device. You can create a TimeZoneInfo object by using the GetSystemTimeZone() method. For example, this command creates a time zone information object for Pacific Standard Time: [System.TimeZoneInfo]::GetSystemTimeZones() | where { $_.Id -eq "Pacific Standard Time" }</maml:para></maml:description><command:parameterValue required="false" variableLength="false">TimeZoneInfo</command:parameterValue><dev:type><maml:name>TimeZoneInfo</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter></command:parameters><command:inputTypes><command:inputType><dev:type><maml:name>TimeZoneInfo</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para>You can pipe a TimeZoneInfo object to this cmdlet.</maml:para></maml:description></command:inputType></command:inputTypes><command:returnValues><command:returnValue><dev:type><maml:name>DeviceJobDetails</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para>This cmdlet returns updated device details for the virtual device.</maml:para></maml:description></command:returnValue></command:returnValues><command:terminatingErrors /><command:nonTerminatingErrors /><command:examples><command:example><maml:title>Example 1: Update a virtual device</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;$TimeZoneInfo = [System.TimeZoneInfo]::GetSystemTimeZones() | where { $_.Id -eq "Pacific Standard Time" } +PS C:\&gt; Set-AzureStorSimpleVirtualDevice -DeviceName "Contoso23" -SecretKey "wcZBlBGpCMf4USdSKyt/SQ==" -TimeZone $TimeZoneInfo +VERBOSE: ClientRequestId: e31f0d6b-451d-4c1d-b2f1-3fc84c13972c_PS +VERBOSE: ClientRequestId: df58db83-d563-4a2e-bbb4-9576f0e69ca6_PS +VERBOSE: ClientRequestId: 494a9f0d-79ee-4fde-ab4d-85ee5a357556_PS +VERBOSE: ClientRequestId: ce557cbf-174d-4301-93d4-5ffe082c8413_PS +VERBOSE: ClientRequestId: 31284dad-de2c-4758-a2ef-45962875bfa6_PS +VERBOSE: About to configure the device : win-ff93i74m1e1 ! +VERBOSE: ClientRequestId: d9c66302-45d8-488a-adda-8ccf957f77d3_PS + + +TaskId : 21f530c3-bc47-4591-8c4e-da4d694b751d +TaskResult : Succeeded +TaskStatus : Completed +ErrorCode : +ErrorMessage : +TaskSteps : {Microsoft.WindowsAzure.Management.StorSimple.Models.TaskStep, Microsoft.WindowsAzure.Management.StorSimple.Models.TaskStep} + +VERBOSE: The task created for your Setup operation has completed successfully. +VERBOSE: ClientRequestId: a94f972c-18ea-40b6-9401-2ad209c0c8b4_PS +AlertNotification : Microsoft.WindowsAzure.Management.StorSimple.Models.AlertNotificationSettings +Chap : Microsoft.WindowsAzure.Management.StorSimple.Models.ChapSettings +DeviceProperties : Microsoft.WindowsAzure.Management.StorSimple.Models.DeviceInfo +DnsServer : Microsoft.WindowsAzure.Management.StorSimple.Models.DnsServerSettings +InstanceId : d369ebb4-8b9a-47fc-9a6b-60f371e123ae +Name : +NetInterfaceList : {} +OperationInProgress : None +RemoteMgmtSettingsInfo : Microsoft.WindowsAzure.Management.StorSimple.Models.RemoteManagementSettings +RemoteMinishellSecretInfo : Microsoft.WindowsAzure.Management.StorSimple.Models.RemoteMinishellSettings +SecretEncryptionCertThumbprint : +Snapshot : Microsoft.WindowsAzure.Management.StorSimple.Models.SnapshotSettings +TimeServer : Microsoft.WindowsAzure.Management.StorSimple.Models.TimeSettings +Type : VirtualAppliance +VirtualApplianceProperties : Microsoft.WindowsAzure.Management.StorSimple.Models.VirtualApplianceInfo +WebProxy : Microsoft.WindowsAzure.Management.StorSimple.Models.WebProxySettings + +VERBOSE: Successfully updated configuration for device Contoso23 with id d369ebb4-8b9a-47fc-9a6b-60f371e123ae +</dev:code><dev:remarks><maml:para>The first command uses the System.TimeZoneInfo .NET class and standard syntax to get Pacific Standard Time zone, and stores that object in the $TimeZoneInfo variable. </maml:para><maml:para>The second command updates the device named Contoso23 to use the time zone specified in $TimeZoneInfo. The command requires the secret key to access the virtual device configuration.</maml:para><maml:para /><maml:para /></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>Example 2: Update a virtual device by using the pipeline operator</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt; [System.TimeZoneInfo]::GetSystemTimeZones() | where { $_.Id -eq "Pacific Standard Time" } | Set-AzureStorSimpleVirtualDevice -DeviceName "Contoso23" -SecretKey "wcZBlBGpCMf4USdSKyt/SQ==" + +</dev:code><dev:remarks><maml:para>This command updates the device named Contoso23 to use the time zone that the command creates. The command requires the secret key to access the virtual device configuration. This command works the same way as the previous example, except that it passes the time zone to the current cmdlet by using the pipeline operator. </maml:para><maml:para /><maml:para /></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example></command:examples><maml:relatedLinks><maml:navigationLink><maml:linkText>New-AzureStorSimpleVirtualDevice</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>Set-AzureStorSimpleDevice</maml:linkText><maml:uri /></maml:navigationLink></maml:relatedLinks></command:command><command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><command:details><command:name>Start-AzureStorSimpleBackupCloneJob</command:name><maml:description><maml:para>Starts a job that clones a backup on a device.</maml:para></maml:description><maml:copyright><maml:para /></maml:copyright><command:verb>Start</command:verb><command:noun>AzureStorSimpleBackupCloneJob</command:noun><dev:version /></command:details><maml:description><maml:para>The Start-AzureStorSimpleBackupCloneJob cmdlet starts a job that clones an existing backup on a StorSimple device. </maml:para></maml:description><command:syntax><command:syntaxItem><maml:name>Start-AzureStorSimpleBackupCloneJob</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>BackupId</maml:name><maml:description><maml:para>Specifies the instance ID of the backup to clone. </maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue)" position="4" aliases="none"><maml:name>Snapshot</maml:name><maml:description><maml:para>Specifies the snapshot object that this cmdlet clones.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Snapshot</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="5" aliases="none"><maml:name>CloneVolumeName</maml:name><maml:description><maml:para>Specifies the name for the new cloned volume on the target device.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByValue)" position="6" aliases="none"><maml:name>TargetAccessControlRecords</maml:name><maml:description><maml:para>Specifies the access control records.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">0, Culture=neutral, PublicKeyToken=null</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="7" aliases="none"><maml:name>Force</maml:name><maml:description><maml:para>Forces the command to run without asking for user confirmation.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">AzureProfile</command:parameterValue></command:parameter></command:syntaxItem><command:syntaxItem><maml:name>Start-AzureStorSimpleBackupCloneJob</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>SourceDeviceName</maml:name><maml:description><maml:para>Specifies the name of the source device. This cmdlet clones the back from the source device.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="none"><maml:name>TargetDeviceName</maml:name><maml:description><maml:para>Specifies the name of the device to which this cmdlet clones the backup. </maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>BackupId</maml:name><maml:description><maml:para>Specifies the instance ID of the backup to clone. </maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true(ByValue)" position="4" aliases="none"><maml:name>Snapshot</maml:name><maml:description><maml:para>Specifies the snapshot object that this cmdlet clones.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Snapshot</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="5" aliases="none"><maml:name>CloneVolumeName</maml:name><maml:description><maml:para>Specifies the name for the new cloned volume on the target device.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true(ByValue)" position="6" aliases="none"><maml:name>TargetAccessControlRecords</maml:name><maml:description><maml:para>Specifies the access control records.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">0, Culture=neutral, PublicKeyToken=null</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="7" aliases="none"><maml:name>Force</maml:name><maml:description><maml:para>Forces the command to run without asking for user confirmation.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">AzureProfile</command:parameterValue></command:parameter></command:syntaxItem><command:syntaxItem><maml:name>Start-AzureStorSimpleBackupCloneJob</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>SourceDeviceId</maml:name><maml:description><maml:para>Specifies the instance ID of the source device. This cmdlet clones the back from the source device.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="none"><maml:name>TargetDeviceId</maml:name><maml:description><maml:para>Specifies the instance ID of the target device.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>BackupId</maml:name><maml:description><maml:para>Specifies the instance ID of the backup to clone. </maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true(ByValue)" position="4" aliases="none"><maml:name>Snapshot</maml:name><maml:description><maml:para>Specifies the snapshot object that this cmdlet clones.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Snapshot</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="5" aliases="none"><maml:name>CloneVolumeName</maml:name><maml:description><maml:para>Specifies the name for the new cloned volume on the target device.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true(ByValue)" position="6" aliases="none"><maml:name>TargetAccessControlRecords</maml:name><maml:description><maml:para>Specifies the access control records.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">0, Culture=neutral, PublicKeyToken=null</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="7" aliases="none"><maml:name>Force</maml:name><maml:description><maml:para>Forces the command to run without asking for user confirmation.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">AzureProfile</command:parameterValue></command:parameter></command:syntaxItem></command:syntax><command:parameters><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>BackupId</maml:name><maml:description><maml:para>Specifies the instance ID of the backup to clone. </maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="5" aliases="none"><maml:name>CloneVolumeName</maml:name><maml:description><maml:para>Specifies the name for the new cloned volume on the target device.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="7" aliases="none"><maml:name>Force</maml:name><maml:description><maml:para>Forces the command to run without asking for user confirmation.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">AzureProfile</command:parameterValue><dev:type><maml:name>AzureProfile</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue)" position="4" aliases="none"><maml:name>Snapshot</maml:name><maml:description><maml:para>Specifies the snapshot object that this cmdlet clones.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">Snapshot</command:parameterValue><dev:type><maml:name>Snapshot</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>SourceDeviceId</maml:name><maml:description><maml:para>Specifies the instance ID of the source device. This cmdlet clones the back from the source device.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>SourceDeviceName</maml:name><maml:description><maml:para>Specifies the name of the source device. This cmdlet clones the back from the source device.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByValue)" position="6" aliases="none"><maml:name>TargetAccessControlRecords</maml:name><maml:description><maml:para>Specifies the access control records.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">0, Culture=neutral, PublicKeyToken=null</command:parameterValue><dev:type><maml:name>0, Culture=neutral, PublicKeyToken=null</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="none"><maml:name>TargetDeviceId</maml:name><maml:description><maml:para>Specifies the instance ID of the target device.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="none"><maml:name>TargetDeviceName</maml:name><maml:description><maml:para>Specifies the name of the device to which this cmdlet clones the backup. </maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter></command:parameters><command:inputTypes><command:inputType><dev:type><maml:name>Snapshot, List of AccessControlRecord</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para>You can pipe Snapshot objects or a list of AccessControlRecord objects to this cmdlet. </maml:para></maml:description></command:inputType></command:inputTypes><command:returnValues><command:returnValue><dev:type><maml:name></maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para></maml:para></maml:description></command:returnValue></command:returnValues><command:terminatingErrors /><command:nonTerminatingErrors /><command:examples><command:example><maml:title>Example 1: Clone a backup to a different volume by using device names</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;$Backup = Get-AzureStorSimpleDeviceBackup -DeviceName "ContosoDev07" -First 1 +PS C:\&gt; $Acrs = Get-AzureStorSimpleAccessControlRecord -ACRName "Acr01" +PS C:\&gt; Start-AzureStorSimpleBackupCloneJob -SourceDeviceName "ContosoDev07 -TargetDeviceName "ContosoDev07" -BackupId $Backup.InstanceId -Snapshot $Backup.Snapshots[0] -CloneVolumeName "cloned_volume11" -TargetAccessControlRecords $Acrs +VERBOSE: ClientRequestId: 43d8b4dc-39da-4ec5-92f6-be1f499155e9_PS +VERBOSE: ClientRequestId: be7a73a7-980c-4ba2-82d4-f6a7ee0eac0a_PS +VERBOSE: ClientRequestId: ee02aaae-d366-43d2-a229-8761d6db39f1_PS + +Confirm +Are you sure you want to clone the backup with backupId fca748a0-4154-49e0-9550-07fa481cbd2d? +[Y] Yes [N] No [S] Suspend [?] Help (default is "Y"): Y +VERBOSE: ClientRequestId: 9b81d9f9-3e31-49be-a8cd-1b1c6afdb744_PS +bd05baee-36d0-48f4-8b1e-8119c4133446 +VERBOSE: The start job is triggered successfully. Please use the command Get-AzureStorSimpleJob -InstanceId bd05baee-36d0-48f4-8b1e-8119c4133446 for tracking the job's status +</dev:code><dev:remarks><maml:para>The first command gets the first backup for the device named ContosoDev07 by using the Get-AzureStorSimpleDeviceBackup cmdlet. The command stores that backup in the $Backup variable. </maml:para><maml:para>The second command gets access control records by using the Get-AzureStorSimpleAccessControlRecord cmdlet. The command stores the result in the $Acrs variable. </maml:para><maml:para>The final command begins a job that clones a specified backup of a volume on a device to a different volume on the same device. This example specifies the device by name. The command uses the values stored in $Backup and $Acrs. The command returns the ID of the job. </maml:para><maml:para /><maml:para /></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>Example 2: Clone a backup to a different volume by using device IDs</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;$Backup = Get-AzureStorSimpleDeviceBackup -DeviceName ContosoDev07 -First 1 +PS C:\&gt; $Acrs = Get-AzureStorSimpleAccessControlRecord -ACRName "Acr01" +PS C:\&gt; Start-AzureStorSimpleBackupCloneJob -SourceDeviceId "be7a73a7-980c-4ba2-82d4-f6a7ee0eacbb" -TargetDeviceId "be7a73a7-980c-4ba2-82d4-f6a7ee0eacbb" -BackupId $Backup.InstanceId -Snapshot $Backup.Snapshots[0] -CloneVolumeName "cloned_volume11" -TargetAccessControlRecords $Acrs +VERBOSE: ClientRequestId: 43d8b4dc-39da-4ec5-92f6-be1f499155e9_PS +VERBOSE: ClientRequestId: be7a73a7-980c-4ba2-82d4-f6a7ee0eac0a_PS +VERBOSE: ClientRequestId: ee02aaae-d366-43d2-a229-8761d6db39f1_PS + +Confirm +Are you sure you want to clone the backup with backupId fca748a0-4154-49e0-9550-07fa481cbd2d? +[Y] Yes [N] No [S] Suspend [?] Help (default is "Y"): Y +VERBOSE: ClientRequestId: 9b81d9f9-3e31-49be-a8cd-1b1c6afdb744_PS +bd05baee-36d0-48f4-8b1e-8119c4133446 +VERBOSE: The start job is triggered successfully. Please use the command Get-AzureStorSimpleJob -InstanceId bd05baee-36d0-48f4-8b1e-8119c4133446 for tracking the job's status +</dev:code><dev:remarks><maml:para>The first command gets the first backup for the device named ContosoDev07 by using the Get-AzureStorSimpleDeviceBackup cmdlet. The command stores that backup in the $Backup variable. </maml:para><maml:para>The second command gets access control records by using the Get-AzureStorSimpleAccessControlRecord cmdlet. The command stores the result in the $Acrs variable. </maml:para><maml:para>The final command begins a job that clones a specified backup of a volume on a device to a different volume on the same device. This example specifies the device by device ID. The command uses the values stored in $Backup and $Acrs. The command returns the ID of the job. </maml:para><maml:para /><maml:para /></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>Example 3: Clone a backup to a volume on a different device by using device names</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;$Backup = Get-AzureStorSimpleDeviceBackup -DeviceName "ContosoDev07" -First 1 +PS C:\&gt; $Acrs = Get-AzureStorSimpleAccessControlRecord -ACRName "Acr01" +PS C:\&gt; Start-AzureStorSimpleBackupCloneJob -SourceDeviceName "ContosoDev07" -TargetDeviceName "ContosoDev12" -BackupId $Backup.InstanceId -Snapshot $Backup.Snapshots[0] -CloneVolumeName "cloned_volume11" -TargetAccessControlRecords $Acrs +VERBOSE: ClientRequestId: 43d8b4dc-39da-4ec5-92f6-be1f499155e9_PS +VERBOSE: ClientRequestId: be7a73a7-980c-4ba2-82d4-f6a7ee0eac0a_PS +VERBOSE: ClientRequestId: ee02aaae-d366-43d2-a229-8761d6db39f1_PS + +Confirm +Are you sure you want to clone the backup with backupId fca748a0-4154-49e0-9550-07fa481cbd2d? +[Y] Yes [N] No [S] Suspend [?] Help (default is "Y"): Y +VERBOSE: ClientRequestId: 9b81d9f9-3e31-49be-a8cd-1b1c6afdb744_PS +bd05baee-36d0-48f4-8b1e-8119c4133446 +VERBOSE: The start job is triggered successfully. Please use the command Get-AzureStorSimpleJob -InstanceId bd05baee-36d0-48f4-8b1e-8119c4133446 for tracking the job's status +</dev:code><dev:remarks><maml:para>The first command gets the first backup for the device named ContosoDev07 by using the Get-AzureStorSimpleDeviceBackup cmdlet. The command stores that backup in the $Backup variable. </maml:para><maml:para>The second command gets access control records by using the Get-AzureStorSimpleAccessControlRecord cmdlet. The command stores the result in the $Acrs variable. </maml:para><maml:para>The final command begins a job that clones a specified backup of a volume on a device to a volume on a different device. This example specifies the devices by name. The command uses the values stored in $Backup and $Acrs. The command returns the ID of the job. </maml:para><maml:para /><maml:para /></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>Example 4: Clone a backup to a different volume by using device names and the pipeline operator</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;$Backup = Get-AzureStorSimpleDeviceBackup -DeviceName ContosoDev1 -First 1 +PS C:\&gt; Get-AzureStorSimpleAccessControlRecord -ACRName acr1 | Start-AzureStorSimpleBackupCloneJob -SourceDeviceName ContosoDev1 -TargetDeviceName ContosoDev1 -BackupId $backup.InstanceId -Snapshot $backup.Snapshots[0] -CloneVolumeName "cloned_vol1" +VERBOSE: ClientRequestId: 1183a29d-63a9-408a-9065-032c92d317ee_PS +VERBOSE: ClientRequestId: e195717c-5920-4133-bdf0-c1201ebabf6f_PS +VERBOSE: ClientRequestId: ac16644d-bfd8-4edf-b1ad-f5df4ceb4df7_PS +VERBOSE: ClientRequestId: dcdcab7f-2aaa-496d-8a18-2e7449a70227_PS +VERBOSE: ClientRequestId: 6f92e422-eda9-4087-aefb-2257a49f5beb_PS + +Confirm +Are you sure you want to clone the backup with backupId fca748a0-4154-49e0-9550-07fa481cbd2d? +[Y] Yes [N] No [S] Suspend [?] Help (default is "Y"): Y +VERBOSE: ClientRequestId: 646b280c-b51c-4812-b5c5-b7ca215f1c90_PS +a747d2dc-2876-474e-aea6-6546b255427e +VERBOSE: The start job is triggered successfully. Please use the command Get-AzureStorSimpleJob -InstanceId a747d2dc-2876-474e-aea6-6546b255427e for tracking the job's status +VERBOSE: Access Control Record with given name acr11 is found! +</dev:code><dev:remarks><maml:para>The first command gets the first backup for the device named ContosoDev07 by using the Get-AzureStorSimpleDeviceBackup cmdlet. The command stores that backup in the $Backup variable. </maml:para><maml:para>The second command gets access control records by using the Get-AzureStorSimpleAccessControlRecord cmdlet. The command passes its results to the current cmdlet by using the pipeline operator. The current cmdlet begins a job that clones a specified backup of a volume on a device, to a different volume on the same device. This example specifies the device by name. The command uses the value stored in $Backup. The command takes the value of the TargetAccessControlRecords parameter from the pipeline. The command returns the ID of the job. </maml:para><maml:para /><maml:para /></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example></command:examples><maml:relatedLinks><maml:navigationLink><maml:linkText>Get-AzureStorSimpleDeviceBackup</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>Get-AzureStorSimpleAccessControlRecord</maml:linkText><maml:uri /></maml:navigationLink></maml:relatedLinks></command:command><command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><command:details><command:name>Start-AzureStorSimpleDeviceBackupJob</command:name><maml:description><maml:para>Starts a new job that creates a backup from an existing backup policy.</maml:para></maml:description><maml:copyright><maml:para /></maml:copyright><command:verb>Start</command:verb><command:noun>AzureStorSimpleDeviceBackupJob</command:noun><dev:version /></command:details><maml:description><maml:para>The Start-AzureStorSimpleDeviceBackupJob cmdlet starts a new job that creates a backup from an existing backup policy on a StorSimple device. By default, this cmdlet creates a local snapshot backup. To create a cloud backup, specify a value of CloudSnapshot for the BackupType parameter.</maml:para></maml:description><command:syntax><command:syntaxItem><maml:name>Start-AzureStorSimpleDeviceBackupJob</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>DeviceName</maml:name><maml:description><maml:para>Specifies the name of the StorSimple device on which to start the backup job. </maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="none"><maml:name>BackupPolicyId</maml:name><maml:description><maml:para>Specifies the ID of the backup policy to use to create the backup.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="4" aliases="none"><maml:name>WaitForComplete</maml:name><maml:description><maml:para>Indicates that this cmdlet waits for the operation to complete before it returns control to the Windows PowerShell® console.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">Microsoft.Azure.Common.Authentication.Models.AzureProfile</command:parameterValue></command:parameter></command:syntaxItem><command:syntaxItem><maml:name>Start-AzureStorSimpleDeviceBackupJob</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>DeviceName</maml:name><maml:description><maml:para>Specifies the name of the StorSimple device on which to start the backup job. </maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="none"><maml:name>BackupPolicyId</maml:name><maml:description><maml:para>Specifies the ID of the backup policy to use to create the backup.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>BackupType</maml:name><maml:description><maml:para>Specifies the backup type. Valid values are: LocalSnapshot and CloudSnapshot.</maml:para></maml:description><command:parameterValueGroup><command:parameterValue required="true" variableLength="false">LocalSnapshot</command:parameterValue><command:parameterValue required="true" variableLength="false">CloudSnapshot</command:parameterValue></command:parameterValueGroup></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="4" aliases="none"><maml:name>WaitForComplete</maml:name><maml:description><maml:para>Indicates that this cmdlet waits for the operation to complete before it returns control to the Windows PowerShell® console.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">Microsoft.Azure.Common.Authentication.Models.AzureProfile</command:parameterValue></command:parameter></command:syntaxItem></command:syntax><command:parameters><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="none"><maml:name>BackupPolicyId</maml:name><maml:description><maml:para>Specifies the ID of the backup policy to use to create the backup.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>BackupType</maml:name><maml:description><maml:para>Specifies the backup type. Valid values are: LocalSnapshot and CloudSnapshot.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>DeviceName</maml:name><maml:description><maml:para>Specifies the name of the StorSimple device on which to start the backup job. </maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">Microsoft.Azure.Common.Authentication.Models.AzureProfile</command:parameterValue><dev:type><maml:name>Microsoft.Azure.Common.Authentication.Models.AzureProfile</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="4" aliases="none"><maml:name>WaitForComplete</maml:name><maml:description><maml:para>Indicates that this cmdlet waits for the operation to complete before it returns control to the Windows PowerShell® console.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter></command:parameters><command:inputTypes><command:inputType><dev:type><maml:name>None</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para></maml:para></maml:description></command:inputType></command:inputTypes><command:returnValues><command:returnValue><dev:type><maml:name>TaskStatusInfo, TaskResponse</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para>This cmdlet returns a TaskStatusInfo object if you specify the WaitForComplete parameter. If you do not specify that parameter, it returns a TaskResponse object.</maml:para></maml:description></command:returnValue></command:returnValues><command:terminatingErrors /><command:nonTerminatingErrors /><command:examples><command:example><maml:title>Example 1: Create a local snapshot backup</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Start-AzureStorSimpleDeviceBackupJob -DeviceName "Contoso63-AppVm" -BackupPolicyId "de088eac-b283-4d92-b501-a759845fdf3f" JobId StatusCode RequestId ----- ---------- --------- fb9acdca-ed6f-4b69-93f2-5c0bce0a1e08 Accepted 456cf6bafd427103b71c07145e26d35c @@ -1190,7 +1380,7 @@ fb9acdca-ed6f-4b69-93f2-5c0bce0a1e08 Accepted VERBOSE: Your backup operation has been submitted for processing. Use commandlet "Get-AzureStorSimpleJob -JobId fb9acdca-ed6f-4b69-93f2-5c0bce0a1e08" to track status. -</dev:code><dev:remarks><maml:para>This command creates a local snapshot backup for the specified policy ID. This command starts the job, and then returns a TaskResponse object. To see the status of the job, use the Get-AzureStorSimpleTask cmdlet.</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>Example 2: Create a cloud snapshot backup and wait to finish</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Start-AzureStorSimpleDeviceBackupJob -DeviceName "Contoso63-AppVm" -BackupPolicyId "de088eac-b283-4d92-b501-a759845fdf3f" -BackupType CloudSnapshot -WaitForComplete +</dev:code><dev:remarks><maml:para>This command creates a local snapshot backup for the specified policy ID. This command starts the job, and then returns a TaskResponse object. To see the status of the job, use the Get-AzureStorSimpleTask cmdlet.</maml:para><maml:para /><maml:para /></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>Example 2: Create a cloud snapshot backup and wait to finish</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Start-AzureStorSimpleDeviceBackupJob -DeviceName "Contoso63-AppVm" -BackupPolicyId "de088eac-b283-4d92-b501-a759845fdf3f" -BackupType CloudSnapshot -WaitForComplete Error : Microsoft.WindowsAzure.Management.StorSimple.Models.ErrorDetails JobId : fb9acdca-ed6f-4b69-93f2-5c0bce0a1e08 JobSteps : {} @@ -1199,7 +1389,7 @@ Status : Completed TaskResult : Succeeded StatusCode : OK RequestId : f28ecf6cf75a7f128ca18e6ae14f9003 -</dev:code><dev:remarks><maml:para>This command creates a cloud snapshot backup for the specified policy ID. This command specifies the WaitForComplete parameter, so the command completes the task, and then returns a TaskStatusInfo object for the job.</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example></command:examples><maml:relatedLinks><maml:navigationLink><maml:linkText>Start-AzureStorSimpleDeviceBackupRestoreJob</maml:linkText><maml:uri /></maml:navigationLink></maml:relatedLinks></command:command><command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><command:details><command:name>Start-AzureStorSimpleDeviceBackupRestoreJob</command:name><maml:description><maml:para>Starts a job that restores a backup on a StorSimple device.</maml:para></maml:description><maml:copyright><maml:para /></maml:copyright><command:verb>Start</command:verb><command:noun>AzureStorSimpleDeviceBackupRestoreJob</command:noun><dev:version /></command:details><maml:description><maml:para>The Start-AzureStorSimpleDeviceBackupRestoreJob cmdlet starts a job that restores a backup on a StorSimple device. Specify a backup ID and an optional snapshot ID.</maml:para></maml:description><command:syntax><command:syntaxItem><maml:name>Start-AzureStorSimpleDeviceBackupRestoreJob</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>DeviceName</maml:name><maml:description><maml:para>Specifies the name of the StorSimple device on which the backup exists.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="none"><maml:name>BackupId</maml:name><maml:description><maml:para>Specifies the instance ID of the backup to restore.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="4" aliases="none"><maml:name>WaitForComplete</maml:name><maml:description><maml:para>Indicates that this cmdlet waits for the operation to complete before it returns control to the Windows PowerShell® console.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="5" aliases="none"><maml:name>Force</maml:name><maml:description><maml:para>Indicates that this cmdlet does not prompt you for confirmation.</maml:para></maml:description></command:parameter></command:syntaxItem><command:syntaxItem><maml:name>Start-AzureStorSimpleDeviceBackupRestoreJob</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>DeviceName</maml:name><maml:description><maml:para>Specifies the name of the StorSimple device on which the backup exists.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="none"><maml:name>BackupId</maml:name><maml:description><maml:para>Specifies the instance ID of the backup to restore.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>SnapshotId</maml:name><maml:description><maml:para>Specifies the instance ID of the snapshot to restore. </maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="4" aliases="none"><maml:name>WaitForComplete</maml:name><maml:description><maml:para>Indicates that this cmdlet waits for the operation to complete before it returns control to the Windows PowerShell® console.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="5" aliases="none"><maml:name>Force</maml:name><maml:description><maml:para>Indicates that this cmdlet does not prompt you for confirmation.</maml:para></maml:description></command:parameter></command:syntaxItem></command:syntax><command:parameters><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="none"><maml:name>BackupId</maml:name><maml:description><maml:para>Specifies the instance ID of the backup to restore.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>DeviceName</maml:name><maml:description><maml:para>Specifies the name of the StorSimple device on which the backup exists.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="5" aliases="none"><maml:name>Force</maml:name><maml:description><maml:para>Indicates that this cmdlet does not prompt you for confirmation.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>SnapshotId</maml:name><maml:description><maml:para>Specifies the instance ID of the snapshot to restore. </maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="4" aliases="none"><maml:name>WaitForComplete</maml:name><maml:description><maml:para>Indicates that this cmdlet waits for the operation to complete before it returns control to the Windows PowerShell® console.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter></command:parameters><command:inputTypes><command:inputType><dev:type><maml:name>None</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para></maml:para></maml:description></command:inputType></command:inputTypes><command:returnValues><command:returnValue><dev:type><maml:name>TaskStatusInfo, TaskResponse</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para>This cmdlet returns a TaskStatusInfo object if you specify the WaitForComplete parameter. If you do not specify that parameter, it returns a TaskResponse object.</maml:para></maml:description></command:returnValue></command:returnValues><command:terminatingErrors /><command:nonTerminatingErrors /><command:examples><command:example><maml:title>Example 1: Start a job to restore a backup</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Start-AzureStorSimpleDeviceBackupRestoreJob -DeviceName "Contoso63-AppVm" -BackupId "b3b50534-763c-4b05-9724-5ecf62bde721" -WaitForComplete +</dev:code><dev:remarks><maml:para>This command creates a cloud snapshot backup for the specified policy ID. This command specifies the WaitForComplete parameter, so the command completes the task, and then returns a TaskStatusInfo object for the job.</maml:para><maml:para /><maml:para /></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example></command:examples><maml:relatedLinks><maml:navigationLink><maml:linkText>Get-AzureStorSimpleJob</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>Start-AzureStorSimpleDeviceBackupRestoreJob</maml:linkText><maml:uri /></maml:navigationLink></maml:relatedLinks></command:command><command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><command:details><command:name>Start-AzureStorSimpleDeviceBackupRestoreJob</command:name><maml:description><maml:para>Starts a job that restores a backup on a StorSimple device.</maml:para></maml:description><maml:copyright><maml:para /></maml:copyright><command:verb>Start</command:verb><command:noun>AzureStorSimpleDeviceBackupRestoreJob</command:noun><dev:version /></command:details><maml:description><maml:para>The Start-AzureStorSimpleDeviceBackupRestoreJob cmdlet starts a job that restores a backup on a StorSimple device. Specify a backup ID and an optional snapshot ID.</maml:para></maml:description><command:syntax><command:syntaxItem><maml:name>Start-AzureStorSimpleDeviceBackupRestoreJob</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>DeviceName</maml:name><maml:description><maml:para>Specifies the name of the StorSimple device on which the backup exists.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="none"><maml:name>BackupId</maml:name><maml:description><maml:para>Specifies the instance ID of the backup to restore.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="4" aliases="none"><maml:name>WaitForComplete</maml:name><maml:description><maml:para>Indicates that this cmdlet waits for the operation to complete before it returns control to the Windows PowerShell® console.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="5" aliases="none"><maml:name>Force</maml:name><maml:description><maml:para>Indicates that this cmdlet does not prompt you for confirmation.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">Microsoft.Azure.Common.Authentication.Models.AzureProfile</command:parameterValue></command:parameter></command:syntaxItem><command:syntaxItem><maml:name>Start-AzureStorSimpleDeviceBackupRestoreJob</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>DeviceName</maml:name><maml:description><maml:para>Specifies the name of the StorSimple device on which the backup exists.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="none"><maml:name>BackupId</maml:name><maml:description><maml:para>Specifies the instance ID of the backup to restore.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>SnapshotId</maml:name><maml:description><maml:para>Specifies the instance ID of the snapshot to restore. </maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="4" aliases="none"><maml:name>WaitForComplete</maml:name><maml:description><maml:para>Indicates that this cmdlet waits for the operation to complete before it returns control to the Windows PowerShell® console.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="5" aliases="none"><maml:name>Force</maml:name><maml:description><maml:para>Indicates that this cmdlet does not prompt you for confirmation.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">Microsoft.Azure.Common.Authentication.Models.AzureProfile</command:parameterValue></command:parameter></command:syntaxItem></command:syntax><command:parameters><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="none"><maml:name>BackupId</maml:name><maml:description><maml:para>Specifies the instance ID of the backup to restore.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>DeviceName</maml:name><maml:description><maml:para>Specifies the name of the StorSimple device on which the backup exists.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="5" aliases="none"><maml:name>Force</maml:name><maml:description><maml:para>Indicates that this cmdlet does not prompt you for confirmation.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">Microsoft.Azure.Common.Authentication.Models.AzureProfile</command:parameterValue><dev:type><maml:name>Microsoft.Azure.Common.Authentication.Models.AzureProfile</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>SnapshotId</maml:name><maml:description><maml:para>Specifies the instance ID of the snapshot to restore. </maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="4" aliases="none"><maml:name>WaitForComplete</maml:name><maml:description><maml:para>Indicates that this cmdlet waits for the operation to complete before it returns control to the Windows PowerShell® console.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter></command:parameters><command:inputTypes><command:inputType><dev:type><maml:name>None</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para></maml:para></maml:description></command:inputType></command:inputTypes><command:returnValues><command:returnValue><dev:type><maml:name>TaskStatusInfo, TaskResponse</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para>This cmdlet returns a TaskStatusInfo object if you specify the WaitForComplete parameter. If you do not specify that parameter, it returns a TaskResponse object.</maml:para></maml:description></command:returnValue></command:returnValues><command:terminatingErrors /><command:nonTerminatingErrors /><command:examples><command:example><maml:title>Example 1: Start a job to restore a backup</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Start-AzureStorSimpleDeviceBackupRestoreJob -DeviceName "Contoso63-AppVm" -BackupId "b3b50534-763c-4b05-9724-5ecf62bde721" -WaitForComplete Confirm Are you sure you want to restore the backup with backupId b3b50534-763c-4b05-9724-5ecf62bde721? [Y] Yes [N] No [S] Suspend [?] Help (default is "Y"): Y @@ -1214,8 +1404,18 @@ TaskResult : Succeeded StatusCode : OK RequestId : e0aa2dcd2f197a8588c40a067fe0e519 -</dev:code><dev:remarks><maml:para>This command starts a job that restores the backup object that has the specified ID, and its associated snapshots, on the device named Contoso63-AppVm. The command specifies the WaitForComplete parameter, so the job finishes before the cmdlet returns control to the console.</maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>Example 2: Start a job to restore a specific snapshot </maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Start-AzureStorSimpleDeviceBackupRestoreJob -DeviceName "Contoso63-AppVm" -BackupId "b3b50534-763c-4b05-9724-5ecf62bde721" -SnapshotId "2d0cfad7-46bf-4266-8859-96549646e947_0000000000000000" -Force +</dev:code><dev:remarks><maml:para>This command starts a job that restores the backup object that has the specified ID, and its associated snapshots, on the device named Contoso63-AppVm. The command specifies the WaitForComplete parameter, so the job finishes before the cmdlet returns control to the console.</maml:para><maml:para /><maml:para /></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>Example 2: Start a job to restore a specific snapshot </maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Start-AzureStorSimpleDeviceBackupRestoreJob -DeviceName "Contoso63-AppVm" -BackupId "b3b50534-763c-4b05-9724-5ecf62bde721" -SnapshotId "2d0cfad7-46bf-4266-8859-96549646e947_0000000000000000" -Force The start job is submitted successfully. Please use the command Get-AzureStorSimpleTask -InstanceId 9102ed9a-078f-4648-a 721-3cffbba31336 for tracking the job status -</dev:code><dev:remarks><maml:para>This command starts a job that restores the backup snapshot that has the specified ID. The command specifies the backup object by ID on the device named Contoso63-AppVm. The command specifies the Force parameter, so it starts the job without prompting you to confirm. </maml:para></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example></command:examples><maml:relatedLinks><maml:navigationLink><maml:linkText>Start-AzureStorSimpleDeviceBackupJob</maml:linkText><maml:uri /></maml:navigationLink></maml:relatedLinks></command:command></helpItems> +</dev:code><dev:remarks><maml:para>This command starts a job that restores the backup snapshot that has the specified ID. The command specifies the backup object by ID on the device named Contoso63-AppVm. The command specifies the Force parameter, so it starts the job without prompting you to confirm. </maml:para><maml:para /><maml:para /></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example></command:examples><maml:relatedLinks><maml:navigationLink><maml:linkText>Get-AzureStorSimpleJob</maml:linkText><maml:uri /></maml:navigationLink><maml:navigationLink><maml:linkText>Start-AzureStorSimpleDeviceBackupJob</maml:linkText><maml:uri /></maml:navigationLink></maml:relatedLinks></command:command><command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><command:details><command:name>Start-AzureStorSimpleDeviceFailoverJob</command:name><maml:description><maml:para>Initiates a failover operation of volume container groups. </maml:para></maml:description><maml:copyright><maml:para /></maml:copyright><command:verb>Start</command:verb><command:noun>AzureStorSimpleDeviceFailoverJob</command:noun><dev:version /></command:details><maml:description><maml:para>The Start-AzureStorSimpleDeviceFailoverJob cmdlet initiates a failover operation of one or more volume container groups from one device to another.</maml:para></maml:description><command:syntax><command:syntaxItem><maml:name>Start-AzureStorSimpleDeviceFailoverJob</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>DeviceId</maml:name><maml:description><maml:para>Specifies the instance ID of the StorSimple device on which the volume container groups exist.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true(ByValue)" position="2" aliases="none"><maml:name>VolumecontainerGroups</maml:name><maml:description><maml:para>Specifies the list of volume container groups that this cmdlet fails over to another device.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">0, Culture=neutral, PublicKeyToken=null</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>TargetDeviceId</maml:name><maml:description><maml:para>Specifies the instance ID of the StorSimple device to which this cmdlet fails over the volume container groups. </maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="4" aliases="none"><maml:name>Force</maml:name><maml:description><maml:para>Forces the command to run without asking for user confirmation.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">AzureProfile</command:parameterValue></command:parameter></command:syntaxItem><command:syntaxItem><maml:name>Start-AzureStorSimpleDeviceFailoverJob</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>DeviceName</maml:name><maml:description><maml:para>Specifies the name of the StorSimple device on which the volume container groups exist.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true(ByValue)" position="2" aliases="none"><maml:name>VolumecontainerGroups</maml:name><maml:description><maml:para>Specifies the list of volume container groups that this cmdlet fails over to another device.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">0, Culture=neutral, PublicKeyToken=null</command:parameterValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>TargetDeviceName</maml:name><maml:description><maml:para>Specifies the name of the StorSimple device to which this cmdlet fails over the volume container groups.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="4" aliases="none"><maml:name>Force</maml:name><maml:description><maml:para>Forces the command to run without asking for user confirmation.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">AzureProfile</command:parameterValue></command:parameter></command:syntaxItem><command:syntaxItem><maml:name>Start-AzureStorSimpleDeviceFailoverJob</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue)" position="2" aliases="none"><maml:name>VolumecontainerGroups</maml:name><maml:description><maml:para>Specifies the list of volume container groups that this cmdlet fails over to another device.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">0, Culture=neutral, PublicKeyToken=null</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="4" aliases="none"><maml:name>Force</maml:name><maml:description><maml:para>Forces the command to run without asking for user confirmation.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">AzureProfile</command:parameterValue></command:parameter></command:syntaxItem></command:syntax><command:parameters><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>DeviceId</maml:name><maml:description><maml:para>Specifies the instance ID of the StorSimple device on which the volume container groups exist.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>DeviceName</maml:name><maml:description><maml:para>Specifies the name of the StorSimple device on which the volume container groups exist.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="4" aliases="none"><maml:name>Force</maml:name><maml:description><maml:para>Forces the command to run without asking for user confirmation.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">AzureProfile</command:parameterValue><dev:type><maml:name>AzureProfile</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>TargetDeviceId</maml:name><maml:description><maml:para>Specifies the instance ID of the StorSimple device to which this cmdlet fails over the volume container groups. </maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="3" aliases="none"><maml:name>TargetDeviceName</maml:name><maml:description><maml:para>Specifies the name of the StorSimple device to which this cmdlet fails over the volume container groups.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue)" position="2" aliases="none"><maml:name>VolumecontainerGroups</maml:name><maml:description><maml:para>Specifies the list of volume container groups that this cmdlet fails over to another device.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">0, Culture=neutral, PublicKeyToken=null</command:parameterValue><dev:type><maml:name>0, Culture=neutral, PublicKeyToken=null</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter></command:parameters><command:inputTypes><command:inputType><dev:type><maml:name>List&lt;DataContainerGroup&gt;</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para>You can pipe a list of volume container groups to this cmdlet.</maml:para></maml:description></command:inputType></command:inputTypes><command:returnValues><command:returnValue><dev:type><maml:name>String</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para></maml:para></maml:description></command:returnValue></command:returnValues><command:terminatingErrors /><command:nonTerminatingErrors /><command:examples><command:example><maml:title>Example 1: Start a failover job for a named device and named target device</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;(Get-AzureStorSimpleFailoverVolumeContainers -DeviceName "ChewD_App7") | Where-Object {$_.IsDCGroupEligibleForDR -eq $True} | Start-AzureStorSimpleDeviceFailoverJob -DeviceName "ChewD_App7" -TargetDeviceName "Fuller05" -Force +a3d902be-8ffb-42a4-bbf8-0a1b30db71b2_0ee59ae9-0293-46e2-ae56-bc308c8e5520 +</dev:code><dev:remarks><maml:para>This command gets the failover volume containers for the device named ChewD_App7 by using the Get-AzureStorSimpleFailoverVolumeContainers cmdlet. The command passes the results to the Where-Object cmdlet, which drops those containers that have a value other than $True for the IsDCGroupEligibleForDR property. For more information, type Get-Help Where-Object. The current cmdlet starts failover jobs for the remaining failover volume containers. The command specifies the device name and target device name. The command returns the instance ID of the job that the cmdlet starts. </maml:para><maml:para /><maml:para /></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>Example 2: Start a failover job for a device and target device specified by ID</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;(Get-AzureStorSimpleFailoverVolumeContainers -DeviceId "3825f272-1efb-4c14-b63f-22605ce3b925") | Where-Object {$_.IsDCGroupEligibleForDR -eq $True} | Select-Object -First 1 | Start-AzureStorSimpleDeviceFailoverJob -DeviceId "3825f272-1efb-4c14-b63f-22605ce3b925" -TargetDeviceId "0ee59ae9-0293-46e2-ae56-bc308c8e5520" -Force +4c5ac0d0-4b66-465c-98f5-aec90505ad12_0ee59ae9-0293-46e2-ae56-bc308c8e5520 +</dev:code><dev:remarks><maml:para>This command gets the failover volume containers for the device named ChewD_App7 by using Get-AzureStorSimpleFailoverVolumeContainers. The command passes the results to Where-Object, which drops those containters that have a value other than $True for the IsDCGroupEligibleForDR property. The cmdlet passes the results to the Select-Object cmdlet, which selects the first object to pass to the current cmdlet. For more information, type Get-Help Select-Object. The current cmdlet starts failover jobs for the selected failover volume container. The command specifies the device ID and target device ID. The command returns the instance ID of the job that the cmdlet starts. </maml:para><maml:para /><maml:para /></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example></command:examples><maml:relatedLinks><maml:navigationLink><maml:linkText>Get-AzureStorSimpleFailoverVolumeContainers</maml:linkText><maml:uri /></maml:navigationLink></maml:relatedLinks></command:command><command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><command:details><command:name>Start-AzureStorSimpleLegacyVolumeContainerMigrationPlan</command:name><maml:description><maml:para>Starts the creation of a migration plan.</maml:para></maml:description><maml:copyright><maml:para /></maml:copyright><command:verb>Start</command:verb><command:noun>AzureStorSimpleLegacyVolumeContainerMigrationPlan</command:noun><dev:version /></command:details><maml:description><maml:para>The Start-AzureStorSimpleLegacyVolumeContainerMigrationPlan cmdlet starts the creation of a migration plan. The creation of a migration plan is asynchronous. To see the status of the migration plan, use the Get-AzureStorSimpleLegacyVolumeContainerMigrationPlan cmdlet.</maml:para></maml:description><command:syntax><command:syntaxItem><maml:name>Start-AzureStorSimpleLegacyVolumeContainerMigrationPlan</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>LegacyConfigId</maml:name><maml:description><maml:para>Specifies the unique ID of the configuration of the legacy appliance.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="2" aliases="none"><maml:name>LegacyContainerNames</maml:name><maml:description><maml:para>Specifies an array of data container names for which to create a migration plan. </maml:para></maml:description><command:parameterValue required="false" variableLength="true">String[]</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">AzureProfile</command:parameterValue></command:parameter></command:syntaxItem></command:syntax><command:parameters><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="false" position="1" aliases="none"><maml:name>LegacyConfigId</maml:name><maml:description><maml:para>Specifies the unique ID of the configuration of the legacy appliance.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="true" globbing="false" pipelineInput="false" position="2" aliases="none"><maml:name>LegacyContainerNames</maml:name><maml:description><maml:para>Specifies an array of data container names for which to create a migration plan. </maml:para></maml:description><command:parameterValue required="false" variableLength="true">String[]</command:parameterValue><dev:type><maml:name>String[]</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">AzureProfile</command:parameterValue><dev:type><maml:name>AzureProfile</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter></command:parameters><command:inputTypes><command:inputType><dev:type><maml:name>None</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para></maml:para></maml:description></command:inputType></command:inputTypes><command:returnValues><command:returnValue><dev:type><maml:name>String</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para>This cmdlet returns the status of the migration plan job if it has been successfully started in the appliance.</maml:para></maml:description></command:returnValue></command:returnValues><command:terminatingErrors /><command:nonTerminatingErrors /><command:examples><command:example><maml:title>Example 1: Start a migration plan</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Start-AzureStorSimpleLegacyVolumeContainerMigrationPlan -LegacyConfigId "c5a831e1-7888-44f4-adf1-92994be630c3" -LegacyContainerNames "OneSDKAzureCloud" +Successfully started estimating the Migration Plan. Please check details with Get-AzureStorSimpleLegacyVolumeContainerMigrationPlan +</dev:code><dev:remarks><maml:para>This command starts creation of a migration plan for the legacy container named OneSDKAzureCloud. The command returns a message about the status of the plan, and to use the Get-AzureStorSimpleLegacyVolumeContainerMigrationPlan cmdlet for up to date information.</maml:para><maml:para /><maml:para /></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example></command:examples><maml:relatedLinks><maml:navigationLink><maml:linkText>Get-AzureStorSimpleLegacyVolumeContainerMigrationPlan</maml:linkText><maml:uri /></maml:navigationLink></maml:relatedLinks></command:command><command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"><command:details><command:name>Stop-AzureStorSimpleJob</command:name><maml:description><maml:para>Stops a StorSimple job. </maml:para></maml:description><maml:copyright><maml:para /></maml:copyright><command:verb>Stop</command:verb><command:noun>AzureStorSimpleJob</command:noun><dev:version /></command:details><maml:description><maml:para>The Stop-AzureStorSimpleJob cmdlet stops an on-going StorSimple job. You can specify a jobs by supplying an instance ID or a job name.</maml:para></maml:description><command:syntax><command:syntaxItem><maml:name>Stop-AzureStorSimpleJob</maml:name><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true(ByPropertyName)" position="1" aliases="none"><maml:name>InstanceId</maml:name><maml:description><maml:para>Specifies the ID of the device job to stop.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="none"><maml:name>Force</maml:name><maml:description><maml:para>Forces the command to run without asking for user confirmation.</maml:para></maml:description></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">AzureProfile</command:parameterValue></command:parameter></command:syntaxItem></command:syntax><command:parameters><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="2" aliases="none"><maml:name>Force</maml:name><maml:description><maml:para>Forces the command to run without asking for user confirmation.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue><dev:type><maml:name>SwitchParameter</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true(ByPropertyName)" position="1" aliases="none"><maml:name>InstanceId</maml:name><maml:description><maml:para>Specifies the ID of the device job to stop.</maml:para></maml:description><command:parameterValue required="true" variableLength="false">String</command:parameterValue><dev:type><maml:name>String</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter><command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named" aliases="none"><maml:name>Profile</maml:name><maml:description><maml:para>Specifies an Azure profile.</maml:para></maml:description><command:parameterValue required="false" variableLength="false">AzureProfile</command:parameterValue><dev:type><maml:name>AzureProfile</maml:name><maml:uri /></dev:type><dev:defaultValue>none</dev:defaultValue></command:parameter></command:parameters><command:inputTypes><command:inputType><dev:type><maml:name>None</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para></maml:para></maml:description></command:inputType></command:inputTypes><command:returnValues><command:returnValue><dev:type><maml:name>DeviceJobDetails</maml:name><maml:uri></maml:uri><maml:description><maml:para /></maml:description></dev:type><maml:description><maml:para>This cmdlet gets details of the DeviceJob that this cmdlet stops. </maml:para></maml:description></command:returnValue></command:returnValues><command:terminatingErrors /><command:nonTerminatingErrors /><command:examples><command:example><maml:title>Example 1: Stop jobs for a device</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Get-AzureStorSimpleJob -DeviceName "Device07" | Stop-AzureStorSimpleJob -Force + +</dev:code><dev:remarks><maml:para>This command gets the jobs for the device named Device07, by using the Get-AzureStorSimpleJob cmdlet. The command passes the jobs to the current cmdlet by using the pipeline operator. The current cmdlet stops any jobs that the command passes to it. The command specifies the Force parameter, and, so, it does not prompt you for confirmation before it stops a job.</maml:para><maml:para /><maml:para /></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example><command:example><maml:title>Example 2: Stop a specific job</maml:title><maml:introduction><maml:para></maml:para></maml:introduction><dev:code>PS C:\&gt;Stop-AzureStorSimpleJob -InstanceId "574f47e0-44e9-495c-b8a5-0203c57ebf6d" -Force + +</dev:code><dev:remarks><maml:para>This command stops the job that has the specified instance ID. </maml:para><maml:para /><maml:para /></dev:remarks><command:commandLines><command:commandLine><command:commandText /></command:commandLine></command:commandLines></command:example></command:examples><maml:relatedLinks><maml:navigationLink><maml:linkText>Get-AzureStorSimpleJob</maml:linkText><maml:uri /></maml:navigationLink></maml:relatedLinks></command:command></helpItems> diff --git a/tools/LocalFeed/Microsoft.Azure.Management.Compute.5.0.0-preview.nupkg b/tools/LocalFeed/Microsoft.Azure.Management.Compute.5.0.0-preview.nupkg deleted file mode 100644 index bb42befaf5e4..000000000000 Binary files a/tools/LocalFeed/Microsoft.Azure.Management.Compute.5.0.0-preview.nupkg and /dev/null differ diff --git a/tools/LocalFeed/Microsoft.Azure.Management.Compute.5.0.1-preview.nupkg b/tools/LocalFeed/Microsoft.Azure.Management.Compute.5.0.1-preview.nupkg new file mode 100644 index 000000000000..a25ed9626107 Binary files /dev/null and b/tools/LocalFeed/Microsoft.Azure.Management.Compute.5.0.1-preview.nupkg differ diff --git a/tools/LocalFeed/Microsoft.Azure.Management.Storage.2.3.0-preview.nupkg b/tools/LocalFeed/Microsoft.Azure.Management.Storage.2.3.0-preview.nupkg deleted file mode 100644 index 69a20c5a3ace..000000000000 Binary files a/tools/LocalFeed/Microsoft.Azure.Management.Storage.2.3.0-preview.nupkg and /dev/null differ diff --git a/tools/LocalFeed/Microsoft.Azure.Management.Storage.2.4.0-preview.nupkg b/tools/LocalFeed/Microsoft.Azure.Management.Storage.2.4.0-preview.nupkg new file mode 100644 index 000000000000..f3d27ac3bb60 Binary files /dev/null and b/tools/LocalFeed/Microsoft.Azure.Management.Storage.2.4.0-preview.nupkg differ